1log-facility	local1;
2ddns-update-style	none;
3default-lease-time	900;
4max-lease-time	1200;
5option domain-name-servers	123.45.68.10, 123.45.68.11;
6option domain-name	nonsens.my-university.edu;
7option netbios-name-servers	123.45.67.100;
8option netbios-dd-server	123.45.67.100;
9option netbios-node-type	2;
10authorative;
11
12
13class "dc_staff" { match hardware; }
14# l-or
15subclass "dc_staff" 1:00:EA:BD:3F:2B:0F;
16
17class "dc_stud" { match hardware; }
18# l-0001
19subclass "dc_stud" 1:2C:3A:FB:12:35:7F;
20
21shared-network dhcpnet
22{
23 subnet 98.76.54.0 netmask 255.255.255.0
24 {
25  option routers		98.76.54.1;
26  option subnet-mask		255.255.255.0;
27  option broadcast-address	98.76.54.255;
28 }
29 subnet 123.45.67.0 netmask 255.255.255.0
30 {
31  option routers		123.45.67.1;
32  option subnet-mask		255.255.255.0;
33  option broadcast-address	123.45.67.255;
34  pool
35  {
36   range 123.45.67.10	123.45.67.19;
37   deny unknown clients;
38   allow members of "dc_staff";
39  }
40  pool
41  {
42   range 123.45.67.180	123.45.67.189;
43   deny unknown clients;
44   allow members of "dc_stud";
45  }
46  group
47  {
48   host fs
49   {
50    option host-name	"fs";
51    hardware ethernet	00:3D:2C:4F:ED:38;
52    fixed-address	123.45.67.100;
53   }
54   host pc-bl
55   {
56    option host-name	"pc-bl";
57    hardware ethernet	00:EA:BD:3F:2B:0C;
58    fixed-address	123.45.67.101;
59   }
60   host l-bl
61   {
62    option host-name	"l-bl";
63    hardware ethernet	00:EA:BD:3F:2B:0D;
64    fixed-address	123.45.67.102;
65   }
66   host pc-or
67   {
68    option host-name	"pc-or";
69    hardware ethernet	00:EA:BD:3F:2B:0E;
70    fixed-address	123.45.67.103;
71   }
72   host fs-eth1
73   {
74    option host-name	"fs-eth1";
75    hardware ethernet	00:3D:2C:4F:ED:39;
76    fixed-address	123.45.67.200;
77   }
78   host l-or
79   {
80    option host-name	"l-or";
81    hardware ethernet	00:EA:BD:3F:2B:0F;
82   }
83   host l-0001
84   {
85    option host-name	"l-0001";
86    hardware ethernet	2C:3A:FB:12:35:7F;
87   }
88  }
89 }
90 subnet 192.168.1.0 netmask 255.255.255.0
91 {
92  option routers		192.168.1.1;
93  option subnet-mask		255.255.255.0;
94  option broadcast-address	192.168.101.255;
95  pool
96  {
97   range 192.168.1.180	192.168.1.189;
98   allow unknown clients;
99   deny members of "dc_staff";
100   deny members of "dc_stud";
101  }
102 }
103}
104