summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruvok cheetah2024-04-28 20:08:20 +0200
committeruvok cheetah2024-04-28 20:08:20 +0200
commit08a6cd50e5360acedc33515fa294b3a12ec240d1 (patch)
tree756a0126bb246cefddbb720f7c382cdf4e4614e8
parentf1ef249c660ccb6a9208deac8b1e07f31d57bf4a (diff)
bird: Limit path len to 15
lot of weird path prepending going on...
-rw-r--r--roles/uvok_bird/templates/clearnet.conf.j22
1 files changed, 1 insertions, 1 deletions
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);
}
}