From d67528d056602f10711ec8c11f99a65504746b8d Mon Sep 17 00:00:00 2001 From: Tomek Mrugalski Date: Wed, 11 May 2016 14:19:04 +0200 Subject: [PATCH] [master] Corrections in the config examples. --- doc/examples/kea4/hooks.json | 4 +++- doc/examples/kea6/advanced.json | 2 +- doc/examples/kea6/hooks.json | 6 ++++++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/doc/examples/kea4/hooks.json b/doc/examples/kea4/hooks.json index 3acc4d9ec..e86e04fab 100644 --- a/doc/examples/kea4/hooks.json +++ b/doc/examples/kea4/hooks.json @@ -15,10 +15,12 @@ "type": "memfile" }, + "valid-lifetime": 1800, + # Define a single subnet. "subnet4": [ { - "pools": [ { "pool": "192.0.2.1 - 19.2.0.2.200" } ], + "pools": [ { "pool": "192.0.2.1 - 192.0.2.200" } ], "subnet": "192.0.2.0/24", "interface": "ethX" } diff --git a/doc/examples/kea6/advanced.json b/doc/examples/kea6/advanced.json index d6ef95e99..821db2bb2 100644 --- a/doc/examples/kea6/advanced.json +++ b/doc/examples/kea6/advanced.json @@ -47,7 +47,7 @@ # http://www.iana.org/assignments/dhcpv6-parameters/dhcpv6-parameters.xhtml#options-relay-supplied # However, it is possible to allow the server to echo back additional options. # This entry marks options 110, 120 and 130 as RSOO-enabled. - "relay-supplied-options": [ "110", "120", "130" ]," + "relay-supplied-options": [ "110", "120", "130" ], # Addresses will be assigned with preferred and valid lifetimes # being 3000 and 4000, respectively. Client is told to start diff --git a/doc/examples/kea6/hooks.json b/doc/examples/kea6/hooks.json index 2c950a98a..85e10da44 100644 --- a/doc/examples/kea6/hooks.json +++ b/doc/examples/kea6/hooks.json @@ -15,6 +15,12 @@ "type": "memfile" }, +# Set values to mandatory timers + "renew-timer": 900, + "rebind-timer": 1200, + "preferred-lifetime": 1800, + "valid-lifetime": 2700, + # Define a single subnet. "subnet6": [ { -- GitLab