diff options
author | goodNETnick <pknet@ya.ru> | 2021-12-28 00:53:56 -0500 |
---|---|---|
committer | goodNETnick <pknet@ya.ru> | 2021-12-28 09:03:50 -0500 |
commit | 4e4778c7c92e51f514d97625a76bef9669986b7b (patch) | |
tree | bd3c9d1c0a60d1603f400a04c82cb83e5cefef64 | |
parent | 9cc1a0ad937929606a38e63cefb7708f24cae975 (diff) | |
download | vyatta-cfg-vpn-4e4778c7c92e51f514d97625a76bef9669986b7b.tar.gz vyatta-cfg-vpn-4e4778c7c92e51f514d97625a76bef9669986b7b.zip |
IPsec: T4087: increasing the number of proposals allowed for the IKE group
-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 8bb052c..5c405c0 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; |