-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: redone kea containers for better docker support
- Loading branch information
Showing
8 changed files
with
116 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- kea-ctrl-agent.conf 2024-05-13 04:17:12 | ||
+++ kea-ctrl-agent-new.conf 2024-05-13 04:15:11 | ||
@@ -32,15 +32,15 @@ | ||
"control-sockets": { | ||
"dhcp4": { | ||
"socket-type": "unix", | ||
- "socket-name": "/tmp/kea4-ctrl-socket" | ||
+ "socket-name": "/run/kea/kea-dhcp4-ctrl.sock" | ||
}, | ||
"dhcp6": { | ||
"socket-type": "unix", | ||
- "socket-name": "/tmp/kea6-ctrl-socket" | ||
+ "socket-name": "/run/kea/kea-dhcp6-ctrl.sock" | ||
}, | ||
"d2": { | ||
"socket-type": "unix", | ||
- "socket-name": "/tmp/kea-ddns-ctrl-socket" | ||
+ "socket-name": "/run/kea/kea-dhcp-ddns-ctrl.sock" | ||
} | ||
}, | ||
|
||
@@ -73,7 +73,7 @@ | ||
// - syslog (logs to syslog) | ||
// - syslog:name (logs to syslog using specified name) | ||
// Any other value is considered a name of the file | ||
- "output": "/data/log/kea-ctrl-agent.log" | ||
+ "output": "stdout" | ||
|
||
// Shorter log pattern suitable for use with systemd, | ||
// avoids redundant information |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- kea-dhcp-ddns.conf 2024-05-13 04:15:43 | ||
+++ kea-dhcp-ddns-new.conf 2024-05-13 04:15:38 | ||
@@ -23,7 +23,7 @@ | ||
"port": 53001, | ||
"control-socket": { | ||
"socket-type": "unix", | ||
- "socket-name": "/tmp/kea-ddns-ctrl-socket" | ||
+ "socket-name": "/run/kea/kea-dhcp-ddns-ctrl.sock" | ||
}, | ||
"tsig-keys": [], | ||
"forward-ddns" : {}, | ||
@@ -44,7 +44,7 @@ | ||
// - syslog (logs to syslog) | ||
// - syslog:name (logs to syslog using specified name) | ||
// Any other value is considered a name of the file | ||
- "output": "/data/log/kea-ddns.log" | ||
+ "output": "stdout" | ||
|
||
// Shorter log pattern suitable for use with systemd, | ||
// avoids redundant information |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- kea-dhcp4.conf 2024-05-13 04:15:59 | ||
+++ kea-dhcp4-new.conf 2024-05-13 04:15:50 | ||
@@ -49,7 +49,7 @@ | ||
// more. For detailed description, see Sections 8.8, 16 and 15. | ||
"control-socket": { | ||
"socket-type": "unix", | ||
- "socket-name": "/tmp/kea4-ctrl-socket" | ||
+ "socket-name": "/run/kea/kea-dhcp4-ctrl.sock" | ||
}, | ||
|
||
// Use Memfile lease database backend to store leases in a CSV file. | ||
@@ -436,7 +436,7 @@ | ||
// - syslog (logs to syslog) | ||
// - syslog:name (logs to syslog using specified name) | ||
// Any other value is considered a name of the file | ||
- "output": "/data/log/kea-dhcp4.log" | ||
+ "output": "stdout" | ||
|
||
// Shorter log pattern suitable for use with systemd, | ||
// avoids redundant information |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- kea-dhcp6.conf 2024-05-13 04:16:09 | ||
+++ kea-dhcp6-new.conf 2024-05-13 04:16:10 | ||
@@ -43,7 +43,7 @@ | ||
// description, see Sections 9.12, 16 and 15. | ||
"control-socket": { | ||
"socket-type": "unix", | ||
- "socket-name": "/tmp/kea6-ctrl-socket" | ||
+ "socket-name": "/run/kea/kea-dhcp6-ctrl.sock" | ||
}, | ||
|
||
// Use Memfile lease database backend to store leases in a CSV file. | ||
@@ -395,7 +395,7 @@ | ||
// - syslog (logs to syslog) | ||
// - syslog:name (logs to syslog using specified name) | ||
// Any other value is considered a name of the file | ||
- "output": "/data/log/kea-dhcp6.log" | ||
+ "output": "stdout" | ||
|
||
// Shorter log pattern suitable for use with systemd, | ||
// avoids redundant information |