From 34ec437b490115029c212e6886e6de3f20bce989 Mon Sep 17 00:00:00 2001 From: Thomas Markwalder Date: Thu, 16 May 2019 15:18:36 -0400 Subject: [PATCH] [#614,!326] Updated all-keys-current.json with tee time parameters kea4/all-keys-current.json Added calculate-tee-times, t1-percent, and t2-percent to network and subnet scopes kea6/all-keys-current.json Added calculate-tee-times, t1-percent, and t2-percent global, network, and subnet scopes --- doc/examples/kea4/all-keys-current.json | 20 +++++++++++++++++- doc/examples/kea6/all-keys-current.json | 27 +++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/doc/examples/kea4/all-keys-current.json b/doc/examples/kea4/all-keys-current.json index 67cb126f21..e649be166a 100644 --- a/doc/examples/kea4/all-keys-current.json +++ b/doc/examples/kea4/all-keys-current.json @@ -548,6 +548,15 @@ // Shared network level renew timer. "renew-timer": 31, + // Shared network level compute T1 and T2 timers. + "calculate-tee-times": true, + + // T1 = valid lifetime * .5. + "t1-percent": .5, + + // T2 = valid lifetime * .75. + "t2-percent": .75 + // Enumeration specifying server's mode of operation when it // fetches host reservations. "reservation-mode": "all", @@ -674,6 +683,15 @@ // fetches host reservations. "reservation-mode": "all", + // Subnet-level compute T1 and T2 timers. + "calculate-tee-times": true, + + // T1 = valid lifetime * .5. + "t1-percent": .5, + + // T2 = valid lifetime * .75. + "t2-percent": .75 + // List of static IPv4 reservations assigned to the clients belonging // to this subnet. For detailed example see reservations.json. "reservations": [ @@ -765,7 +783,7 @@ // Fetches host reservations. "reservation-mode": "all", - // Compute T1 and T2 timers. + // Global compute T1 and T2 timers. "calculate-tee-times": true, // T1 = valid lifetime * .5. diff --git a/doc/examples/kea6/all-keys-current.json b/doc/examples/kea6/all-keys-current.json index 07dea2e142..9e6e6e7b82 100644 --- a/doc/examples/kea6/all-keys-current.json +++ b/doc/examples/kea6/all-keys-current.json @@ -501,6 +501,15 @@ // Shared network level renew timer. "renew-timer": 31, + // Shared network level compute T1 and T2 timers. + "calculate-tee-times": true, + + // T1 = valid lifetime * .5. + "t1-percent": .5, + + // T2 = valid lifetime * .75. + "t2-percent": .75 + // Enumeration specifying server's mode of operation when it // fetches host reservations. "reservation-mode": "all", @@ -630,6 +639,15 @@ // fetches host reservations. "reservation-mode": "all", + // Subnet level compute T1 and T2 timers. + "calculate-tee-times": true, + + // T1 = valid lifetime * .5. + "t1-percent": .5, + + // T2 = valid lifetime * .75. + "t2-percent": .75 + // List of static IPv6 reservations assigned to the clients belonging // to this subnet. For detailed example see reservations.json. "reservations": [ @@ -723,6 +741,15 @@ // Data directory. "data-directory": "/tmp" + + // Global compute T1 and T2 timers. + "calculate-tee-times": true, + + // T1 = valid lifetime * .5. + "t1-percent": .5, + + // T2 = valid lifetime * .75. + "t2-percent": .75 }, // Logging configuration begins here. -- 2.47.2