DHCP

 

/etc/dhcp/dhcpd.conf

 
authoritative;
 
allow booting;
allow bootp;
 
subnet 192.168.xxx.0 netmask 255.255.255.0 {
        range 192.168.xxx.191 192.168.xxx.199;
        interface eth0;
 default-lease-time 600;
        max-lease-time 7200;
        option domain-name-servers 192.168.xxx.1;
        option broadcast-address 192.168.xxx.255;
        option subnet-mask 255.255.255.0;
        option routers 192.168.xxx.1;
}
 
next-server 192.168.xxx.35;
filename "/pxelinux.0";