This file is indexed.

/usr/share/doc/dibbler-server/examples/server-prefix-delegation.conf is in dibbler-server 1.0.0~rc1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
#
# Example server configuration file: Prefix Delegation
#
# Server is able to grant prefixes for clients, who ask for it.
# Prefixes can be assigned besides of or instead of addresses.
# It depends what client asks for.

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

# Don't log full date
log-mode short

iface "eth0" {

# clients should renew every half an hour
 T1 1800

# In case of troubles, after 45 minutes, ask any server
 T2 2700

# Addresses should be prefered for an hour
 prefered-lifetime 3600

# and should be valid for 2 hours
 valid-lifetime 7200
 
 class {
   pool 2001:db8:1::/64
 }

 # the following lines instruct server to grant each client
 # 1 or 2 prefixes (if you have uncommented second line with pd-pool or not). 
 # For example, client might get
 # 2001:db8:2:6485:0/64 and 
 # 2001:db8:3:6485:0/112
 pd-class {
        pd-pool 2001:db8:2::/48

        # uncomment following line to assign 2 prefixes for 2 different pools
	# Note: each client will receive 1 prefix from each pool.
	# pd-pool 2001:db8:3::/48

	# length of assigned prefixes
        pd-length 64

	# you can also specify t1,t2, prefered and valid lifetimes on a per pool basis
        T1 11111
        T2 22222
    }
 
}