diff options
author | uvok cheetah | 2024-04-28 19:10:03 +0200 |
---|---|---|
committer | uvok cheetah | 2024-04-28 19:10:03 +0200 |
commit | f1ef249c660ccb6a9208deac8b1e07f31d57bf4a (patch) | |
tree | 219891eac9c1132772a874d5c6a32e21a08ef756 | |
parent | c085c5bda9ff5ab64aa721da5e69272d9df47440 (diff) |
Reduce path len to 30
-rw-r--r-- | roles/uvok_bird/templates/clearnet.conf.j2 | 2 |
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 3cd2c78..c3a6f7f 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 > 50 ) then { + if ( bgp_path.len > 30 ) then { clearnet_add_filter(FILTER_LONG_ASPATH); } } |