How to configure a Router Reflect client in Mikrotik syntax v6.

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.

Ye, there was an old wiki and then the ye old old old wiki where you had examples written by other forum users. That is gone now, sad.

Simple example for RR if you have 1 RR and multiple other peers that might peer with some other BGP network via eBGP

/routing bgp instance
set default as=4210168000 client-to-client-reflection=yes redistribute-connected=yes redistribute-static=yes

/routing bgp peer
add route-reflect=yes remote-address=192.168.0.2 remote-as=4210168000
add route-reflect=yes remote-address=192.168.0.3 remote-as=4210168000
#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.

1 Like

That's right, thank you very much, I managed to create a laboratory.