Bird Internet routing daemon

Summary

BIRD (recursive acronym for BIRD Internet Routing Daemon[2]) is an open-source implementation for routing Internet Protocol packets on Unix-like operating systems. It was developed as a school project at the Faculty of Mathematics and Physics, Charles University, Prague,[3] and is distributed under the GNU General Public License.

BIRD Internet Routing Daemon
Initial releaseJune 9, 2000; 23 years ago (2000-06-09)
Stable release
2.14 / October 7, 2023 (2023-10-07)[1]
Repository
  • gitlab.labs.nic.cz/labs/bird Edit this at Wikidata
Operating systemUnix-like
TypeRouting
LicenseGNU General Public License
Websitebird.network.cz

BIRD supports Internet Protocol version 4 and version 6 by running separate daemons.[4] It establishes multiple routing tables,[5] and uses BGP, RIP, and OSPF routing protocols, as well as statically defined routes. Its design differs significantly from GNU Zebra, Quagga and FRRouting. Currently BIRD is included in many Linux distributions, such as Debian,[6] Ubuntu[7] and Fedora.[8]

BIRD is used in several Internet exchanges, such as the London Internet Exchange (LINX),[9] LONAP,[10] DE-CIX[11] and MSK-IX[12] as a route server, where it replaced Quagga because of its scalability issues.[9] According to the 2012 Euro-IX survey,[13] BIRD is the most used route server amongst European Internet exchanges.

In 2010, CZ.NIC, the current sponsor of BIRD development, received the LINX Conspicuous Contribution Award for contribution of BIRD to the advancement in route server technology.[14]

Design edit

 
Maria Matějka presenting BIRD v2 design decisions at RIPE#86

BIRD implements an internal routing table to which the supported protocols connect. Most of these protocols import network routes to this internal routing table and also export network routes from this internal routing table to the given protocol. This way information about network routes is exchanged among different routing protocols.

Using the kernel protocol this internal routing table may be connected to the actual kernel routing table. This allows BIRD to export network routes from its internal routing table to the kernel routing table and optionally also learn about network routes from the kernel routing table (created externally by the administrator or by other means) and import these routes into its internal routing table.

Filters may be used to control what network routes are imported into the internal routing table or exported to the given protocol. Network routes may be accepted, rejected or modified using filters.

BIRD also supports multiple internal routing tables and multiple instances of supported protocol types. Protocols may be connected to different internal routing tables, these internal routing tables may exchange information about network routes they contain (controlled by filters) and each of these internal routing tables may be connected to a different kernel routing table thus allowing for policy routing.

Configuration is done by editing the configuration file and telling BIRD to reconfigure itself. BIRD changes to the new configuration without the need to restart the daemon itself and restarts reconfigured protocols only if necessary. There is also an option to do a soft reconfiguration, which doesn't restart protocols but may leave some stale information such as changed filters not filtering out already exported network routes.

See also edit

References edit

  1. ^ "NEWS file". CZ.NIC.
  2. ^ "The BIRD Internet Routing Daemon Project". bird.network.cz. Retrieved 2022-04-27.
  3. ^ Ondrej Filip (2010). BIRD Internet Routing Daemon (PDF). NANOG-48. NANOG.
  4. ^ "BIRD FAQ". BIRD source code. Retrieved 20 November 2013.
  5. ^ Vincent Bernat (25 June 2011). "Network lab: site to site VPN". Retrieved 2013-02-22.
  6. ^ Debian - Details of package bird in squeeze. Packages.debian.org. Retrieved on 2014-05-30.
  7. ^ "Ubuntu – Error".
  8. ^ bird | Package Info | koji. Koji.fedoraproject.org. Retrieved on 2014-05-30.
  9. ^ a b Preston, Tim (2010-01-21). "BIRD Route Server at LINX" (PDF). Archived from the original (PDF) on 2011-07-21.
  10. ^ Davidson, Andy (2009-05-28). "LONAP's Route Servers" (PDF). UKNOF13. Archived from the original (PDF) on 2009-06-20. Retrieved 30 July 2011.
  11. ^ "DE-CIX news" (PDF). February 2010. Archived from the original (PDF) on 2011-09-28.
  12. ^ "MSK-IX :: Looking glass".
  13. ^ "European Internet Exchange Association 2011 Report on European IXPs". Archived from the original on 2014-05-25.
  14. ^ "LINX Conspicuous Contribution Award". Archived from the original on 2011-07-01.

External links edit

  • Official website
  • Bird Documentation
  • Bloom-Bird: A Scalable Open Source Router Based on Bloom Filter