Added router ID declaration and missing includes

This commit is contained in:
Tristan B. Velloza Kildaire 2021-06-03 21:30:22 +02:00
parent 667d059ba0
commit 9449426cb5
2 changed files with 31 additions and 0 deletions

View File

@ -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 <ipv4>;
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 `<ipv4>`, 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";
```

View File

@ -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 <ipv4>;
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 `<ipv4>`, 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