diff options
author | sever-sever <v.gletenko@vyos.io> | 2021-01-24 15:31:02 +0000 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-25 19:29:50 +0100 |
commit | f0ae68502eabfb0004dfd7272925fae8738d828a (patch) | |
tree | 70067ee676b160b23c541babe04b569ae3fdb1ac /scripts/bgp/vyatta-bgp.pl | |
parent | ed8f75225a4a4d797affd02d355528dec8eb458b (diff) | |
download | vyatta-cfg-quagga-f0ae68502eabfb0004dfd7272925fae8738d828a.tar.gz vyatta-cfg-quagga-f0ae68502eabfb0004dfd7272925fae8738d828a.zip |
bgp: T3126: Fix config for neighbor unsuppress-map
(cherry picked from commit 85ed73e12637f82505c9dea7008c7f4fdd9763b7)
Diffstat (limited to 'scripts/bgp/vyatta-bgp.pl')
-rwxr-xr-x | scripts/bgp/vyatta-bgp.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/bgp/vyatta-bgp.pl b/scripts/bgp/vyatta-bgp.pl index 50a144ab..88734d19 100755 --- a/scripts/bgp/vyatta-bgp.pl +++ b/scripts/bgp/vyatta-bgp.pl @@ -495,6 +495,10 @@ my %qcom = ( set => 'router bgp #3 ; address-family ipv4 unicast ; neighbor #5 soft-reconfiguration inbound', del => 'router bgp #3 ; address-family ipv4 unicast ; no neighbor #5 soft-reconfiguration inbound', }, + 'protocols bgp var neighbor var address-family ipv4-unicast unsuppress-map' => { + set => 'router bgp #3 ; address-family ipv4 unicast ; neighbor #5 unsuppress-map #9', + del => 'router bgp #3 ; address-family ipv4 unicast ; no neighbor #5 unsuppress-map #9', + }, 'protocols bgp var neighbor var remote-as' => { set => 'router bgp #3 ; neighbor #5 remote-as #7 ; neighbor #5 activate', del => 'router bgp #3 ; no neighbor #5 remote-as #7', |