Jump to content

dhcp в debian 4.0


luphundo

Recommended Posts

Всем доброго времени суток. Есть небольшая проблема, об которую я сломал всю голову. Сервер dhcp раздает адреса начиная с конца диапазона. Мож я чего-то не там кручу.

Вот dhcpd.conf:

======Начало=====

key D-U {

algorithm hmac-md5;

secret ***;

}

# example.net

subnet 192.168.0.0 netmask 255.255.255.0 {

ddns-update-style interim;

autoritative;

option netbios-scope"";

option broadcast-address 192.168.0.255;

allow client-updates;

option subnet-mask 255.255.255.0;

option routers 192.168.0.1;

option domain-name "example.net";

option domain-name-servers 192.168.0.1;

range dynamic-bootp 192.168.0.2 192.168.0.10;

allow unknown-clients;

#use-host-decl-names on;

default-lease-time 3600;

max-lease-time 4800;

}

# Notebook

host not {

hardware ethernet 00:18:f3:45:e1:54;

}

# Komputer

host Comp1 {

hardware ethernet 00:0f:ea:55:57:79;

}

*************

zone example.net. {

primary 127.0.0.1;

key D-U;

}

zone 0.168.192.in-addr.arpa. {

primary 127.0.0.1;

key D-U;

}

======Конец=====

Кто сталкивался, подскажите где крутить.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...