summaryrefslogtreecommitdiff
path: root/keama/tests/sharetwo6.in6
blob: 3c75aad5154cf24d2a15054001d817da01b86246 (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
# DHCPv6 two subnets in shared-network declaration config

# shared-network declaration
shared-network "foobar" {
    # interface
    interface "en0";
    # option
    option dhcp6.domain-search "example.com", "example.org";
    # parameter
    default-lease-time 1800;
    # subnet declaration
    subnet6 2001::/64 {
        # redefined parameter
        default-lease-time 3600;
	# pool
	range6 2001::1000 2001::2000;
    }
    # second subnet declaration
    subnet6 2002::/64 {
        pool6 {
	    prefix6 2001:0:0:10:: 2001:0:0:1f:: /64;
        }
    }    
}