diff options
author | Slawek Figiel <slawek@isc.org> | 2022-03-24 15:33:10 +0100 |
---|---|---|
committer | Razvan Becheriu <razvan@isc.org> | 2022-04-04 16:46:44 +0200 |
commit | 6a25bf75f2cf402c528d876f381171104035f623 (patch) | |
tree | e39609ff0d8844557fb2c75554cdb592b39197aa /doc/examples/kea6 | |
parent | [#1716] Retry socket opening for DHCPv6 (diff) | |
download | kea-6a25bf75f2cf402c528d876f381171104035f623.tar.xz kea-6a25bf75f2cf402c528d876f381171104035f623.zip |
[#1716] Extend existing tests
Diffstat (limited to 'doc/examples/kea6')
-rw-r--r-- | doc/examples/kea6/all-keys.json | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/doc/examples/kea6/all-keys.json b/doc/examples/kea6/all-keys.json index 09b750af9c..b8ab1d3a4a 100644 --- a/doc/examples/kea6/all-keys.json +++ b/doc/examples/kea6/all-keys.json @@ -370,7 +370,22 @@ // be re-detected upon server reconfiguration. The default value // is true which means that the interfaces are always // re-detected. - "re-detect": true + "re-detect": true, + + // Kea tries to bind the service sockets during an initialiation. It may + // fail due to a port being already opened or misconfiguration. Kea suppresses + // these errors by default and only logs them. This flag prevents starting the + // DHCP server without binding all sockets. + "service-sockets-require-all": true, + + // Kea tries to bind the service sockets during an initialiation. This option + // specifies how many times the opening port will be retried. The default value + // is 0 which means that the opening will be not repeated. + "service-sockets-max-retries": 5, + + // Milliseconds to wait before the next attempt of opening a service socket if + // a port is already bound. + "service-sockets-retry-wait-time": 5000 }, // Boolean parameter which controls whether an early global host |