2021 ANRP award for xBGP
Every year, the Internet Research Task Force awards the Applied Networking Research Prize (ANRP) to recognise the best recent results in applied networking, ...
BGP is one of the most important Internet routing protocols. In addition to its role to disseminate interdomain routes, BGP is also used inside ISP networks to support various value-added services including Virtual Private Networks. Large cloud provides have also started to use BGP as an intradomain routing protocol in large datacenters.
A BGP implementation is often considered as a blackbox that interacts through different means:
Such a BGP implementation is depicted in the figure below.
BGP was designed more than thirty years ago. Since the first publication of BGP-4, various extensions have been discussed and approved within the IDR IETF Working Group. These extensions have proposed significant changes to the protocol. The figure below depicts the number of MUST/SHOULD RFC2119 found in all the BGP standards-track RFCs produced by the IDR working group during the last two decades.
Despite the importance of these protocol extensions, BGP implementations have not been designed with extensibility in mind. In The case for pluginized routing protocols, we proposed a different model to organise one BGP implementation, i.e. FRRouting. To enable network operators to develop their own extension to the BGP protocol, we have added to FRRouting a modified eBPF Virtual Machine that allows to execute operator supplied bytecode at various points in the FRRouting code to implement extensions to both OSPF and BGP. The figure below shows our modified architecture.
This modified BGP implementation contains an eBPF virtual machine that executes plugins that are supplied by the network operators. This approach allows to extend one particular implementation. In a forthcoming paper, we demonstrate how a similar idea can be made more generic and applied to different implementations so that a network operator can write plugins which can be executed on different implementations. This makes BGP implementations truly programmable.
Every year, the Internet Research Task Force awards the Applied Networking Research Prize (ANRP) to recognise the best recent results in applied networking, ...
An xBGP compliant implementation such as our forks of BIRD and FRRouting supports a simple API that enables network operators and researchers to extend it. T...
Olivier Bonaventure presented xBGP on November 19th, 2020 to the TCPM working group at IETF109
Thomas Wirtgen presented xBGP on November 4th, 2020 at HotNets 2020: Nineteenth ACM Workshop on Hot Topics in Networks. The full paper is available from the ...
The source code for our xBGP prototype is available on github. It is divided in several repositories:
The first step to allow BGP implementations to be programmed is to have a clear understanding of how the BGP protocol operates and how it processes and sends...