#
# Default LTSP dhcpd.conf config file.
#authoritative;subnet 172.16.120.0 netmask 255.255.255.0 {
interface eth0;
range 172.16.120.20 172.16.120.50;
option domain-name "ltsp.dom";
option domain-name-servers 172.16.110.253;
option broadcast-address 172.16.120.255;
option routers 172.16.120.254;
next-server 172.16.120.254;
# get-lease-hostnames true;
option subnet-mask 255.255.255.0;
option root-path "/opt/ltsp/i386";
if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
filename "/ltsp/i386/pxelinux.0";
} else {
filename "/ltsp/i386/nbi.img";
}
host pc100 {
hardware ethernet 00:1d:7d:7c:09:2c;
fixed-address 172.16.120.100;
}
host pc101 {
hardware ethernet 00:1d:7d:7c:09:2c;
fixed-address 172.16.120.101;
}
}