# dhcpd.conf # # Configuration file for ISC dhcpd # # If this DHCP server is the official DHCP server for the local # network, the authoritative directive should be uncommented. authoritative; ddns-update-style none; # Allow bootp requests allow bootp; # Point to the TFTP server: next-server 172.18.0.1; # Default lease is 1 week (604800 sec.) default-lease-time 604800; # Max lease is 4 weeks (2419200 sec.) max-lease-time 2419200; subnet 172.18.0.0 netmask 255.255.255.0 { option domain-name "copyleft.net"; option broadcast-address 172.18.0.255; option subnet-mask 255.255.255.0; option domain-name-servers 192.168.176.1; option routers 172.18.0.99; range dynamic-bootp 172.18.0.201 172.18.0.210; use-host-decl-names on; if substring (option vendor-class-identifier, 0, 9) = "PXEClient" { filename "/slackware/64-13.37/pxelinux.0"; } }