Lab 3 - DHCP
Much of this information adapted from slides by Seth Galitzer
Image Source: Fossbytes
Image Source: Seth Galitzer
default-lease-time 600; # in seconds
max-lease-time 7200; # in seconds
authoritative; # this server is authoritative
# for this network segment
option domain-name “cis.ksu.edu”;
option domain-name-servers 129.130.254.2, 129.130.254.3;
option subnet-mask 255.255.254.0;
option broadcast-address 129.130.11.255;
option routers 129.130.10.1;
option smtp-server smtp.cis.ksu.edu;
#fixed-address
host eth0_bronco {
option host-name "bronco";
hardware ethernet ec:a8:6b:fe:2e:b5;
fixed-address 129.130.10.190;
}
#dynamic pool
pool {
range 129.130.10.209 129.130.10.229;
range 129.130.10.245 129.130.10.255;
range 129.130.11.201 129.130.11.254
}