|
|

楼主 |
发表于 2004-9-25 20:25:28
|
显示全部楼层
# dhcpd.conf
#
# configuration file for ISC dhcpd
#
server-identifier andreas.isc.org;
authoritative;
# specifies the method to use to connect to the DNS server and update it.
ddns-update-style interim;
# this has to be the same key as is used in named.conf
key andrw {
algorithm hmac-md5;
secret "uPDIdHRleY5/X1p+odGhOg==";
};
# this section describes what key to use in what zone
zone isc.org. {
primary 10.16.13.1;
key andrw;
}
zone 13.16.10.in-addr.arpa. {
primary 10.16.13.1;
key andrw;
}
# and this section holds all the options for the subnet listed,
# include the range of addresses to lease out , gateways etc.
subnet 10.16.13.0 netmask 255.255.255.0 {
# use these addresses:
range 10.16.13.2 10.16.13.254;
option subnet-mask 255.255.255.0;
option broadcast-address 10.16.13.255;
option domain-name "isc.org";
one-lease-per-client on;
default-lease-time 14400;
max-lease-time 14410;
option ip-forwarding off;
option time-offset -18000;
# set a few handy default options
option routers 10.16.13.1;
option domain-name-servers 10.16.13.1;
} |
|