1{ 2 # DHCPv4 orphan 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// /// Orphan reservations 10// /// Kea reservations are per subnet 11// /// Reference Kea #231 12// "reservations": [ 13// # orphan reservation 14// { 15// "hostname": "foobar", 16// "hw-address": "00:0b:fd:32:e6:fa", 17// "option-data": [ 18// { 19// "space": "dhcp4", 20// "name": "ip-forwarding", 21// "code": 19, 22// "original-data": "off", 23// /// canonized booleans to lowercase true or false 24// "data": "false" 25// } 26// ] 27// } 28// ] 29 } 30} 31