diff options
author | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2025-03-20 16:49:46 +0100 |
---|---|---|
committer | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2025-04-14 11:50:41 +0200 |
commit | f7c5c77376b9138d239cdccda605713b5d7681e1 (patch) | |
tree | 6d4d12413d9408868be0104928f393dbb4c17a75 /data | |
parent | f3e77facc06750caafb100cdc6e96a1dc362182a (diff) | |
download | vyos-1x-f7c5c77376b9138d239cdccda605713b5d7681e1.tar.gz vyos-1x-f7c5c77376b9138d239cdccda605713b5d7681e1.zip |
kea: T7281: Add support for ping-check in Kea
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/dhcp-server/kea-dhcp4.conf.j2 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/data/templates/dhcp-server/kea-dhcp4.conf.j2 b/data/templates/dhcp-server/kea-dhcp4.conf.j2 index ee5716743..8d9ffb194 100644 --- a/data/templates/dhcp-server/kea-dhcp4.conf.j2 +++ b/data/templates/dhcp-server/kea-dhcp4.conf.j2 @@ -55,6 +55,16 @@ }, {% endif %} { + "library": "/usr/lib/{{ machine }}-linux-gnu/kea/hooks/libdhcp_ping_check.so", + "parameters": { + "enable-ping-check" : false, + "min-ping-requests" : 1, + "reply-timeout" : 100, + "ping-cltt-secs" : 60, + "ping-channel-threads" : 0 + } + }, + { "library": "/usr/lib/{{ machine }}-linux-gnu/kea/hooks/libdhcp_lease_cmds.so", "parameters": {} } |