nixos-module/container/bird: fix import filter

This commit is contained in:
Astro 2022-11-01 01:40:22 +01:00
parent 172706399e
commit 32f422058e
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ in
${if isUpstream
then ''
# No RFC1918, RFC6598
import where net !~ [ 100.64.0.0/10 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 ];
import where net !~ [ 100.64.0.0/10 ] && net !~ [ 10.0.0.0/8 ] && net !~ [ 172.16.0.0/12 ] && net !~ [ 192.168.0.0/16 ];
''
else ""}
};