Hello,
I am having two WAN and one network LAN
ether1 (WAN 1) - 10.10.1.2 (Gateway: 10.10.1.1)
ether2 (WAN 2) - 10.10.2.2 (Gateway: 10.10.1.1)
ether3 (WAN 3) - 192.168.1.1
I am trying to make port forwarding in both WAN1 and WAN2 to 192.168.1.5... and here is the rule:
/ip firewall nat
add action=dst-nat chain=dstnat disabled=no dst-address=10.10.1.2 to-addresses=192.168.1.5
add action=dst-nat chain=dstnat disabled=no dst-address=10.10.2.2 to-addresses=192.168.1.5
add action=masquerade chain=srcnat disabled=no
When the route IP for the internet is: 10.10.1.1, the port forwarding for WAN 1 will work, and the WAN 2 will not work. Once I changed the default routing WAN 2, the WAN 2 will work and the first one will not work.
How I can make both be working whatever the default routing are.
Please give me the commands that I needs to make to make this working in both WAN .
Thanks