Route between two networks

Ok, I tried to configure this very simple thing and i realise that I’m stupid :open_mouth: :sunglasses:

So, situation is:

NETWORK1 (192.168.0.0/24) ----- Mikrotik1(192.168.0.1) <----------> Mikrotik2(192.168.1.27) ------ NETWORK2 (192.168.1.0/24)

I need to simple route packets between this two networks :smiley:


How to do this?

Mikrotik1:
/ip route add dst-address=192.168.1.0/24 gateway=Mikrotik2’s IP

Mikrotik2:
/ip route add dst-address=192.168.0.0/24 gateway=Mikrotik1’s IP

Your diagram is incomplete. There must be IP Addresses between MT1 and MT2 - use those for the gateway addresses.

Netw192.168.0.0/24<—>192.168.0.1/24 Mk1 192.168.1.1/24<—> Netw192.168.1.0/24<—> 192.168.1.27/24 Mk2

Mikrotik1:
/ip route add dst-address=192.168.1.0/24 gateway=192.168.1.27

Mikrotik2:
/ip route add dst-address=192.168.0.0/24 gateway=192.168.1.1