Merge from vendor branch GCC:
[dragonfly.git] / nrelease / installer / etc / dhcpd.conf
1 # $DragonFly: src/nrelease/installer/etc/dhcpd.conf,v 1.1 2005/04/08 03:25:18 dillon Exp $
2 #
3
4 ddns-update-style none;
5
6 class "pxeboot-class" {
7     match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
8 }
9
10 class "etherboot-class" {
11     match if substring (option vendor-class-identifier, 0, 9) = "Etherboot";
12 }
13
14 class "dragonfly-class" {
15     match if substring (option vendor-class-identifier, 0, 9) = "DragonFly";
16 }
17
18 subnet 10.1.0.0 netmask 255.255.0.0 {
19     pool {
20         allow members of "pxeboot-class";
21         allow members of "etherboot-class";
22         allow members of "dragonfly-class";
23         range 10.1.0.128 10.1.0.254;
24         option subnet-mask 255.255.255.0;
25         option broadcast-address 10.1.0.255;
26         filename "pxeboot";
27         option root-path "10.1.0.1:/";
28         next-server 10.1.0.1;
29     }
30 }
31