Installer import into contrib (real import this time)
[dragonfly.git] / contrib / bsdinstaller-1.1.6 / root_skels / installer / usr / local / etc / dhcpd.conf
1 # /usr/local/etc/dhcpd.conf
2 #
3 ddns-update-style none;
4
5 class "pxeboot-class" {
6     match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
7 }
8
9 class "etherboot-class" {
10     match if substring (option vendor-class-identifier, 0, 9) = "Etherboot";
11 }
12
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     }
24 }
25