blob: 1b5bd1ec941467507919a50c906cb3ac71548f29 (
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
39
40
41
42
43
44
45
46
47
48
|
# option data config
# authoritative is mandatory
authoritative;
# options
option space foobar;
option ip-forwarding on;
option foobar.fmt-b-si8 code 3 = signed integer 8;
option foobar.fmt-b-si8 -100;
option default-ip-ttl 20;
option foobar.fmt-s-si16 code 6 = signed integer 16;
option foobar.fmt-s-si16 -1000;
option boot-size 16000;
option time-offset -1200;
option path-mtu-aging-timeout 86400;
option swap-server 10.5.5.1;
option foobar.fmt-6 code 12 = ip6-address;
option foobar.fmt-6 2001::1;
option foobar.fmt-d code 13 = domain-name;
option foobar.fmt-d "www.example.com";
option bcms-controller-names "foo.bar", "www.no-where.biz";
option domain-search "example.com", "example.org";
option tftp-server-name "my-server";
option dhcp-client-identifier 01:02:aa:bb;
option foobar.fmt-Z code 18 = zerolen;
option foobar.fmt-Z;
option foobar.fmt-Ia code 50 = array of unsigned integer 8;
option dhcp-parameter-request-list 1, 2, 3;
option foobar.fmt-Ia code 100 = { boolean, unsigned integer 8 };
option foobar.fmt-Ia off, 66;
|