diff options
author | Razvan Becheriu <razvan@isc.org> | 2021-03-18 20:58:03 +0100 |
---|---|---|
committer | Razvan Becheriu <razvan@isc.org> | 2021-03-29 20:11:29 +0200 |
commit | bb87d031475fc9976fbde383189c178265f2da30 (patch) | |
tree | c640e77ff13f96f6bb81675c71719e898be7d8e3 /doc/examples/kea6 | |
parent | [#1621] addressed comments (diff) | |
download | kea-bb87d031475fc9976fbde383189c178265f2da30.tar.xz kea-bb87d031475fc9976fbde383189c178265f2da30.zip |
[#1621] add disable-dhcp-on-db-loss parameter to configure network state effect
Diffstat (limited to 'doc/examples/kea6')
-rw-r--r-- | doc/examples/kea6/all-keys.json | 3 | ||||
-rw-r--r-- | doc/examples/kea6/mysql-reservations.json | 1 | ||||
-rw-r--r-- | doc/examples/kea6/pgsql-reservations.json | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/doc/examples/kea6/all-keys.json b/doc/examples/kea6/all-keys.json index 5108320eed..c89697c76c 100644 --- a/doc/examples/kea6/all-keys.json +++ b/doc/examples/kea6/all-keys.json @@ -309,6 +309,9 @@ // Connection maximum reconnect tries. "max-reconnect-tries": 3, + // Disable DHCP on database connection loss. + "disable-dhcp-on-db-loss": true, + // Connection connect timeout. "connect-timeout": 100, diff --git a/doc/examples/kea6/mysql-reservations.json b/doc/examples/kea6/mysql-reservations.json index 96ad40a3cf..430308b44b 100644 --- a/doc/examples/kea6/mysql-reservations.json +++ b/doc/examples/kea6/mysql-reservations.json @@ -46,6 +46,7 @@ "type": "mysql", "reconnect-wait-time": 3000, // expressed in ms "max-reconnect-tries": 3, + "disable-dhcp-on-db-loss": true, "name": "kea", "user": "kea", "password": "kea", diff --git a/doc/examples/kea6/pgsql-reservations.json b/doc/examples/kea6/pgsql-reservations.json index 83a430e04e..c0d323bb8f 100644 --- a/doc/examples/kea6/pgsql-reservations.json +++ b/doc/examples/kea6/pgsql-reservations.json @@ -48,6 +48,7 @@ "type": "postgresql", "reconnect-wait-time": 3000, // expressed in ms "max-reconnect-tries": 3, + "disable-dhcp-on-db-loss": true, "name": "kea", "user": "kea", "password": "kea", |