xref: /netbsd-src/external/mpl/dhcp/dist/keama/tests/subnet6multi.in6 (revision 9fb66d812c00ebfb445c0b47dea128f32aa6fe96)
1# DHCPv6 subnet declaration config
2
3# parameter which will be changed in subnet
4default-lease-time 1800;
5
6# DHCPv4 subnet declaration
7subnet6 2001::/64 {
8    # at least one pool is required
9    pool6 {
10        # the pool is shared between addresses and prefixes
11        range6 2001::100 2001::200;
12        range6 2001::1000 2001::2000;
13        prefix6 2001:0:0:10:: 2001:0:0:1f:: /64;
14        prefix6 2001:0:0:80:: 2001:0:0:ff:: /64;
15    }
16    option dhcp6.domain-search "example.com", "example.org";
17    default-lease-time 3600;
18}
19
20