1{ 2 # DHCPv4 global reservation config 3 # empty configs are not accepted by Kea 4 "Dhcp4": { 5 "valid-lifetime": 1800, 6 "host-reservation-identifiers": [ 7 "hw-address" 8 ], 9 "reservation-mode": "global", 10 "reservations": [ 11 # global reservation 12 { 13 "hostname": "foobar", 14 "hw-address": "00:0b:fd:32:e6:fa", 15 "option-data": [ 16 { 17 "space": "dhcp4", 18 "name": "ip-forwarding", 19 "code": 19, 20// "original-data": "off", 21 /// canonized booleans to lowercase true or false 22 "data": "false" 23 } 24 ] 25 } 26 ] 27 } 28} 29