Switch to kea dhcp server for jail network.

This commit is contained in:
Tom Alexander
2023-04-25 19:01:57 -04:00
parent ba7567ad9c
commit 0939203377
5 changed files with 32 additions and 20 deletions

View File

@@ -0,0 +1,25 @@
{
"Dhcp4": {
"interfaces-config": {
"interfaces": [ "jailnat_dhcp" ]
},
"subnet4": [
{
"subnet": "10.215.1.0/24",
"pools": [ { "pool": "10.215.1.10-10.215.1.250" } ],
"option-data": [
{
"name": "routers",
"data": "10.215.1.1"
}
]
}
],
"option-data": [
{
"name": "domain-name-servers",
"data": "10.215.1.1"
}
]
}
}