Skip to content
Snippets Groups Projects
Commit 85bd3e98 authored by skorpy's avatar skorpy :construction_worker:
Browse files

DE-CIX: fixup

parent f0feb0cf
No related branches found
No related tags found
No related merge requests found
Pipeline #45674 failed
......@@ -5,25 +5,25 @@ define NO_REDIST_HAM = (65222,4000);
define NO_REDIST_DUS = (65222,9000);
function de_cix_fra_metro(int rs_asn) {
if ((*, 1912,0) ~ bgp_large_community) then {
if ((rs_asn, 1912,0) ~ bgp_large_community) then {
return 1;
}
return 0;
}
function de_cix_muc_metro(int rs_asn) {
if ((*, 1912,1) ~ bgp_large_community) then {
if ((rs_asn, 1912,1) ~ bgp_large_community) then {
return 1;
}
return 0;
}
function de_cix_ham_metro(int rs_asn) {
if ((*, 1912,2) ~ bgp_large_community) then {
if ((rs_asn, 1912,2) ~ bgp_large_community) then {
return 1;
}
return 0;
}
function de_cix_dus_metro(int rs_asn) {
if ((*, 1912,9) ~ bgp_large_community) then {
if ((rs_asn, 1912,9) ~ bgp_large_community) then {
return 1;
}
return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment