1
mirror of https://git.dn42.dev/wiki/wiki.git synced 2025-02-16 05:14:27 +01:00

Updated Bird (markdown)

This commit is contained in:
Mic92 2016-02-20 22:55:03 +00:00
parent 9746343ac4
commit 744d52c603

View File

@ -182,6 +182,15 @@ function is_valid_network() {
}
```
```
# /etc/bird/peers6/<PEER_NAME>
protocol bgp <PEER_NAME> from dnpeers {
neighbor <PEERING_IP> as <PEER_AS>;
# if you use link-local ipv6 addresses for peering using the following
# neighbor <PEERING_IP> % '<INTERFACE_NAME>' as <PEER_AS>;
};
```
### IPv4
```
@ -330,8 +339,6 @@ protocol bgp <PEER_NAME> from dnpeers {
};
```
# Bird communities
Communities can be used to prioritize traffic based on different flags, in DN42 we are using communities to prioritize based on latency, bandwidth and encryption. It is really easy to get started with communities and we encourage all of you to get the basic configuration done and to mark your peerings with the correct flags for improved routing.