blade-router: add google session, which will hopefully turn up eventually
This commit is contained in:
parent
b4c80a07fa
commit
3abe727604
2 changed files with 15 additions and 0 deletions
|
@ -291,6 +291,7 @@ in {
|
||||||
bgp_ext_community.add((ro, 205479, 5004));
|
bgp_ext_community.add((ro, 205479, 5004));
|
||||||
bgp_ext_community.add((ro, 205479, 5005));
|
bgp_ext_community.add((ro, 205479, 5005));
|
||||||
bgp_ext_community.add((ro, 205479, 5006));
|
bgp_ext_community.add((ro, 205479, 5006));
|
||||||
|
bgp_ext_community.add((ro, 205479, 5007));
|
||||||
|
|
||||||
# do not export to facebook
|
# do not export to facebook
|
||||||
bgp_ext_community.add((rt, 0, 32934));
|
bgp_ext_community.add((rt, 0, 32934));
|
||||||
|
@ -320,6 +321,7 @@ in {
|
||||||
bgp_ext_community.add((ro, 205479, 5004)); # freetransitnet from blade-tuvok
|
bgp_ext_community.add((ro, 205479, 5004)); # freetransitnet from blade-tuvok
|
||||||
bgp_ext_community.add((ro, 205479, 5005)); # he from blade-tuvok
|
bgp_ext_community.add((ro, 205479, 5005)); # he from blade-tuvok
|
||||||
bgp_ext_community.add((ro, 205479, 5006)); # clouvider from blade-tuvok
|
bgp_ext_community.add((ro, 205479, 5006)); # clouvider from blade-tuvok
|
||||||
|
bgp_ext_community.add((ro, 205479, 5007)); # google from blade-tuvok
|
||||||
|
|
||||||
# do not export to facebook
|
# do not export to facebook
|
||||||
bgp_ext_community.add((rt, 0, 32934));
|
bgp_ext_community.add((rt, 0, 32934));
|
||||||
|
|
|
@ -254,6 +254,19 @@ in
|
||||||
prefix_limit.v6 = 1000;
|
prefix_limit.v6 = 1000;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
peering.google = linx // {
|
||||||
|
remote = {
|
||||||
|
asn = 15169;
|
||||||
|
export_community = 5007;
|
||||||
|
routers = [{
|
||||||
|
enabled = cfg.linx.enable;
|
||||||
|
v4 = "195.66.224.125";
|
||||||
|
v6 = "2001:7f8:4::3b41:1";
|
||||||
|
}];
|
||||||
|
prefix_limit.v4 = 15000;
|
||||||
|
prefix_limit.v6 = 10000;
|
||||||
|
};
|
||||||
|
};
|
||||||
export.v4 = [ "92.118.28.0/24" ];
|
export.v4 = [ "92.118.28.0/24" ];
|
||||||
export.v6 = [ "2a09:a441::/32" ];
|
export.v6 = [ "2a09:a441::/32" ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue