I want to share internet to one of mikrotik from the one that has internet service.
What I want to do is to assign local IP to other mikrotik and share internet between these two.
My current setup is
Mikrotik A: (The one with internet)
ip address : 10.10.1.13/29 bound to bridge_X
I have src-natted this block to access internet and I can access to internet with this ip Mikrotik A without any problem
Mikrotik B:
ip address: 10.10.1.15/30 bound to WAN etherhet (which is connected to bridge_X)
route: 10.10.1.14
Shouldn’t I be getting internet with this configuration? or do I have to specify exact ip address as stated on Mikrotik A?
Default route on Mikrotik B should be via IP address of Mikrotik A - in this case 10.10.1.13.
In addition to that: I don’t think things will work at all. Mikrotik A has IP address 10.10.1.13/29, which means valid addresses are between 10.10.1.9 and 10.10.1.14 (and 10.10.1.15 is broadcast address for Mikrotik A). Mikrotik B has subnet mask /30, so valid addresses would be 10.10.1.13-10.10.1.14. Address 10.10.1.15 is again broadcast address.
# on MT A
/ip address add address=10.10.1.29/30 interface=X_BRIDGE
#
# on MT B
/ip address add address=10.10.1.30/30 interface=WAN_CONNECTED_TO_X_BRIDGE
/ip route add gateway=10.10.1.29 # dst-address=0.0.0.0/0 can be omitted, that's default
But it would only work if those were the only addresses bound to both interfaces … if they are really bridges with many client devices connected, then things will break. If you wan’t to get some better insight, then describe your use case in greater detail … and post config so we can compare it to your intended set-up.