63 lines
993 B
Text
63 lines
993 B
Text
template bgp rr_clients {
|
|
local as my_ripe_asn;
|
|
neighbor as my_ripe_asn;
|
|
|
|
rr client;
|
|
rr cluster id 172.23.156.2;
|
|
|
|
direct;
|
|
|
|
ipv4 {
|
|
import keep filtered;
|
|
import filter ibgp_import_v4;
|
|
export filter ibgp_export_v4;
|
|
next hop self;
|
|
};
|
|
|
|
ipv6 {
|
|
import keep filtered;
|
|
import filter ibgp_import_v6;
|
|
export filter ibgp_export_v6;
|
|
next hop self;
|
|
};
|
|
}
|
|
|
|
protocol bgp k8s_1_v4 from rr_clients {
|
|
description "iBGP: k8s-1.lian.vms.0l.de";
|
|
|
|
local 172.23.156.2;
|
|
neighbor 172.23.156.120;
|
|
|
|
ipv4 {
|
|
export none;
|
|
};
|
|
}
|
|
|
|
protocol bgp k8s_1_v6 from rr_clients {
|
|
description "iBGP: k8s-1.lian.vms.0l.de";
|
|
|
|
local 2a09:11c0:200::2;
|
|
neighbor 2a09:11c0:200:100:4cd2:28f8:e1b:9b22;
|
|
|
|
ipv6 {
|
|
export none;
|
|
};
|
|
}
|
|
|
|
protocol bgp rpi from rr_clients {
|
|
description "iBGP: rpi.home.0l.de";
|
|
|
|
local 2a09:11c0:200::2;
|
|
neighbor 2a09:11c0:200::3;
|
|
|
|
bfd yes;
|
|
}
|
|
|
|
protocol bgp edgy from rr_clients {
|
|
description "iBGP: edgy.0l.de";
|
|
|
|
local 2a09:11c0:200::2;
|
|
neighbor 2a09:11c0:200::14;
|
|
|
|
bfd yes;
|
|
}
|