Bridging two different subnets

Hi!

I need to know how can i bridge two different subnets:

Example:

192,168.0.100/24 MT1
192.168.10.50/24 MT2

when i try to ping mikrotik1 from mt2 it’s say destination host unreachable, or something like that, they are conected through lan cables.

I know that something need to be done with routing, gateways, or whatever.
I don’t know very good how routing works, so please help, or point me to some link, but no to the wiki mikrotik i don’t found there what i need.

Thanks!

Do you want to bridge or want to route ?

To bridge, you may use EoIP,
http://www.mikrotik.com/testdocs/ros/3.0/vpn/eoip_content.php#.3

For the routing, make sure you can ping between MT1 and MT2, add route rules,
for MT1,
ip route add dst-address=192.168.10.0/24 gateway=MT2_address_reachable_from_MT1

for MT2,
ip route add dst-address=192.168.0.0/24 gateway=MT1_address_reachable_from_MT2