aboutsummaryrefslogtreecommitdiff
path: root/dhcp6s.conf.sample
blob: 5c067474d33d5cc86b78dae67de5fb2c1158fcf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# The followings are a sample configuration to provide a DNS server address
# for every client as well as to delegate 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;
};

# The followings are a sample configuration to provide an IPv6 address
# from an address pool 2001:db8:1:2::1000-2000.
# Note. You have to send an RA with A-bit off to fxp0; otherwise
# a client cannot be sure about the prefix-length and the default router.

interface fxp0 {
	address-pool pool1;
};

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