bgp: avoid sending routes to clouvider over routeservers

This commit is contained in:
Luke Granger-Brown 2022-01-30 15:57:35 +00:00
parent 73a29e0b97
commit 652cb68e09

View file

@ -307,6 +307,9 @@ in {
bgp_ext_community.add((ro, 205479, 5008)); bgp_ext_community.add((ro, 205479, 5008));
bgp_ext_community.add((ro, 205479, 5009)); # fastly from blade-tuvok bgp_ext_community.add((ro, 205479, 5009)); # fastly from blade-tuvok
# do not export to clouvider; they do... strange things.
bgp_ext_community.add((rt, 0, 62240));
accept; accept;
}; };
}; };
@ -336,6 +339,9 @@ in {
bgp_ext_community.add((ro, 205479, 5008)); # cloudflare from blade-tuvok bgp_ext_community.add((ro, 205479, 5008)); # cloudflare from blade-tuvok
bgp_ext_community.add((ro, 205479, 5009)); # fastly from blade-tuvok bgp_ext_community.add((ro, 205479, 5009)); # fastly from blade-tuvok
# do not export to clouvider; they do... strange things.
bgp_ext_community.add((rt, 0, 62240));
accept; accept;
}; };
}; };