diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-12-08 13:04:10 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-12-08 13:04:10 +0100 |
commit | c4c8711939f709c445fe634b2f624933fa9651ab (patch) | |
tree | 7fae264bd4b25133e06d1c8f330ac698b1fff06d | |
parent | 006beada13e22929b7439a2123f0b434b666d4cc (diff) | |
download | vyatta-cfg-vpn-c4c8711939f709c445fe634b2f624933fa9651ab.tar.gz vyatta-cfg-vpn-c4c8711939f709c445fe634b2f624933fa9651ab.zip |
T1864: lower IKEv1 DPD timeout value from 10s to 2sVyOS_1.2-2019Q4
-rw-r--r-- | templates/vpn/ipsec/ike-group/node.tag/dead-peer-detection/timeout/node.def | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/vpn/ipsec/ike-group/node.tag/dead-peer-detection/timeout/node.def b/templates/vpn/ipsec/ike-group/node.tag/dead-peer-detection/timeout/node.def index 3378cb5..8a4edee 100644 --- a/templates/vpn/ipsec/ike-group/node.tag/dead-peer-detection/timeout/node.def +++ b/templates/vpn/ipsec/ike-group/node.tag/dead-peer-detection/timeout/node.def @@ -1,5 +1,5 @@ -help: Keep-alive timeout +help: Dead-Peer-Detection keep-alive timeout (IKEv1 only) type: u32 default: 120 -syntax:expression: ($VAR(@) >= 10 && $VAR(@) <= 86400) ; "must be between 10-86400 seconds" -val_help: u32:10-86400; Keep-alive timeout in seconds (default 120) +syntax:expression: ($VAR(@) >= 2 && $VAR(@) <= 86400) ; "must be between 2-86400 seconds" +val_help: u32:2-86400; Keep-alive timeout in seconds (default 120) |