20 lines
368 B
Text
20 lines
368 B
Text
protocol bgp tb_openfactory from ebgp_peer_v6 {
|
|
description "Openfactory Freetransit";
|
|
|
|
local 2a01:20e:1000:133::2;
|
|
neighbor 2a01:20e:1000:133::1 as 41051;
|
|
|
|
ipv6 {
|
|
preference 80;
|
|
|
|
export filter {
|
|
bgp_path = prepend(bgp_path, my_ripe_asn);
|
|
bgp_path = prepend(bgp_path, my_ripe_asn);
|
|
|
|
if ebgp_export_v6() then
|
|
accept;
|
|
else
|
|
reject;
|
|
};
|
|
};
|
|
}
|