From 08a6cd50e5360acedc33515fa294b3a12ec240d1 Mon Sep 17 00:00:00 2001 From: uvok cheetah Date: Sun, 28 Apr 2024 20:08:20 +0200 Subject: bird: Limit path len to 15 lot of weird path prepending going on... --- roles/uvok_bird/templates/clearnet.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'roles') diff --git a/roles/uvok_bird/templates/clearnet.conf.j2 b/roles/uvok_bird/templates/clearnet.conf.j2 index c3a6f7f..2c99411 100644 --- a/roles/uvok_bird/templates/clearnet.conf.j2 +++ b/roles/uvok_bird/templates/clearnet.conf.j2 @@ -91,7 +91,7 @@ prefix set problem_prefixes; function reject_long_aspaths() { - if ( bgp_path.len > 30 ) then { + if ( bgp_path.len > 15 ) then { clearnet_add_filter(FILTER_LONG_ASPATH); } } -- cgit v1.2.3