Internet-Draft | bgp-tls | October 2024 |
Wirtgen & Bonaventure | Expires 24 April 2025 | [Page] |
This document specifies the utilization of TCP/TLS to support BGP.¶
This note is to be removed before publishing as an RFC.¶
Status information for this document may be found at https://datatracker.ietf.org/doc/draft-wirtgen-bgp-tls/.¶
Discussion of this document takes place on the IDR Working Group mailing list (mailto:idr@ietf.org), which is archived at https://mailarchive.ietf.org/arch/browse/idr/. Subscribe at https://www.ietf.org/mailman/listinfo/idr/.¶
Source for this draft and an issue tracker can be found at https://github.com/obonaventure/draft-bgp-tls.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 24 April 2025.¶
Copyright (c) 2024 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
The Border Gateway Protocol (BGP) [RFC4271] relies on the TCP protocol to establish BGP sessions between routers. A recent draft [I-D.draft-retana-idr-bgp-quic] has proposed to replace TCP with the QUIC protocol [RFC9000]. QUIC brings many features compared to TCP including security, the support of multiple streams or datagrams.¶
From a security viewpoint, an important benefit of QUIC compared to TCP is that QUIC by design prevents injection attacks that are possible when TCP is used by BGP [RFC4272]. Several techniques can be used by BGP routers to counter this attacks [RFC5082] [RFC5925]. TCP-AO [RFC5925] authenticates the packets exchanged over a BGP session provides similar features as QUIC. However, it is notoriously difficult to configure the keys used to protect BGP sessions.¶
The widespread deployment of TLS [RFC8446] combined with the possibility of deriving TCP-AO keys from the TLS handshake [I-D.draft-piraux-tcp-ao-tls] creates an interest in using TLS to secure BGP sessions. This document describes how BGP can operate over TCP/TLS.¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
This document uses network byte order (that is, big endian) values. Fields are placed starting from the high-order bits of each byte.¶
A BGP over TLS/TCP session is established in two phases:¶
The TCP connection SHOULD be established on port TBD1.¶
During the establishment of the TLS session, the router that initiates the connection MUST use the "botls" token in the Application Layer Protocol Negotiation (ALPN) extension [RFC7301]. The support for other ALPN MUST NOT be proposed during the TLS handshake.¶
Once the TLS handshake is established and finished, the BGP session is initiated as defined in [RFC4271] and the protocol operates in the same way as a classic BGP over TCP session. The difference is that the BGP session is now encrypted and authenticated using the TLS layer. As in [I-D.draft-retana-idr-bgp-quic], the TLS authentication parameters used for this connection are out of the scope of this draft.¶
A first implementation of BGP over TLS/TCP was demonstrated in [CONEXT24].¶
This document improves the security of BGP sessions since the information exchanged over the session is now protected by using TLS.¶
If TLS encounters a payload injection attack, it will generate an alert that immediately closes the TLS session. The BGP router SHOULD then attempt to reestablish the session. However, this will cause traffic to be interrupted during the connection re-establishement.¶
If both BGP peer supports TCP-AO, the TLS stack is protected against payload injection and this attack can be avoided. When enabled, TCP-AO counters TCP injection attacks listed in [RFC5082].¶
Furthermore, if the BGP router supports TCP-AO, we recommend an opportunistic TCP-AO approach as suggested in [I-D.draft-piraux-tcp-ao-tls]. The router will attempt to connect using TCP-AO with a default key. When the TLS handshake is finished, the routers will derive a new TCP-AO key using the TLS key.¶
TCP-MD5 [RFC2385] MAY be used to protect the TLS session if TCP-AO is not available on the BGP router.¶
The use of certificates to secure BGP raises operational concerns. ASes MAY trust external actors and use their certificates for authentication. The provisioning of BGP over TLS/TCP certificates and some alternatives to using certificates will be discussed in another companion draft.¶
IANA is requested to assign a TCP port (TBD1) from the "Service Name and Transport Protocol Port Number Registry" as follows:¶
Service Name: botls¶
Port Number: TBD1¶
Transport Protocol: TCP¶
Description: BGP over TLS/TCP¶
Assignee: IETF¶
Contact: IDR WG¶
Registration Data: TBD¶
Reference: this document¶
Unauthorized Use Reported: idr@ietf.org¶
It is suggested to use the same port as the one selected for BGP over QUIC [I-D.draft-retana-idr-bgp-quic].¶
The authors thank Dimitri Safonov for the TCP-AO implementation in Linux.¶