LogicMonitor + Catchpoint: Enter the New Era of Autonomous IT

Learn more

Stop troubleshooting. Start monitoring.

LogicMonitor surfaces BGP session errors, configuration drift, and routing anomalies before they require manual troubleshooting, turning reactive firefighting into proactive network management.

Why is my BGP session not establishing?

Start with the basics: confirm TCP port 179 is reachable between the two peers (not blocked by ACL or firewall), verify the neighbor IP addresses and AS numbers match on both sides, check that authentication parameters (MD5 password) are identical if used, and ensure there is no MTU mismatch causing TCP SYN packets to be silently dropped. Use show bgp neighbor commands to see the current session state and any error codes received.

What do BGP NOTIFICATION error codes mean?

BGP NOTIFICATION messages include an error code and subcode that identify why a session was terminated. Common codes include: code 2 (OPEN Message Error) with subcode 2 (bad peer AS) meaning AS number mismatch; code 4 (Hold Timer Expired) meaning keepalives stopped; code 6 (Cease) with various subcodes for administrative shutdowns or prefix limit violations. Always check NOTIFICATION codes in the session log, they directly identify what caused the reset.

How do I verify BGP route policy is working correctly?

Use show route receive-protocol bgp <peer> to see routes received from a peer before policy is applied, and show route table inet.0 to see routes installed after policy. Compare the two to identify routes being filtered by import policy. For export policy, show route advertising-protocol bgp <peer> shows routes being sent to a peer. If an expected route is missing, trace through the policy chain to find the first term that matches and blocks it.

What is route dampening and should I use it?

Route dampening is a BGP mechanism that suppresses unstable routes (routes that repeatedly withdraw and re-advertise) to prevent route flapping from destabilizing the network. Each flap increases a penalty counter; when it exceeds a suppress threshold, the route is dampened and not advertised. While useful in theory, dampening can suppress legitimate routes during incidents and is generally not recommended in modern networks. RFC 7196 discourages its use in most scenarios.