blob: 370f3baf2eb8b6853facbd0d03807953f14d34b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# group and host declarations config
# authoritative is mandatory
authoritative;
# subnet4 declaration
subnet 10.5.5.0 netmask 255.255.255.224 {
range 10.5.5.5 10.5.5.10;
}
# host declaration
host test1 {
hardware ethernet 00:0B:FD:32:E6:FA;
fixed-address 10.5.5.1, 10.10.10.10;
}
# group declaration
group "foobar" {
default-lease-time 1800;
option domain-search "example.com", "example.org";
next-server 192.168.0.1;
# host declarations
host test2 {
hardware ethernet 00:07:0E:36:48:19;
fixed-address 10.5.5.2;
option domain-name "example.com";
option domain-search "example.com", "com";
}
host test3 {
hardware fddi 00:07:0E:36:48:19;
fixed-address 10.10.10.1;
default-lease-time 3600;
}
}
subnet 10.10.10.0 netmask 255.255.255.224 { }
|