diff options
-rw-r--r-- | server/server.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/server.go b/server/server.go index 6e20979b..cee21283 100644 --- a/server/server.go +++ b/server/server.go @@ -367,7 +367,7 @@ func filterpath(peer *Peer, path, old *table.Path) *table.Path { } if ignore { - if !path.IsWithdraw && old != nil && old.GetSource().Address.String() != peer.ID() { + if !path.IsWithdraw && old != nil && old.GetSource().Address.String() != peer.ID() && old.GetSource().AS != peer.fsm.pConf.State.PeerAs { // we advertise a route from ebgp, // which is the old best. We got the // new best from ibgp. We don't |