- Inicio
- Redes multinube
- Customer Edge diagnostics
- Diagnostic workflows
- Routes are not being advertised or learned
Routes are not being advertised or learned
For a site that is ONLINE — if it is not, start with
registration.
-
Is peering up at all?
show-ip-bgp-summary. ReadState/PfxRcd: a number means established, andUp/Downshows whether it has been stable. A small value on a site that has been up for days means the session is flapping. -
If the session is down, the cause is usually below BGP. Confirm the interface carrying the peering is up with
ip-link-show, then confirm reachability to the peer address.- On Azure: Peers are Azure Route Server instances (
az network routeserver peering list-learned-routes). - On AWS: Peers are the AWS VPC Router / gateway interface (
10.150.0.1). - On-Premise KVM: Peers are the containerized FRR ToR BGP router (
docker exec frr-router vtysh -c "show ip bgp summary").
- On Azure: Peers are Azure Route Server instances (
-
If the session is up but the VIP is unreachable, check what the node is actually advertising with
show-ip-bgp-neighbors-advertised-route. If the VIP is absent there, the problem is on this node and looking at the peer will not help. -
If the node advertises correctly but traffic still does not arrive, the control plane and the data plane disagree. Check the forwarding table the data plane actually uses with
rt, remembering that its VRF id is not the one BGP reports.Then resolve the next hop with
nh. A prefix present inrtwhose next hop isDropis a blackhole. -
If the session flaps,
show-ip-bgp-neighborscarries the last reset reason and the negotiated timers.