Adds the maximum-paths command for IPv6.
PR: https://github.com/vyos/vyatta-cfg-quagga/pull/18
Description: https://community.ubnt.com/t5/EdgeMAX-Feature-Requests/Enable-IPv6-multipath-config-option/idi-p/1879555
Adds the maximum-paths command for IPv6.
PR: https://github.com/vyos/vyatta-cfg-quagga/pull/18
Description: https://community.ubnt.com/t5/EdgeMAX-Feature-Requests/Enable-IPv6-multipath-config-option/idi-p/1879555
As far as I can see it is enabled by default in recent frr:
http://docs.frrouting.org/en/latest/bgp.html?highlight=multipath
See also:
It may be supported but the syntax in the Pull-request is wrong and does not work for FRR, it needs to be adjusted.
Frankly, I can see why FRR doesn't want it to be modifiable at runtime. If you are decreasing the number, it would force a big routing table rebuild, and tracking whether the user increased or decreased it to decide if command should be allowed or not is more trouble than it's worth.
Maybe it should be an option outside of the BGP tree, not sure.
Needs to migrate "maximum-paths" to afi and add ipv6 (1.3)
vyos@r1.3# set protocols bgp 65001 maximum-paths Possible completions: ebgp Maximum ebgp multipaths ibgp Maximum ibgp multipaths
To address-family ipv4|ipv6 as it in the 1.4
vyos@r-roll01# set protocols bgp 65001 address-family ipv4-unicast maximum-paths Possible completions: ebgp eBGP maximum paths ibgp iBGP maximum paths vyos@r-roll01# set protocols bgp 65001 address-family ipv6-unicast maximum-paths Possible completions: ebgp eBGP maximum paths ibgp iBGP maximum paths
PR https://github.com/vyos/vyatta-cfg-quagga/pull/87
PR https://github.com/vyos/vyos-1x/pull/954
PR https://github.com/vyos/vyos-1x/pull/955
set protocols bgp 65001 address-family ipv4-unicast maximum-paths ebgp '14' set protocols bgp 65001 address-family ipv4-unicast maximum-paths ibgp '24' set protocols bgp 65001 address-family ipv6-unicast maximum-paths ebgp '16' set protocols bgp 65001 address-family ipv6-unicast maximum-paths ibgp '26'