diff options
author | goodNETnick <pknet@ya.ru> | 2021-12-28 01:07:26 -0500 |
---|---|---|
committer | goodNETnick <pknet@ya.ru> | 2021-12-28 09:07:55 -0500 |
commit | cb02e3194791a1be5c1f42091dd718c4e136593e (patch) | |
tree | 6adbe9360b5bc227358e9df7e3a971a00a866ce3 /scripts | |
parent | 8c0eeafe8e2893850ff650cafbd149e9bbc1fdea (diff) | |
download | vyatta-cfg-vpn-cb02e3194791a1be5c1f42091dd718c4e136593e.tar.gz vyatta-cfg-vpn-cb02e3194791a1be5c1f42091dd718c4e136593e.zip |
IPsec: T4087: increasing the number of proposals allowed for the IKE group
Diffstat (limited to 'scripts')
-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 dd1b789..cb3cac7 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; |