# dhcpd.conf
#
# DHCP configuration file for nti-expo.local
#

default-lease-time 1200;
max-lease-time 7200;

option subnet-mask 255.255.255.0;
option routers 10.20.30.1;
option domain-name-servers 10.20.30.1;
option domain-name "nti-expo.local";
option netbios-name-servers 10.20.30.1;

# According to our policy, the dynamic address space starts
# at .60 and ends at .229 giving 170 client addresses.
# (See "System Description --> Network Model")
subnet 10.20.30.0 netmask 255.255.255.0 {
	range 10.20.30.60 10.20.30.229;
}