dpenava
1
Ok, I tried to configure this very simple thing and i realise that Iām stupid

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 
How to do this?
savage
2
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