From 9aaf432ca970c9396b1667933b4459a5df28f542 Mon Sep 17 00:00:00 2001 From: Johannes Kimmel Date: Thu, 2 Jun 2022 00:22:50 +0200 Subject: [PATCH] fff-babel-bird2: fix filter for router ip imports Currently router ipv6 addresses imported via the direct protocol from the lo interface are all filtered. This should fix it. Signed-off-by: Johannes Kimmel --- src/packages/fff/fff-babel-bird2/files/etc/bird-fff.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/packages/fff/fff-babel-bird2/files/etc/bird-fff.conf b/src/packages/fff/fff-babel-bird2/files/etc/bird-fff.conf index 271dc3b..cedb974 100644 --- a/src/packages/fff/fff-babel-bird2/files/etc/bird-fff.conf +++ b/src/packages/fff/fff-babel-bird2/files/etc/bird-fff.conf @@ -45,7 +45,7 @@ protocol direct { } # only import GUA + ULA addresses - if net !~ 2000::/3 from ::/0 || net !~ fc00::/7 from ::/0 then { + if net !~ 2000::/3 from ::/0 && net !~ fc00::/7 from ::/0 then { reject; }