1{ 2 # DHCPv6 subnet declaration config 3 # parameter which will be changed in subnet 4 "Dhcp6": { 5 "valid-lifetime": 1800, 6 "subnet6": [ 7 # DHCPv4 subnet declaration 8 { 9 "id": 1, 10 "subnet": "2001::/64", 11 "pools": [ 12 # at least one pool is required 13 { 14 "pool": "2001::100 - 2001::200" 15 } 16 ], 17 "option-data": [ 18 # authorize here 19 { 20 "space": "dhcp6", 21 "name": "domain-search", 22 "code": 24, 23// "original-data": "\"example.com\", \"example.org\"", 24 "data": "example.com, example.org" 25 } 26 ], 27 "valid-lifetime": 3600, 28 "interface": "en0", 29 "pd-pools": [ 30 { 31 "prefix": "2001:0:0:10::", 32 "delegated-len": 64, 33 "prefix-len": 60 34 } 35 ] 36 } 37 ], 38 "interfaces-config": { 39 "interfaces": [ 40 "en0" 41 ] 42 } 43 } 44} 45