Files
bird_config/bird/net/unet.conf
2025-11-13 14:41:55 +08:00

19 lines
362 B
Plaintext

ipv4 table unet4;
ipv6 table unet6;
protocol pipe unet4_sync {
table unet4;
peer table master4;
export filter {
if bgp_large_community ~ [(UNET_ASN, 3,*)] then reject;
accept;
};
}
protocol pipe unet6_sync {
table unet6;
peer table master6;
export filter {
if bgp_large_community ~ [(UNET_ASN, 3,*)] then reject;
accept;
};
}