Fix: Explicitly exclude chaosvpn ranges

Otherwise 10.0.0.0/8 includes some chaosvpn ranges
This commit is contained in:
Leo Krueger 2014-05-05 14:58:21 +02:00
parent a8d2acb6c0
commit d2d066a5e7

View file

@ -163,8 +163,8 @@ template bgp peers {
table ebgp;
local as ownas;
# ignore routes for our own network
import where ((is_freifunk() || is_dn42()) && !is_self_net());
export where (is_freifunk() || is_dn42());
import where ((is_freifunk() || is_dn42()) && !is_chaos() && !is_self_net());
export where ((is_freifunk() || is_dn42()) && !is_chaos());
route limit 10000;
};