]> git.proxmox.com Git - mirror_frr.git/blobdiff - bgpd/bgp_errors.c
Merge pull request #12642 from anlancs/fix/bgpd-debug-name
[mirror_frr.git] / bgpd / bgp_errors.c
index f11717b41fcedb19a9c8ce8f30a4332e9f794bab..8bc2dbca7a2273edf11f8868d0ff926c4d56f7be 100644 (file)
@@ -181,6 +181,12 @@ static struct log_ref ferr_bgp_warn[] = {
                .description = "BGP is in the process of building NLRI information for a peer and has discovered an inconsistent internal state",
                .suggestion = "Gather log files and open an Issue, restart FRR",
        },
+       {
+               .code = EC_BGP_SENDQ_STUCK_WARN,
+               .title = "BGP has been unable to send anything to a peer for an extended time",
+               .description = "The BGP peer does not seem to be receiving or processing any data received from us, causing updates to be delayed.",
+               .suggestion = "Check connectivity to the peer and that it is not overloaded",
+       },
        {
                .code = END_FERR,
        }
@@ -229,6 +235,12 @@ static struct log_ref ferr_bgp_err[] = {
                .description = "BGP update has invalid length for PMSI tunnel",
                .suggestion = "Determine the source of the update and determine why the PMSI tunnel attribute length has been set incorrectly"
        },
+       {
+               .code = EC_BGP_ATTR_AIGP,
+               .title = "BGP AIGP attribute is incorrect",
+               .description = "BGP AIGP attribute is incorrect",
+               .suggestion = "Determine the source of the attribute and determine why the AIGP attribute has been set incorrectly"
+       },
        {
                .code = EC_BGP_PEER_GROUP,
                .title = "BGP peergroup operated on in error",
@@ -474,6 +486,18 @@ static struct log_ref ferr_bgp_err[] = {
                .description = "BGP route for the specified AFI/SAFI is NULL",
                .suggestion = "Get log files from router and open an issue",
        },
+       {
+               .code = EC_BGP_NO_LL_ADDRESS_AVAILABLE,
+               .title = "BGP v6 peer with no LL address on outgoing interface",
+               .description = "BGP when using a v6 peer requires a v6 LL address to be configured on the outgoing interface as per RFC 4291 section 2.1",
+               .suggestion = "Add a v6 LL address to the outgoing interfaces as per RFC",
+       },
+       {
+               .code = EC_BGP_SENDQ_STUCK_PROPER,
+               .title = "BGP is shutting down a peer due to being unable to send anything for an extended time",
+               .description = "No BGP updates were successfully sent to the peer for more than twice the holdtime.",
+               .suggestion = "Check connectivity to the peer and that it is not overloaded",
+       },
        {
                .code = END_FERR,
        }