diff options
author | Daniil Baturin <daniil@baturin.org> | 2015-03-24 20:43:47 +0100 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2015-03-24 20:43:47 +0100 |
commit | 9864e2d7ef737817c1d2c665a3909bd6baa44971 (patch) | |
tree | 704be3f572aeb9b139db9913326d00c6a48c8bc6 | |
parent | 86f5b7e0ded02ff461f8c8039152484343c2ef6f (diff) | |
download | vyatta-cfg-quagga-9864e2d7ef737817c1d2c665a3909bd6baa44971.tar.gz vyatta-cfg-quagga-9864e2d7ef737817c1d2c665a3909bd6baa44971.zip |
Bug #528: use corrent command for removing IPv6 address-family from a neighbor.
-rwxr-xr-x | scripts/bgp/vyatta-bgp.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bgp/vyatta-bgp.pl b/scripts/bgp/vyatta-bgp.pl index a409f0f9..f475995f 100755 --- a/scripts/bgp/vyatta-bgp.pl +++ b/scripts/bgp/vyatta-bgp.pl @@ -156,7 +156,7 @@ my %qcom = ( }, 'protocols bgp var neighbor var address-family ipv6-unicast' => { set => 'router bgp #3 ; address-family ipv6 ; neighbor #5 activate', - del => 'router bgp #3 ; address-family ipv6 ; no neighbor #5', + del => 'router bgp #3 ; address-family ipv6 ; no neighbor #5 activate', }, 'protocols bgp var neighbor var address-family ipv6-unicast allowas-in' => { set => 'router bgp #3 ; address-family ipv6 ; neighbor #5 allowas-in', |