Fix: Explicitly exclude chaosvpn ranges
Otherwise 10.0.0.0/8 includes some chaosvpn ranges
This commit is contained in:
parent
a8d2acb6c0
commit
d2d066a5e7
1 changed files with 2 additions and 2 deletions
|
@ -163,8 +163,8 @@ template bgp peers {
|
||||||
table ebgp;
|
table ebgp;
|
||||||
local as ownas;
|
local as ownas;
|
||||||
# ignore routes for our own network
|
# ignore routes for our own network
|
||||||
import where ((is_freifunk() || is_dn42()) && !is_self_net());
|
import where ((is_freifunk() || is_dn42()) && !is_chaos() && !is_self_net());
|
||||||
export where (is_freifunk() || is_dn42());
|
export where ((is_freifunk() || is_dn42()) && !is_chaos());
|
||||||
route limit 10000;
|
route limit 10000;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue