2018-10-13 07:34:02 +00:00
|
|
|
log "/var/log/bird6.log" { debug, trace, info, remote, warning, error, auth, fatal, bug };
|
2018-10-10 16:14:36 +00:00
|
|
|
table T_BGP;
|
|
|
|
table T_OSPF;
|
2018-09-12 06:41:25 +00:00
|
|
|
|
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-12 06:41:25 +00:00
|
|
|
|
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
|
2018-09-12 06:41:25 +00:00
|
|
|
export filter {
|
2018-09-15 19:09:28 +00:00
|
|
|
if source = RTS_STATIC then reject;
|
|
|
|
krt_prefsrc = OWNIP;
|
|
|
|
accept;
|
2018-09-12 06:41:25 +00:00
|
|
|
};
|
2018-09-15 19:09:28 +00:00
|
|
|
}
|
2018-09-12 06:41:25 +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/*";
|