list update

This commit is contained in:
2026-01-26 11:33:36 +08:00
parent 76bf4cf910
commit f19dc815cf
3 changed files with 16 additions and 16 deletions

View File

@@ -4,12 +4,12 @@ template bgp tpl_inet6_ixp {
ipv6 {
table inet6;
import filter {
if is_self_net_v6() then reject;
if is_self_net_inet6() then reject;
if is_bogon_prefix() || (bgp_path.len > 100) then reject;
accept;
};
export filter {
if !is_self_net_v6() then reject;
if !is_self_net_inet6() then reject;
if is_bogon_prefix() || (bgp_path.len > 100) then reject;
if bgp_large_community !~ [(LOCAL_ASN, 200,0)] then reject;
bgp_large_community.empty;