NAT problem with 2 WANs

Hi!
I have two WANs PPPOE working with recursive failover in my Mikrotik RB750. I have Windows Remore Desktop and other stuffs behind the Mikrotik in LAN netowork. Harpin nat working for all ports…
When the WAN1(pppoe-out1) its active and WAN2 active, i can access the Mikrotik with winbox and LAN services remotely from the internet through the WAN1 but i can’t access through the WAN2.
When the WAN2(pppoe-out2) its active and WAN1 is down i can access the Mikrotik and LAN remotely from internet through the WAN2.
I want to access my mikrotik via winbox and my LAN Services (Windows Remore Desktop and other stuffs) through the two WANs from Internet at the same time.

I create some mangles..
/ip firewall mangle
add action=mark-connection chain=input in-interface=pppoe-out2 new-connection-mark=con-snell passthrough=no
add action=mark-routing chain=output connection-mark=con-snell new-routing-mark=route_snell passthrough=no

and
/ip route
add distance=1 gateway=x.x.x.x routing-mark=route_snell

x.x.x.x = WAN2 Gateway

With this lines i can access my mikotik with winbox through the two WANs but i can’t access my LAN services through the WAN2, i can access only for active WAN1, i want to access through the two WANs at the same time when all WANs active.

Someone can help me?

Thx!!

Give this a try!
http://forum.mikrotik.com/t/dual-wan-mangle-rules/120707/1

Hi! Thx but only this don’t works :frowning:

/ip route rule
add action=lookup-only-in-table dst-address=192.168.1.0/24 table=main

I tried this too…
/ip firewall mangle
add action=mark-connection chain=prerouting connection-mark=no-mark in-interface=pppoe-out2 new-connection-mark=WAN2conn passthrough=yes
add action=mark-routing chain=prerouting connection-mark=WAN2conn new-routing-mark=WAN2route passthrough=no

/ip route rule
add action=lookup-only-in-table dst-address=192.168.1.0/24 table=main

Not works :frowning:

Hi! This works!

/ip firewall mangle
add action=mark-connection chain=input in-interface=pppoe-out2 new-connection-mark=Con-Snell passthrough=no <---- Access to Mikrotik
add action=mark-routing chain=output connection-mark=Con-Snell new-routing-mark=route_snell passthrough=no <---- Access to Mikrotik
add chain=prerouting in-interface=pppoe-out2 action=mark-connection new-connection-mark=WAN2_connection <---- Access to LAN
add chain=prerouting in-interface=LOCAL connection-mark=WAN2_connection action=mark-routing new-routing-mark=to_WAN2 <---- Access to LAN

/ip route
add distance=1 dst-address=0.0.0.0/0 gateway=x.x.x.x routing-mark=route_snell <---- Access to Mikrotik
add distance=1 dst-address=0.0.0.0/0 gateway=x.x.x.x routing-mark=to_WAN2 <---- Access to LAN

x.x.x.x = Gateway WAN2 (pppoe-out2)
LOCAL = My Bridge

Thx!!