Skip to content

Instantly share code, notes, and snippets.

@josben
Created March 15, 2016 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josben/9642b1eda5d7608e57d7 to your computer and use it in GitHub Desktop.
Save josben/9642b1eda5d7608e57d7 to your computer and use it in GitHub Desktop.
#
# Default LTSP dhcpd.conf config file.
#
#authoritative;
subnet 192.168.2.0 netmask 255.255.255.0 {
range 192.168.2.20 192.168.2.250;
option domain-name "scesi";
option domain-name-servers 192.168.2.14;
option broadcast-address 192.168.2.255;
option routers 192.168.2.14;
# next-server 192.168.0.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";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment