Deleted old documentation files

This commit is contained in:
Tristan B. Velloza Kildaire 2022-12-08 12:00:13 +02:00
parent 18900c4943
commit 83717335eb
4 changed files with 0 additions and 65 deletions

View File

@ -1,24 +0,0 @@
Bird 1.6 Babel configuration
============================
In `/etc/bird/crxn/babel.conf` place the following template:
```
# CRXN Babel protocol
protocol babel crxnBabel
{
# Interfaces to run babel on
interface "interface1", "interface2";
import filter crxnFilter;
export filter crxnFilter;
table crxn;
}
```
1. Set the `interface` list to a list of interfaces you wish the babel
protocol to run on
* It also supports regex in a string so you can do `"interface*"` for example
And that is all!

View File

@ -1,27 +0,0 @@
Bird 2 Babel configuration
==========================
In `/etc/bird/crxn/babel.conf` place the following template:
```
# CRXN Babel protocol
protocol babel crxnBabel
{
# Interfaces to run babel on
interface "interface1", "interface2";
ipv6
{
import filter crxnFilter;
export filter crxnFilter;
table crxn;
};
}
```
1. Set the `interface` list to a list of interfaces you wish the babel
protocol to run on
* It also supports regex in a string so you can do `"interface*"` for example
And that is all!

View File

@ -1,7 +0,0 @@
Bird Babel configuration
========================
Two configurations:
1. [Bird 1.6](protocols/babel/bird1.6_babel.md)
1. [Bird 2](protocols/babel/bird2_babel.md)

View File

@ -1,7 +0,0 @@
Protocols
=========
This page lists help pages for configuring individual routing protocols.
1. [Babel](babel/)
2. [OSPF](ospf/)