Fix: Explicitly exclude chaosvpn ranges
Otherwise 10.0.0.0/8 includes some chaosvpn ranges
This commit is contained in:
parent
a8d2acb6c0
commit
d2d066a5e7
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue