From 370488e8729da50aee900eda6e0012159e968698 Mon Sep 17 00:00:00 2001 From: Jesper Hess Nielsen Date: Sun, 25 Oct 2020 15:21:36 +0100 Subject: [PATCH] Fix import filter on IBGP for hessnet --- roles/bird/templates/bird.conf.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/bird/templates/bird.conf.j2 b/roles/bird/templates/bird.conf.j2 index 1790218..6d6919b 100644 --- a/roles/bird/templates/bird.conf.j2 +++ b/roles/bird/templates/bird.conf.j2 @@ -186,7 +186,7 @@ protocol kernel { protocol kernel kernel6 { ipv6 { import filter myroutes_import_export; - export filter kernel_export; + export filter kernel_export; }; } @@ -244,7 +244,7 @@ template bgp ibgp_hessnet { local as my_asn; ipv6 { next hop self; - import all; + import filter { if is_default_route() then reject; accept; }; export filter { if is_own_route() then reject; accept; }; }; }