1{ 2 # config (aka server option space data config 3 # empty configs are not accepted by Kea 4 "Dhcp4": { 5 "valid-lifetime": 1800 6// "config": [ 7// /// bootp protocol is not supported 8// { 9// "name": "dynamic-bootp-lease-length", 10// "code": 5, 11// "value": 1200 12// }, 13// /// bootp protocol is not supported 14// { 15// "name": "boot-unknown-clients", 16// "code": 6, 17// "value": false 18// }, 19// /// min-secs is not (yet?) supported 20// /// Reference Kea #223 21// { 22// "name": "min-secs", 23// "code": 14, 24// "value": 5120 25// }, 26// /// lease-file-name is an internal ISC DHCP feature 27// { 28// "name": "lease-file-name", 29// "code": 26, 30// "value": "/tmp/leases" 31// }, 32// /// local-port is not supported 33// /// command line -p parameter should be used instead 34// { 35// "name": "local-port", 36// "code": 32, 37// "value": 10067 38// }, 39// /// local-address is not supported 40// /// Kea equivalent feature is to specify an interface address 41// { 42// "name": "local-address", 43// "code": 35, 44// "value": "10.5.5.1" 45// }, 46// /// omapi-key is an internal ISC DHCP feature 47// { 48// "name": "omapi-key", 49// "code": 36, 50// "value": "my.key.biz" 51// }, 52// /// limit-addrs-per-ia is not (yet?) supported 53// /// Reference Kea #227 54// { 55// "name": "limit-addrs-per-ia", 56// "code": 56, 57// "value": 12345 58// }, 59// /// ddns-local-address6 is not supported 60// /// Kea D2 equivalent config is ip-address 61// { 62// "name": "ddns-local-address6", 63// "code": 81, 64// "value": "2001::1" 65// }, 66// /// pid-file-nam is an internal ISC DHCP feature 67// { 68// "name": "pid-file-name", 69// "code": 27, 70// "value": "/tmp/pid" 71// } 72// ] 73 } 74} 75