1{ 2 # Group with DHCPv4 subnet declaration config 3 # parameter which will be changed in subnet 4 "Dhcp4": { 5 "valid-lifetime": 1200, 6 "interfaces-config": { 7 "interfaces": [ 8 "en0" 9 ] 10 }, 11 "subnet4": [ 12 # DHCPv4 subnet declaration 13 { 14 "id": 1, 15 "subnet": "10.5.5.0/27", 16 "pools": [ 17 # at least one pool is required 18 { 19 "pool": "10.5.5.5 - 10.5.5.10" 20 } 21 ], 22 "interface": "en0", 23 "valid-lifetime": 1800, 24 "option-data": [ 25 # option 26 { 27 "space": "dhcp4", 28 "name": "domain-search", 29 "code": 119, 30// "original-data": "\"example.com\", \"example.org\"", 31 "data": "example.com, example.org" 32 } 33 ], 34 "match-client-id": true 35 } 36 ] 37 } 38} 39