Update bird/bird.conf.tmpl

This commit is contained in:
sump pump 2020-05-21 00:55:26 +00:00
parent 470d6f2a96
commit abccbb60a7

View File

@ -74,7 +74,7 @@ protocol kernel { # Primary routing table
# the global mesh network. # the global mesh network.
function net_lixonet_global() function net_lixonet_global()
{ {
return net ~ [ ${network_address}/{${global_prefix:-16},32} ]; return net ~ [ ${network_address}/${global_prefix:-16}+ ];
} }
# Returns TRUE if the given tested network is within the router network prefix for # Returns TRUE if the given tested network is within the router network prefix for
@ -82,7 +82,7 @@ function net_lixonet_global()
# for us. Helps prevent a security vulnerability of hijacking another router. # for us. Helps prevent a security vulnerability of hijacking another router.
function net_lixonet_router() function net_lixonet_router()
{ {
return net ~ [ ${network_address}/{${router_prefix:-24},32} ]; return net ~ [ ${network_address}/${router_prefix:-24}+ ];
} }
filter lixonet_import filter lixonet_import