xref: /netbsd-src/external/mpl/dhcp/dist/keama/tests/groupsubnet6.in6 (revision 901e7e84758515fbf39dfc064cb0b45ab146d8b0)
1# Group with DHCPv6 subnet declaration config
2
3# parameter which will be changed in subnet
4default-lease-time 1200;
5
6# group declaration
7group foobar {
8    # option
9    option dhcp6.domain-search "example.com", "example.org";
10
11    # parameters
12    default-lease-time 3600;
13
14    # DHCPv4 subnet declaration
15    subnet6 2001::/64 {
16        # at least one pool is required
17        pool6 {
18            range6 2001::100 2001::200;
19        }
20	interface "en0";
21        default-lease-time 1800;
22	option dhcp6.lq-relay-data 2001::1 "foobar";
23    }
24}
25