You can connect to the route collector by using the following configuration:
protocol bgp nedifinita_collector {
local as OWNAS;
neighbor 10.127.42.179 as 4204549998 port 1179;
# Or use IPv6: neighbor fd10:127:42::179 as 4204549998 port 1179;
source address <your_source_address>;
advertise hostname on;
multihop;
ipv4 {
add paths on;
import none;
export filter {
if <your_filter> then accept;
reject;
};
};
ipv6 {
add paths on;
import none;
extended next hop on;
export filter {
if <your_filter_v6> then accept;
reject;
};
};
}