ansible.fftdf.supernode/files/bird-troisdorf1.conf

95 lines
1.8 KiB
Plaintext
Raw Normal View History

2016-05-08 20:43:27 +00:00
/*
* This is an example configuration file.
*/
# Yes, even shell-like comments work...
# Configure logging
#log syslog { debug, trace, info, remote, warning, error, auth, fatal, bug };
#log stderr all;
#log "tmp" all;
#log syslog all;
#debug protocols all;
# Override router ID
router id 10.188.255.1;
protocol direct {
interface "*";
};
protocol kernel {
device routes;
import all;
export all;
kernel table 42;
};
protocol device {
scan time 8;
};
function is_default() {
return (net ~ [0.0.0.0/0]);
};
# own network
function is_self_net() {
return (net ~ [ 10.188.0.0/16+ ]);
}
# freifunk ip ranges in general
function is_freifunk() {
return net ~ [ 10.0.0.0/8+,
104.0.0.0/8+
];
}
filter hostroute {
2016-05-10 22:08:06 +00:00
if net ~ 185.66.193.104/32 then accept;
2016-05-08 20:43:27 +00:00
reject;
};
# Uplink über ff Rheinland
template bgp uplink {
local as 65066;
import where is_default();
export filter hostroute;
next hop self;
multihop 64;
default bgp_local_pref 200;
};
protocol bgp ffrl_bb_a_ak_ber from uplink {
2016-05-10 22:08:06 +00:00
source address 100.64.6.13;
neighbor 100.64.6.12 as 201701;
2016-05-08 20:43:27 +00:00
};
protocol bgp ffrl_bb_b_ak_ber from uplink {
2016-05-10 22:08:06 +00:00
source address 100.64.6.19;
neighbor 100.64.6.18 as 201701;
2016-05-08 20:43:27 +00:00
};
protocol bgp ffrl_bb_a_ix_dus from uplink {
2016-05-10 22:08:06 +00:00
source address 100.64.6.17;
neighbor 100.64.6.16 as 201701;
2016-05-08 20:43:27 +00:00
};
protocol bgp ffrl_bb_b_ix_dus from uplink {
2016-05-10 22:08:06 +00:00
source address 100.64.6.23;
neighbor 100.64.6.22 as 201701;
};
protocol bgp ffrl_bb_a_fra3_fra from uplink {
source address 100.64.6.15;
neighbor 100.64.6.14 as 201701;
};
protocol bgp ffrl_bb_b_fra3_fra from uplink {
source address 100.64.6.21;
neighbor 100.64.6.20 as 201701;
2016-05-08 20:43:27 +00:00
};