We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb9c5ff commit cee88b2Copy full SHA for cee88b2
pkg/bgpserver/connector.go
@@ -135,7 +135,13 @@ func (bs *bgpServerConnector) Start() error {
135
HoldTime: peer.KeepaliveIntervalSec * 3,
136
},
137
138
- // ebgp multihop is always enabled
+ // eBGP Multihop is always enabled
139
+ // NOTE:
140
+ // eBGP is used because gobgp's best path selection does not work properly for routes
141
+ // received from the Route Reflector by an iBGP peer. (as of gobgp v3.36.0)
142
+ // In an environment where db-controller is running, the anchor and each DB server are
143
+ // placed in different segments, so eBGP multihop must be enabled so that peers can be
144
+ // established across routers.
145
EbgpMultihop: &gobgpapi.EbgpMultihop{
146
Enabled: true,
147
MultihopTtl: 255,
0 commit comments