# dhcpd.conf # # Sample configuration file for ISC dhcpd # # Attention: If /etc/ltsp/dhcpd.conf exists, that will be used as # configuration file instead of this file. # authoritative; ddns-update-style none; allow bootp; allow booting; subnet 10.42.0.0 netmask 255.255.255.0 { range dynamic-bootp 10.42.0.2 10.42.0.50; range 10.42.0.100 10.42.0.200; option routers 10.42.0.1; option subnet-mask 255.255.255.0; option broadcast-address 10.42.0.255; next-server 10.42.0.1; if substring(option vendor-class-identifier, 0, 10) = "AM335x ROM" { filename "u-boot-spl-restore.bin"; } elsif substring(option vendor-class-identifier, 0, 17) = "AM335x U-Boot SPL" { filename "u-boot-restore.img"; } }