diff options
author | Christian Breunig <christian@breunig.cc> | 2023-04-03 17:41:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-03 17:41:30 +0200 |
commit | 95245860277ac2de7741af894cbbda6d6a51af70 (patch) | |
tree | e390c8723e4189a8c9808e99a4bde5a5ad9754b7 | |
parent | b65296a0ff39e66d87e916971477cce351f6d5a5 (diff) | |
parent | 16a1a69d6e74166001b296a8f66c26c8c00be1f1 (diff) | |
download | vyos-1x-95245860277ac2de7741af894cbbda6d6a51af70.tar.gz vyos-1x-95245860277ac2de7741af894cbbda6d6a51af70.zip |
Merge pull request #1933 from sever-sever/T5139
T5139: IPSec add IKE lifetime 0 for no rekeying
-rw-r--r-- | interface-definitions/vpn-ipsec.xml.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interface-definitions/vpn-ipsec.xml.in b/interface-definitions/vpn-ipsec.xml.in index 1b3a5532e..64cfbda08 100644 --- a/interface-definitions/vpn-ipsec.xml.in +++ b/interface-definitions/vpn-ipsec.xml.in @@ -357,11 +357,11 @@ <properties> <help>IKE lifetime</help> <valueHelp> - <format>u32:30-86400</format> + <format>u32:0-86400</format> <description>IKE lifetime in seconds</description> </valueHelp> <constraint> - <validator name="numeric" argument="--range 30-86400"/> + <validator name="numeric" argument="--range 0-86400"/> </constraint> </properties> <defaultValue>28800</defaultValue> |