From 9bc3690cbd32d7428351efab92a3eebd5ea42b8f 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-by: Fabian Bläse --- 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 271dc3b2..cedb9748 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; }