Closed n3wtype closed 1 year ago
@dwalton76 do you have an opinion on this?
Any opinion on this? Juniper for example has such functionality:
admin@rtr# set family inet unicast add-path send path-count ?
Possible completions:
<path-count> Number of paths to advertise (2..6)
I think this is a reasonable request for an enhancement. We would welcome patches for this.
To select a specified number of best paths, we need to add command
bgp additional-paths select best
The best path selection algorithm needs to run in a loop to find the best N paths from the available paths P (if N > P then it becomes all available paths)
The bgp_adj_out structure needs to contain a chain of entries (depending on the number of paths)
I can look at this issue
There are two options to control number of prefixes advertised when using AddPath: addpath-tx-all-paths and addpath-tx-bestpath-per-AS. It would be really nice to have ability to specify exact number of tx prefixes per destination. I have bunch of full meshed route reflectors and consider I'm considering using AddPath to advertise additional prefixes to reflection clients. However, addpath-tx-all-paths seems like an overkill in my case.