diff options
author | susheela <susheela.vaidya@vyatta.com> | 2012-09-12 13:49:47 -0700 |
---|---|---|
committer | susheela <susheela.vaidya@vyatta.com> | 2012-09-12 13:49:47 -0700 |
commit | aa40d2635185ca0c6ea7d65408222d9dda0a347e (patch) | |
tree | 2f2c7d2cd317ee3880d87e6dd1a40d3caf49a88f /scripts/bgp/vyatta-bgp.pl | |
parent | 41563446646940ded446e480a26554f7b6b2d0b9 (diff) | |
download | vyatta-cfg-quagga-aa40d2635185ca0c6ea7d65408222d9dda0a347e.tar.gz vyatta-cfg-quagga-aa40d2635185ca0c6ea7d65408222d9dda0a347e.zip |
Config commands for bGP multipaths.
Diffstat (limited to 'scripts/bgp/vyatta-bgp.pl')
-rwxr-xr-x | scripts/bgp/vyatta-bgp.pl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/bgp/vyatta-bgp.pl b/scripts/bgp/vyatta-bgp.pl index 79ea43bf..cbe05f20 100755 --- a/scripts/bgp/vyatta-bgp.pl +++ b/scripts/bgp/vyatta-bgp.pl @@ -130,6 +130,18 @@ my %qcom = ( set => 'router bgp #3 ; aggregate-address #5 ?as-set ?summary-only', del => 'router bgp #3 ; no aggregate-address #5 ?as-set ?summary-only', }, + 'protocols bgp var maximum-paths' => { + set => undef, + del => undef, + }, + 'protocols bgp var maximum-paths ebgp' => { + set => 'router bgp #3 ; maximum-paths #6', + del => 'router bgp #3 ; no maximum-paths #6', + }, + 'protocols bgp var maximum-paths ibgp' => { + set => 'router bgp #3 ; maximum-paths ibgp #6', + del => 'router bgp #3 ; no maximum-paths ibgp #6', + }, 'protocols bgp var neighbor' => { set => undef, del => undef, |