From 2edede0bf58b643a5bc7104eef7998226a3c92da Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Tue, 6 Dec 2022 10:53:08 +0200 Subject: [PATCH] BIRD: WIP adding direct protocol --- docs/routing/bird/bird.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/docs/routing/bird/bird.md b/docs/routing/bird/bird.md index 2f7dd14..57f4a15 100644 --- a/docs/routing/bird/bird.md +++ b/docs/routing/bird/bird.md @@ -103,6 +103,25 @@ filter crxnFilter TODO: Add a check about not installing RTD_UNREACHABLEs which babel will generate sometimes and which BIRD reportedly has undefined behavior with +### Direct protocol + +TODO: fix/finish this section + +This provides BIRD with a manner of picking up the `subnet/prefix` pair that is assigned to local interfaces such that these can be imported into BIRD and later advertised. + +``` +protocol direct crxnDirect +{ + ipv6 + { + table crxn; + import filter crxnFilter; + }; + # Interfaces to find neighbours on + interface "eth*"; +} +``` + --- Old stuff below WIP):