diff options
author | Daniil Baturin <daniil@vyos.io> | 2022-01-07 17:19:48 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-07 17:19:48 +0700 |
commit | 73319ed73e3072f07552c3c7a9866e74a2f8c91a (patch) | |
tree | 251d253ae722e2aa4a30c0af8e7697af7a5c1ccd | |
parent | f917f26776e4d90cd89fbc9b7fb5e87eec96d770 (diff) | |
parent | 4e4778c7c92e51f514d97625a76bef9669986b7b (diff) | |
download | vyatta-cfg-vpn-73319ed73e3072f07552c3c7a9866e74a2f8c91a.tar.gz vyatta-cfg-vpn-73319ed73e3072f07552c3c7a9866e74a2f8c91a.zip |
Merge pull request #54 from goodNETnick/equuleus1.3.2
IPsec: T4087: increasing the maximum number of IKE proposals
-rwxr-xr-x | scripts/vpn-config.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vpn-config.pl b/scripts/vpn-config.pl index dc09071..b0aae42 100755 --- a/scripts/vpn-config.pl +++ b/scripts/vpn-config.pl @@ -31,7 +31,7 @@ use constant ESPLIFETIME_DEFAULT => 3600; # 1 hour use constant REKEYMARGIN_DEFAULT => 540; # 9 minutes use constant REKEYFUZZ_DEFAULT => 100; use constant INVALID_LOCAL_IP => 254; -use constant VPN_MAX_PROPOSALS => 10; +use constant VPN_MAX_PROPOSALS => 1000; use Vyatta::TypeChecker; use Vyatta::VPN::Util; |