20 lines
369 B
Text
20 lines
369 B
Text
protocol bgp tb_he1 from ebgp_peer_v6 {
|
|
description "tunnelserver.net (Hurricane Electric)";
|
|
|
|
local 2001:470:12:1ab::2;
|
|
neighbor 2001:470:12:1ab::1 as 6939;
|
|
|
|
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;
|
|
};
|
|
};
|
|
}
|