machine_setup/ansible/roles/jail_nat_dhcp/files/kea-dhcp4.conf
2023-04-30 17:18:21 -04:00

38 lines
1.0 KiB
Plaintext

{
"Dhcp4": {
"interfaces-config": {
"interfaces": [ "jailnat_dhcp" ]
},
"subnet4": [
{
"subnet": "10.215.1.0/24",
"pools": [ { "pool": "10.215.1.10-10.215.1.200" } ],
"option-data": [
{
"name": "routers",
"data": "10.215.1.1"
}
],
"reservations": [
{
// jaeger
"hw-address": "06:c7:69:d3:f4:ca",
"ip-address": "10.215.1.201"
},
{
// unifi controller
"hw-address": "06:40:9f:d7:be:a6",
"ip-address": "10.215.1.202"
}
]
}
],
"option-data": [
{
"name": "domain-name-servers",
"data": "10.215.1.1"
}
]
}
}