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

33 lines
857 B
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"
}
]
}
],
"option-data": [
{
"name": "domain-name-servers",
"data": "10.215.1.1"
}
]
}
}