From a04407cdaa21f8c2ce5efdbd210d4f1a521f7a40 Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Thu, 7 Nov 2024 11:20:06 +0200 Subject: [PATCH 1/2] bgpd: Add SendHoldTimer_Expires event to bgp_fsm_rfc_codes Not really used, but since we have it, let's update it as a pointer. This event comes from https://datatracker.ietf.org/doc/html/rfc9687 Signed-off-by: Donatas Abraitis --- bgpd/bgpd.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bgpd/bgpd.h b/bgpd/bgpd.h index f7f74c670f08..f123188ae8c4 100644 --- a/bgpd/bgpd.h +++ b/bgpd/bgpd.h @@ -1135,7 +1135,8 @@ enum bgp_fsm_rfc_codes { BGP_FSM_NotifMsg = 25, BGP_FSM_KeepAliveMsg = 26, BGP_FSM_UpdateMsg = 27, - BGP_FSM_UpdateMsgErr = 28 + BGP_FSM_UpdateMsgErr = 28, + BGP_FSM_SendHoldTimer_Expires = 29, }; /* From 9fd7ec95511b3072a4122237c872d2ff00f19ab1 Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Thu, 7 Nov 2024 11:25:52 +0200 Subject: [PATCH 2/2] doc: Add missing RFCs for BGP to the list * RFC 9687 * RFC 7311 Signed-off-by: Donatas Abraitis --- doc/user/about.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/user/about.rst b/doc/user/about.rst index ba80a324d3bb..e16ed7e3cc2e 100644 --- a/doc/user/about.rst +++ b/doc/user/about.rst @@ -343,6 +343,8 @@ BGP :t:`Making Route Flap Damping Usable. C. Pelsser, R. Bush, K. Patel, P. Mohapatra, O. Maennel. May 2014.` - :rfc:`7300` :t:`Reservation of Last Autonomous System (AS) Numbers. J. Haas, J. Mitchell. July 2014.` +- :rfc:`7311` + :t:`The Accumulated IGP Metric Attribute for BGP. P. Mohapatra, R. Fernando, E. Rosen, J. Uttaro. August 2014.` - :rfc:`7313` :t:`Enhanced Route Refresh Capability for BGP-4. K. Patel, E. Chen, B. Venkatachalapathy. July 2014.` - :rfc:`7606` @@ -389,6 +391,8 @@ BGP :t:`A BGP Cease NOTIFICATION Subcode for Bidirectional Forwarding Detection (BFD). J. Haas. March 2023.` - :rfc:`9494` :t:`Long-Lived Graceful Restart for BGP. J. Uttaro, E. Chen, B. Decraene, J. Scudder. November 2023.` +- :rfc:`9687` + :t:`Border Gateway Protocol 4 (BGP-4) Send Hold Timer. J. Snijders, B. Cartwright-Cox, Y. Qu. November 2024.` OSPF ----