Maj kea ...

This commit is contained in:
phil
2025-01-26 12:07:45 +01:00
parent 758a0ddb75
commit c866ed783b
6 changed files with 35 additions and 484 deletions

View File

@@ -17,14 +17,14 @@
// This is a basic configuration for the Kea Control Agent.
// RESTful interface to be available at http://127.0.0.1:8000/
"Control-agent": {
"http-host": "127.0.0.1",
"http-host": "{{ srv_ip }}",
// If enabling HA and multi-threading, the 8000 port is used by the HA
// hook library http listener. When using HA hook library with
// multi-threading to function, make sure the port used by dedicated
// listener is different (e.g. 8001) than the one used by CA. Note
// the commands should still be sent via CA. The dedicated listener
// is specifically for HA updates only.
"http-port": 8000,
"http-port": 8001,
// Specify location of the files to which the Control Agent
// should connect to forward commands to the DHCPv4, DHCPv6
@@ -32,15 +32,7 @@
"control-sockets": {
"dhcp4": {
"socket-type": "unix",
"socket-name": "/tmp/kea4-ctrl-socket"
},
"dhcp6": {
"socket-type": "unix",
"socket-name": "/tmp/kea6-ctrl-socket"
},
"d2": {
"socket-type": "unix",
"socket-name": "/tmp/kea-ddns-ctrl-socket"
"socket-name": "/run/kea/kea4-ctrl-socket"
}
},