diff options
author | Mohit Mehta <mohit.mehta@vyatta.com> | 2009-11-24 21:33:31 -0800 |
---|---|---|
committer | Mohit Mehta <mohit.mehta@vyatta.com> | 2010-01-12 16:53:33 -0800 |
commit | 229dd4af29f29d8a2a4983a811b0c4bef7111892 (patch) | |
tree | 54ce127ca00f8ee37c6e75e245ec439f27ea1d05 /lib/Vyatta/VPN | |
parent | 275789c02381ebe359d2f0a970aabcf7587e0f58 (diff) | |
download | vyatta-cfg-vpn-229dd4af29f29d8a2a4983a811b0c4bef7111892.tar.gz vyatta-cfg-vpn-229dd4af29f29d8a2a4983a811b0c4bef7111892.zip |
First pass code changes to vyatta-cfg-vpn for migration to strongswan :
Remove CLI support and back-end code for unsupported parameters
* No aggressive mode support in strongswan
* remove syslog facility.level CLI. strongswan uses
authpriv facility by default, no syslog parameter support
* remove Robert's disable-uniqreqids option for now. need to get
strongswan to do the same thing first
Remove Openswan specific parameters added to workaroung bugs
* remove plutowait, this was added to workaround Openswan Bug 412
* remove nhelpers, this was added to workaround Openswan Bug 198
Other Changes
* add '!' at the end of ike and esp proposal list to signify end of list
* replace `ipsec start` commands with built-in commands for
`ipsec starter` control utility
* replace `ipsec auto` with `ipsec whack` commands. Still need to figure
out if `ipsec auto --add|--up $connection` could be replaces by simply
using `ipsec update` in stronswan
* change pluto.ctl path
Diffstat (limited to 'lib/Vyatta/VPN')
-rwxr-xr-x | lib/Vyatta/VPN/Util.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Vyatta/VPN/Util.pm b/lib/Vyatta/VPN/Util.pm index 1f0af2d..0c16049 100755 --- a/lib/Vyatta/VPN/Util.pm +++ b/lib/Vyatta/VPN/Util.pm @@ -36,7 +36,7 @@ use constant LOCAL_KEY_FILE_DEFAULT => '/opt/vyatta/etc/config/ipsec.d/rsa-keys/localhost.key'; sub is_vpn_running { - return ( -e '/var/run/pluto/pluto.ctl'); + return ( -e '/var/run/pluto.ctl'); } sub rsa_get_local_key_file { |