diff options
author | Alex Harpin <development@landsofshadow.co.uk> | 2014-10-05 14:49:04 +0100 |
---|---|---|
committer | Alex Harpin <development@landsofshadow.co.uk> | 2014-10-05 14:49:04 +0100 |
commit | c53fca329e2ff49625321c516917896d566add6e (patch) | |
tree | da774d84a328fd05f99c7198dd367d35345e594d /scripts | |
parent | 62253b1ddf16631ec772cb8ff480d35bd989ffb6 (diff) | |
download | vyatta-cfg-vpn-c53fca329e2ff49625321c516917896d566add6e.tar.gz vyatta-cfg-vpn-c53fca329e2ff49625321c516917896d566add6e.zip |
vyatta-cfg-vpn: fix for vti interface going down remains routed
Revert the fix put in place for Bug #183 as this causes multiple routes
to be installed when more than one VTI routes to the same subnet (in
the case of failure over routing etc). As it stands, when one of these
interfaces goes down, the additional route remains active, resulting in
this route still being used even though no traffic can pass.
Removing the up-client fix proposed for Bug #183 fixes this issue and
doesn't affect the normal operation of these VTIs.
Bug #291 http://bugzilla.vyos.net/show_bug.cgi?id=291
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vti-up-down.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vti-up-down.sh b/scripts/vti-up-down.sh index 378cb6e..60fc191 100755 --- a/scripts/vti-up-down.sh +++ b/scripts/vti-up-down.sh @@ -5,7 +5,7 @@ source /etc/default/vyatta source /etc/default/locale case "$PLUTO_VERB" in -route-client | up-client) +route-client) /opt/vyatta/sbin/vyatta-vti-config.pl --updown --intf=$1 --action=up ;; down-client) |