12345678910111213141516171819202122232425262728293031 |
- #
- # This file is managed by ansible. Do not edit by hand!
- #
- log syslog all;
- router id {{routerid}};
- include "/etc/bird.d/*.cfg"
- protocol direct {
- interface "*";
- };
- protocol kernel {
- device routes;
- import all;
- export all;
- kernel table 42;
- };
- protocol device {
- scan time 8;
- };
- template bgp ibgp {
- local as {{as}};
- import all;
- export all;
- next hop self;
- multihop 64;
- };
|