25 lines
786 B
Plaintext
25 lines
786 B
Plaintext
function is_peer_route() {
|
|
if (LOCAL_ASN, 110, 0) ~ bgp_large_community then return false;
|
|
if (LOCAL_ASN, 110, 10) ~ bgp_large_community then return false;
|
|
if bgp_path ~ [ 7018, 3320, 3257, 6830, 3356, 2914, 5511, 3491, 1239, 6453, 6762, 1299, 12956, 701, 6461, 174, 6939] then {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
function direct_peer_import_filter(int ASN) {
|
|
if !is_valid() then reject;
|
|
pub_add_communities(ASN, 0);
|
|
pub_preprocess_communities();
|
|
if !is_peer_route() then reject;
|
|
accept;
|
|
}
|
|
|
|
function direct_peer_export_filter(int ASN) {
|
|
if !is_valid() then reject;
|
|
# Delete Self eBGP Confed Path.
|
|
bgp_path.delete([4200000000..4225479999]);
|
|
pub_process_communities(ASN, 10);
|
|
if !is_peer_route() then reject;
|
|
accept;
|
|
} |