summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorunixninja92 <charles@unixninja92.com>2018-02-20 20:52:19 -0500
committerunixninja92 <charles@unixninja92.com>2018-02-20 20:52:19 -0500
commit1d0a489519e0f67985b5b92ebaf2723b826aef20 (patch)
tree923baae498b0ed739bc0a78bc00e11a6a62ea90a /templates
parent489211d40ccd6d594817993a94d12278da7c5579 (diff)
downloadvyatta-cfg-vpn-1d0a489519e0f67985b5b92ebaf2723b826aef20.tar.gz
vyatta-cfg-vpn-1d0a489519e0f67985b5b92ebaf2723b826aef20.zip
Lowered minimum DPD interval and timeout as per T542
Diffstat (limited to 'templates')
-rw-r--r--templates/vpn/ipsec/ike-group/node.tag/dead-peer-detection/interval/node.def6
-rw-r--r--templates/vpn/ipsec/ike-group/node.tag/dead-peer-detection/timeout/node.def8
2 files changed, 6 insertions, 8 deletions
diff --git a/templates/vpn/ipsec/ike-group/node.tag/dead-peer-detection/interval/node.def b/templates/vpn/ipsec/ike-group/node.tag/dead-peer-detection/interval/node.def
index 4fdebe9..e6175c9 100644
--- a/templates/vpn/ipsec/ike-group/node.tag/dead-peer-detection/interval/node.def
+++ b/templates/vpn/ipsec/ike-group/node.tag/dead-peer-detection/interval/node.def
@@ -1,5 +1,5 @@
help: Keep-alive interval
-type: u32
+type: u32
default: 30
-syntax:expression: ($VAR(@) >= 15 && $VAR(@) <= 86400) ; "must be between 15-86400 seconds"
-val_help: u32:15-86400; Keep-alive interval in seconds (default 30)
+syntax:expression: ($VAR(@) >= 2 && $VAR(@) <= 86400) ; "must be between 2-86400 seconds"
+val_help: u32:2-86400; Keep-alive interval in seconds (default 30)
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 939be1c..3378cb5 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,7 +1,5 @@
help: Keep-alive timeout
-type: u32
+type: u32
default: 120
-syntax:expression: ($VAR(@) >= 30 && $VAR(@) <= 86400) ; "must be between 30-86400 seconds"
-val_help: u32:30-86400; Keep-alive timeout in seconds (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)