File: server.conf

package info (click to toggle)
dibbler 1.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 13,352 kB
  • sloc: cpp: 60,323; ansic: 12,235; sh: 11,951; yacc: 3,418; lex: 969; makefile: 940; perl: 319; xml: 116; python: 74
file content (88 lines) | stat: -rw-r--r-- 2,375 bytes parent folder | download | duplicates (4)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#
# Example server configuration file
#
# This config. file is considered all-purpose as it instructs server
# to provide almost every configuratio
# 

# Logging level range: 1(Emergency)-8(Debug)
log-level 8

# Don't log full date
log-mode short

# Uncomment this line to call script every time a response is sent
#script "/var/lib/dibbler/server-notify.sh"

# set preference of this server to 0 (higher = more prefered)
preference 0

iface "eth0" {

 // also ranges can be defines, instead of exact values
 t1 1800-2000
 t2 2700-3000
 prefered-lifetime 3600
 valid-lifetime 7200
 
# assign addresses from this pool
 class {
   pool 2001:db8:1111::/64
 }

# assign temporary addresses from this pool

 ta-class {
    pool 2001:db8:2222::/96
 }
 
#assign /96 prefixes from this pool
 pd-class {
     pd-pool 2001:db8:3333::/80
     #pd-poll 2001:db8:4444::/80
     pd-length 96
 }

# provide DNS server location to the clients
 option dns-server 2000::ff,2000::fe
 
# provide their domain name
 option domain example.com

# provide vendor-specific info (vendor id=5678 will get first value,
# while vendor=1556 will get second value)
 option vendor-spec 5678-1-0x3031323334,1556-2-0x393837363534

# provide ntp-server information
 option ntp-server 2000::200,2000::201,2000::202

# provide timezone information
 option time-zone  CET

# provide VoIP parameter (SIP protocol servers and domain names)
 option sip-server 2000::300,2000::302,2000::303,2000::304
 option sip-domain sip1.example.com,sip2.example.com

# provide NIS information (server addresses and domain name)
 option nis-server 2000::400,2000::401,2000::404,2000::405,2000::405
 option nis-domain nis.example.com

# provide NIS+ information (server addresses and domain name)
 option nis+-server 2000::501,2000::502
 option nis+-domain nisplus.example.com

# provide AFTR information for DS-Lite clients (B4)
 option aftr cgn.example.com

# provide fully qualified domain names for clients
# note that first, second and third entry is reserved
# for a specific address or a DUID
 option fqdn 1 64 zebuline.example.com - 2000::1,
                  kael.example.com - 2000::2,
                  inara.example.com - 0x0001000043ce25b40013d4024bf5,
	          zoe.example.com,
                  malcolm.example.com,
                  kaylee.example.com,
	          jayne.example.com,
	          wash.example.com
}