ix-bird-config/bird6.conf

35 lines
872 B
Plaintext
Raw Normal View History

2018-09-15 19:09:28 +00:00
log syslog { debug, trace, info, remote, warning, error, auth, fatal, bug };
table T_BGP6;
2018-09-15 18:52:01 +00:00
table T_OSPF6;
2018-09-08 08:23:51 +00:00
protocol device {
2018-09-15 19:09:28 +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
include "/etc/bird/local6.conf";
2018-09-22 10:51:14 +00:00
include "/etc/bird/filter6.conf";
2018-09-15 19:09:28 +00:00
include "/etc/bird/community_filters.conf";
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-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/*";