osrg/gobgp

how to support two local ip add same bgp-routes

zhouguoyang777 opened this issue · 3 comments

my system has two port, and each has one local ip, and the two port need to send same bgp-routes, but only one port can worked

local-address-list? https://github.com/osrg/gobgp/blob/master/docs/sources/configuration.md

local-address-list is ok, but no way to send same route, and only later route can worked

like this:

local-address-list = ["100.98.37.14","100.98.37.16"]
[[bgp-routes]]
afi-safi = "ipv4-unicast"
nlri = "10.249.189.208/28"
nexthop = "100.98.37.14"

[[bgp-routes]]
afi-safi = "ipv4-unicast"
nlri = "10.249.189.208/28"
nexthop = "100.98.37.16"

docker exec -it ebgp gobgp global rib
*> 10.249.189.208/28 100.98.37.16 00:00:04 [{Origin: i}]

[[bgp-routes]]
?
GoBGP doesn't support such.