summaryrefslogtreecommitdiffhomepage
path: root/pkg/server
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/server')
-rw-r--r--pkg/server/peer.go18
-rw-r--r--pkg/server/server.go15
2 files changed, 18 insertions, 15 deletions
diff --git a/pkg/server/peer.go b/pkg/server/peer.go
index c125a5ba..1f67fd48 100644
--- a/pkg/server/peer.go
+++ b/pkg/server/peer.go
@@ -491,6 +491,24 @@ func (peer *Peer) handleUpdate(e *FsmMsg) ([]*table.Path, []bgp.RouteFamily, *bg
continue
}
}
+ // RFC4456 8. Avoiding Routing Information Loops
+ // A router that recognizes the ORIGINATOR_ID attribute SHOULD
+ // ignore a route received with its BGP Identifier as the ORIGINATOR_ID.
+ peer.fsm.lock.RLock()
+ isIBGPPeer := peer.isIBGPPeer()
+ routerId := peer.fsm.gConf.Config.RouterId
+ peer.fsm.lock.RUnlock()
+ if isIBGPPeer {
+ if id := path.GetOriginatorID(); routerId == id.String() {
+ log.WithFields(log.Fields{
+ "Topic": "Peer",
+ "Key": peer.ID(),
+ "OriginatorID": id,
+ "Data": path,
+ }).Debug("Originator ID is mine, ignore")
+ continue
+ }
+ }
paths = append(paths, path)
}
peer.adjRibIn.Update(e.PathList)
diff --git a/pkg/server/server.go b/pkg/server/server.go
index 356ebf23..c4177ab0 100644
--- a/pkg/server/server.go
+++ b/pkg/server/server.go
@@ -423,21 +423,6 @@ func filterpath(peer *Peer, path, old *table.Path) *table.Path {
if info.AS != peer.AS() {
ignore = false
}
- // RFC4456 8. Avoiding Routing Information Loops
- // A router that recognizes the ORIGINATOR_ID attribute SHOULD
- // ignore a route received with its BGP Identifier as the ORIGINATOR_ID.
- peer.fsm.lock.RLock()
- routerId := peer.fsm.gConf.Config.RouterId
- peer.fsm.lock.RUnlock()
- if id := path.GetOriginatorID(); routerId == id.String() {
- log.WithFields(log.Fields{
- "Topic": "Peer",
- "Key": peer.ID(),
- "OriginatorID": id,
- "Data": path,
- }).Debug("Originator ID is mine, ignore")
- return nil
- }
if info.RouteReflectorClient {
ignore = false
}