diff options
author | Jeff Leung <jleung@v10networks.ca> | 2016-01-29 18:43:45 -0500 |
---|---|---|
committer | Jeff Leung <jleung@v10networks.ca> | 2016-01-29 18:43:45 -0500 |
commit | 5ee99ec9d5cca8c13804964eee23ce0b15578edf (patch) | |
tree | 7c502f983d99b13b17a2521a0e05b184d055dc89 /scripts | |
parent | 9e5c1863dde4762120d52f851d25178d8be5bb24 (diff) | |
download | vyatta-cfg-vpn-5ee99ec9d5cca8c13804964eee23ce0b15578edf.tar.gz vyatta-cfg-vpn-5ee99ec9d5cca8c13804964eee23ce0b15578edf.zip |
vyatta-cfg-vpn: Properly implement force-encapsulation and fix descriptions
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 4267564..6a9063f 100755 --- a/scripts/vpn-config.pl +++ b/scripts/vpn-config.pl @@ -817,7 +817,7 @@ if ($vcVPN->exists('ipsec')) { # Allow the user for force UDP encapsulation for the ESP # payload. # - my $forceencaps = $vcVPN->returnValue("ipsec site-to-site $peer force-encapsulation"); + my $forceencaps = $vcVPN->returnValue("ipsec site-to-site peer $peer force-encapsulation"); if (defined($forceencaps)) { if ($forceencaps eq 'enable') { $genout .= "\tforceencaps=yes\n"; |