diff options
| author | John Estabrook <jestabro@vyos.io> | 2026-08-11 10:56:27 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-11 10:56:27 -0500 |
| commit | 0af4bddfd4559df1ce968b6d675916a16a4a47ab (patch) | |
| tree | e4d1135747e7002bb9fe7e57eb56902aa9970c19 /python | |
| parent | 521346a16655ee40e9eb5588e2c0a6293dc7984a (diff) | |
| parent | 4e6725261480bd43dd0e6ff9f5879fd17b25ef77 (diff) | |
| download | vyos-1x-0af4bddfd4559df1ce968b6d675916a16a4a47ab.tar.gz vyos-1x-0af4bddfd4559df1ce968b6d675916a16a4a47ab.zip | |
Merge pull request #5382 from BradKollmyer/T9167-kea-ha-timer-defaults
dhcp: T9167: align Kea HA timer defaults with Kea ARM
Diffstat (limited to 'python')
| -rwxr-xr-x | python/vyos/template.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/vyos/template.py b/python/vyos/template.py index c1555aa1c..5b228603c 100755 --- a/python/vyos/template.py +++ b/python/vyos/template.py @@ -904,9 +904,9 @@ def kea_high_availability_json(config): 'this-server-name': os.uname()[1], 'mode': ha_mode, 'heartbeat-delay': 10000, - 'max-response-delay': 10000, + 'max-response-delay': 60000, 'max-ack-delay': 5000, - 'max-unacked-clients': 0, + 'max-unacked-clients': 10, 'peers': [ { 'name': os.uname()[1], |
