summaryrefslogtreecommitdiff
path: root/keama/tests/groupsubnet6.in6
blob: 902776188b2aaf0de604ba91228099f87affd5c2 (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
# Group with DHCPv6 subnet declaration config

# parameter which will be changed in subnet
default-lease-time 1200;

# group declaration
group foobar {
    # option
    option dhcp6.domain-search "example.com", "example.org";

    # parameters
    default-lease-time 3600;

    # DHCPv4 subnet declaration
    subnet6 2001::/64 {
        # at least one pool is required
        pool6 {
            range6 2001::100 2001::200;
        }
	interface "en0";
        default-lease-time 1800;	
	option dhcp6.lq-relay-data 2001::1 "foobar";
    }
}