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 range6 2001::100 2001::200; 11 } 12 # authorize here 13 authoritative; 14 option dhcp6.domain-search "example.com", "example.org"; 15 default-lease-time 3600; 16 interface "en0"; 17 pool6 { 18 prefix6 2001:0:0:10:: 2001:0:0:1f:: /64; 19 } 20} 21 22