ix-bird-config/bird6.conf

40 lines
1009 B
Plaintext
Raw Normal View History

log "/var/log/bird6.log" { debug, trace, info, remote, warning, error, auth, fatal, bug };
2018-10-14 08:37:35 +00:00
2018-11-11 19:23:42 +00:00
timeformat base iso long;
timeformat log iso long;
timeformat protocol iso long;
timeformat route iso long;
table T_BGP;
table T_OSPF;
2018-10-14 08:37:35 +00:00
include "/etc/bird/local6.conf";
include "/etc/bird/filter6.conf";
2018-09-08 08:23:51 +00:00
protocol device {
2018-10-14 08:37:35 +00:00
scan time 10;
2018-09-08 08:23:51 +00:00
}
protocol static {
route fd62:77fb:94bf::/48 reject;
import all;
export none;
}
2018-09-15 19:09:28 +00:00
protocol kernel {
metric 64; # Use explicit kernel route metric to avoid collisions
# with non-BIRD routes in the kernel routing table
scan time 20;
import none;
# export all; # Actually insert routes into the kernel routing table
export filter {
2018-09-15 19:09:28 +00:00
if source = RTS_STATIC then reject;
krt_prefsrc = OWNIP;
accept;
};
2018-09-15 19:09:28 +00:00
}
2018-10-14 08:37:35 +00:00
include "/etc/bird/community_filters.conf";
2018-09-15 18:52:01 +00:00
include "/etc/bird/ospf6.conf";
2018-09-15 19:09:28 +00:00
include "/etc/bird/bgp6.conf";
2018-09-08 08:23:51 +00:00
include "/etc/bird/peers6/*";