Reduce differences with root_skels in contrib.
[dragonfly.git] / contrib / bsdinstaller-1.1.6 / root_skels / installer / usr / local / etc / dhcpd.conf
blob851e28721ddf9a519ba313459f04427eb92a4d9f
1 # /usr/local/etc/dhcpd.conf
3 ddns-update-style none;
5 class "pxeboot-class" {
6     match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
9 class "etherboot-class" {
10     match if substring (option vendor-class-identifier, 0, 9) = "Etherboot";
13 subnet 10.1.0.0 netmask 255.255.0.0 {
14     pool {
15         allow members of "pxeboot-class";
16         allow members of "etherboot-class";
17         range 10.1.0.128 10.1.0.254;
18         option subnet-mask 255.255.255.0;
19         option broadcast-address 10.1.0.255;
20         filename "pxeboot";
21         option root-path "10.1.0.1:/cdrom";
22         next-server 10.1.0.1;
23     }