# # /etc/dhcpd.conf for PXEboot # # # Original Files # -------------- # http://Linux-Boot.net/Boot/Network/PXE/Examples/linuxquestions.org/dhcpd.conf # http://www.linuxquestions.org/questions/archive/23/2004/11/4/259952 # # # 14-Mar-05 amo Date-of-Birth # # ddns-update-style interim; # ignore client-updates; # # # subnet 192.168.0.0 netmask 255.255.255.0 { # range 192.168.0.201 192.168.0.220; # default-lease-time 86400; max-lease-time 86400; # option routers 192.168.0.1; option broadcast-address 192.168.1.255; option subnet-mask 255.255.255.0; option domain-name-servers 192.168.0.2; # option ip-forwarding off; # next-server 192.168.0.15; # # Must provide full path relative to tftp server root if NOT Chrooting TFTP server # filename "/pxelinux.0"; # } # # End of file