Hello, good afternoon. I would like to understand:
How to configure a Router Reflect client in Mikrotik syntax v6.
I am studying and we use this version, but I understood the basic logic. However, I didn't understand the commands to apply what I want in the official documentation, and there is a lot of content for Mikrotik v7.
#ibgp peer
/routing bgp instance
set default as=4210168000 client-to-client-reflection=no redistribute-connected=yes redistribute-static=yes
/routing bgp peer
add remote-address=172.16.0.2 remote-as=4210123123 disabled=yes #ebgp to connect to a second network if needed, just enable and set the remote address and as of the other ebgp peer 172. is just an example, you can mirror this config on a second copy of the network, just iterate the subnet from 0 to 1 and as from 4210168000 to 4210168001 and so on.
add remote-address=192.168.0.1 remote-as=4210168000
Try it out. I did not test it and redistribute-connected=yes redistribute-static=yes is optional but makes it easier to test because it will redistribute some random subnet you add to the ethernet on the peer/rr to test.