From 9449426cb5d80e17c226a59d66afc1d10fb6369a Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Thu, 3 Jun 2021 21:30:22 +0200 Subject: [PATCH] Added router ID declaration and missing includes --- docs/routing/bird/bird1.6.md | 17 +++++++++++++++++ docs/routing/bird/bird2.md | 14 ++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/docs/routing/bird/bird1.6.md b/docs/routing/bird/bird1.6.md index 0d95291..a9c32a1 100644 --- a/docs/routing/bird/bird1.6.md +++ b/docs/routing/bird/bird1.6.md @@ -25,6 +25,22 @@ The configuration template is constructed out of the following files: * Depending on what protocol you want to use this will contains configurations for each +All of these will be included in a file saved at `/etc/crxn/bird.conf` like so: + +``` +router id ; + +include "/etc/crxn/filters.conf"; +include "/etc/crxn/networks.conf"; +include "/etc/crxn/tables.conf"; +include "/etc/crxn/router.conf"; +include "/etc/crxn/protocols.conf"; +``` + +Remember to set a unique router ID in ``, make it anything - it doesn't have to even be an address you own. + +--- + #### `filters.conf` This file holds all the required functions for subnet matching and also @@ -149,3 +165,4 @@ instance and one `ospf` instance): import "babel.conf"; import "ospf.conf"; ``` + diff --git a/docs/routing/bird/bird2.md b/docs/routing/bird/bird2.md index ad23b48..e46b682 100644 --- a/docs/routing/bird/bird2.md +++ b/docs/routing/bird/bird2.md @@ -25,6 +25,20 @@ The configuration template is constructed out of the following files: * Depending on what protocol you want to use this will contains configurations for each +All of these will be included in a file saved at `/etc/crxn/bird.conf` like so: + +``` +router id ; + +include "/etc/crxn/filters.conf"; +include "/etc/crxn/networks.conf"; +include "/etc/crxn/tables.conf"; +include "/etc/crxn/router.conf"; +include "/etc/crxn/protocols.conf"; +``` + +Remember to set a unique router ID in ``, make it anything - it doesn't have to even be an address you own. + #### `filters.conf` This file holds all the required functions for subnet matching and also