34 lines
616 B
Text
34 lines
616 B
Text
template bgp rr_clients {
|
|
local as my_ripe_asn;
|
|
neighbor as my_ripe_asn;
|
|
rr client;
|
|
rr cluster id 172.23.156.3;
|
|
|
|
ipv4 {
|
|
import keep filtered;
|
|
import where ibgp_import_v4();
|
|
export where ibgp_export_v4();
|
|
next hop self;
|
|
};
|
|
|
|
ipv6 {
|
|
import keep filtered;
|
|
import where ibgp_import_v6();
|
|
export where ibgp_export_v6();
|
|
next hop self;
|
|
};
|
|
}
|
|
|
|
protocol bgp lian from rr_clients {
|
|
description "iBGP: lian.0l.de";
|
|
|
|
local 2a09:11c0:200::14;
|
|
neighbor 2a09:11c0:200::2;
|
|
}
|
|
|
|
protocol bgp acs from rr_clients {
|
|
description "iBGP: acs.0l.de";
|
|
|
|
local 2a09:11c0:200::7;
|
|
neighbor 2a09:11c0:200::6;
|
|
}
|