Compare commits

...

4 commits

4 changed files with 134 additions and 4 deletions

View file

@ -6,8 +6,6 @@ template bgp decix {
}
template bgp decix_v6 from decix {
local 2001:7f8::3:2afd:0:1;
ipv6 {
table ebgp_v6;
@ -20,8 +18,6 @@ template bgp decix_v6 from decix {
}
template bgp decix_v4 from decix {
local 80.81.196.155;
ipv4 {
table ebgp_v4;
@ -37,22 +33,31 @@ template bgp decix_v4 from decix {
### IPv4
template bgp decix_fra_v4 from decix_v4 {
neighbor as 6695;
local 80.81.196.155;
}
template bgp decix_dus_v4 from decix_v4 {
neighbor as 56890;
local 185.1.58.221;
}
template bgp decix_ham_v4 from decix_v4 {
neighbor as 43252;
local 80.81.203.195;
}
template bgp decix_muc_v4 from decix_v4 {
neighbor as 47228;
local 80.81.202.202;
}
### IPv6
template bgp decix_fra_v6 from decix_v6 {
local 2001:7f8::3:2afd:0:1;
neighbor as 6695;
}
@ -96,3 +101,79 @@ protocol bgp decix_fra_bh_v6 from decix_fra_v6 {
table ebgp_v6_bh;
};
}
# Hamburg
protocol bgp decix_ham_rs1_v4 from decix_ham_v4 {
description "DE-CIX Hamburg RS1 (v4)";
neighbor 80.81.203.252;
}
protocol bgp decix_ham_rs2_v4 from decix_ham_v4 {
description "DE-CIX Hamburg RS2 (v4)";
neighbor 80.81.203.253;
}
protocol bgp decix_ham_rs1_v6 from decix_ham_v6 {
description "DE-CIX Hamburg RS1 (v6)";
neighbor 2001:7f8:3d::a8f4:0:1;
}
protocol bgp decix_ham_rs2_v6 from decix_ham_v6 {
description "DE-CIX Hamburg RS2 (v6)";
neighbor 2001:7f8:3d::a8f4:0:2;
}
# Düsseldorf
protocol bgp decix_dus_rs1_v4 from decix_dus_v4 {
description "DE-CIX Düsseldorf RS1 (v4)";
neighbor 185.1.58.252;
}
protocol bgp decix_dus_rs2_v4 from decix_dus_v4 {
description "DE-CIX Düsseldorf RS2 (v4)";
neighbor 185.1.58.252;
}
protocol bgp decix_dus_rs1_v6 from decix_dus_v6 {
description "DE-CIX Düsseldorf RS1 (v6)";
neighbor 2001:7f8:9e::de3a:fc:1;
}
protocol bgp decix_dus_rs2_v6 from decix_dus_v6 {
description "DE-CIX Düsseldorf RS2 (v6)";
neighbor 2001:7f8:9e::de3a:fc:1;
}
# München
protocol bgp decix_muc_rs1_v4 from decix_muc_v4 {
description "DE-CIX München RS1 (v4)";
neighbor 80.81.202.252;
}
protocol bgp decix_muc_rs2_v4 from decix_muc_v4 {
description "DE-CIX München RS2 (v4)";
neighbor 80.81.202.253;
}
protocol bgp decix_muc_rs1_v6 from decix_muc_v6 {
description "DE-CIX München RS1 (v6)";
neighbor 2001:7f8:44::b87c:0:1;
}
protocol bgp decix_muc_rs2_v6 from decix_muc_v6 {
description "DE-CIX München RS2 (v6)";
neighbor 2001:7f8:44::b87c:0:2;
}

View file

@ -22,6 +22,24 @@ template bgp dn42_peer {
graceful restart on;
}
template bgp dn42_peer_v46 from dn42_peer {
ipv4 {
table dn42_v4;
import keep filtered;
import filter dn42_import_v4;
export filter dn42_export_v4;
};
ipv6 {
table dn42_v6;
import keep filtered;
import filter dn42_import_v6;
export filter dn42_export_v6;
};
}
template bgp dn42_peer_v4 from dn42_peer {
ipv4 {
table dn42_v4;

View file

@ -0,0 +1,6 @@
protocol bgp dn42_tchekda from dn42_peer_v46 {
description "dn42: tchekda";
local fd42:4dd0:ff00::2;
neighbor fd54:fe4b:9ed1:4::1 as 4242421722;
}

25
protocols/evix.conf Normal file
View file

@ -0,0 +1,25 @@
template bgp evix {
local 2602:fed2:fff:ffff::233 as my_ripe_asn;
ipv6 {
table ebgp_v6;
import keep filtered;
import all;
export filter ebgp_export_v6;
};
graceful restart on;
}
protocol bgp evix_rs1 from evix {
description "EVIX RS1";
neighbor 2602:fed2:fff:ffff::1 as 137933;
}
protocol bgp evix_rs2 from evix {
description "EVIX RS2";
neighbor 2602:fed2:fff:ffff::253 as 209762;
}