machine_setup/ansible/roles/jail_nat_dhcp/files/kea-dhcp4.conf

43 lines
1.2 KiB
Plaintext
Raw Normal View History

{
"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": [
{
2023-04-27 22:44:32 +00:00
// 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"
2023-05-29 03:09:36 +00:00
},
{
// poudriere
"hw-address": "06:8f:24:d6:21:24",
"ip-address": "10.215.1.203"
}
]
}
],
"option-data": [
{
"name": "domain-name-servers",
"data": "10.215.1.1"
}
]
}
}