File: dhcp6s.conf.sample

package info (click to toggle)
wide-dhcpv6 20080615-19
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,292 kB
  • ctags: 5,122
  • sloc: ansic: 14,826; yacc: 1,108; sh: 615; lex: 468; makefile: 103
file content (63 lines) | stat: -rw-r--r-- 2,130 bytes parent folder | download | duplicates (3)
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
# The following is an example configuration which provides a DNS server
# address to every client, and also delegates a permanent IPv6 prefix
# 2001:db8:1111::/48 to a client whose DUID is 00:01:00:01:aa:bb.

option domain-name-servers 2001:db8::35;

host kame {
	duid 00:01:00:01:aa:bb;
	prefix 2001:db8:1111::/48 infinity;
};

# If a shared secret was to be configured in both the server and the client
# for DHCPv6 authentication, it would be specified in this file as follows:

keyinfo kame {
     realm "kame.net";
     keyid 1;
     secret "5pvW2g48OHPvkYMJSw0vZA==";
};

# And the host statement would be modified as follows:

host kame {
     duid 00:01:00:01:aa:bb;
     prefix 2001:db8:1111::/48 infinity;
     delayedkey kame;
};

# The following is an example configuration which provides an IPv6 address
# from an address pool (2001:db8:1:2::1000-2000) with a lease time of 3600
# seconds to any client attached to the fxp0 interface. Note that you have
# to send router advertisements on fxp0, i.e. run rtadvd(8) on that interface.
# Otherwise a client cannot know the prefix-length and the default router.
# If you want to prevent stateless address configuration via RA, please 
# set the autonomous-flag to OFF in your RA configuration.

interface fxp0 {
	address-pool pool1 3600;
};

pool pool1 {
	range 2001:db8:1:2::1000 to 2001:db8:1:2::2000 ;
};

# The following is an example configuration which provides fixed IPv6
# addresses to two known clients. It also provides every client with a
# DNS server. Note that you have to send router advertisements on fxp0,
# i.e. run rtadvd(8) on the interface the clients are attached to.
# Otherwise a client cannot know the prefix-length and the default router.
# If you want to prevent stateless address configuration via RA, please 
# set the autonomous-flag to OFF in your RA configuration.

option domain-name-servers 2001:db8::35;

host puffy {
        duid 00:01:00:01:0f:5b:29:7f:00:04:5a:35:1e:a1;
        address 2001:db8:111::180 infinity;
};

host tux {
        duid  00:01:00:01:0f:36:5f:31:00:0a:e4:3e:f2:4e;
        address 2001:db8:111::181 infinity;
};