27 lines
407 B
Text
27 lines
407 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;
|
|
|
|
direct;
|
|
|
|
ipv4 {
|
|
import keep filtered;
|
|
import where ibgp_import_v4();
|
|
export where ibgp_export_v4();
|
|
|
|
next hop self;
|
|
aigp originate;
|
|
};
|
|
|
|
ipv6 {
|
|
import keep filtered;
|
|
import where ibgp_import_v6();
|
|
export where ibgp_export_v6();
|
|
|
|
next hop self;
|
|
aigp originate;
|
|
};
|
|
}
|