2 wan setup, traceroute from wan1 to wan2

Hi

I have a 2 wan setup

wan1, dynamic IP from ISP provider xx.xx.xx.xx
wan2, static IP from ISP provider yy.yy.yy.yy

load balancing is implemented
ip firewall mangle> print

95 ;;; toLAN0
chain=prerouting action=mark-routing new-routing-mark=toLAN0
passthrough=no dst-address=192.168.0.0/24

96 ;;; toLAN1
chain=prerouting action=mark-routing new-routing-mark=toLAN1
passthrough=no dst-address=192.168.1.0/24

97 ;;; toDSL0
chain=prerouting action=mark-routing new-routing-mark=toDSL0
passthrough=no src-address=192.168.0.0/24

98 ;;; toDSL1
chain=prerouting action=mark-routing new-routing-mark=toDSL1
passthrough=no src-address=192.168.1.0/24



[admin@MikroTik] /ip route> export
add disabled=no distance=1 dst-address=0.0.0.0/0 gateway=bridge0 routing-mark=toLAN0 scope=30 target-scope=10
add disabled=no distance=1 dst-address=0.0.0.0/0 gateway=bridge1 routing-mark=toLAN1 scope=30 target-scope=10
add disabled=no distance=1 dst-address=0.0.0.0/0 gateway=DSL0 routing-mark=toDSL0 scope=30 target-scope=10
add disabled=no distance=1 dst-address=0.0.0.0/0 gateway=DSL1 routing-mark=toDSL1 scope=30 target-scope=10
add comment=“default route for router” disabled=no distance=1 dst-address=0.0.0.0/0 gateway=DSL0 scope=30 target-scope=10


ip firewall nat> print
Flags: X - disabled, I - invalid, D - dynamic
0 chain=srcnat action=masquerade src-address=192.168.0.0/24 out-interface=DSL0
1 chain=srcnat action=masquerade src-address=192.168.1.0/24 out-interface=DSL1
2 chain=dstnat action=dst-nat to-addresses=192.168.0.4 to-ports=9000-9999 protocol=tcp in-interface=DSL0
3 chain=dstnat action=dst-nat to-addresses=192.168.0.4 to-ports=9000-9999 protocol=udp in-interface=DSL0
4 chain=dstnat action=dst-nat to-addresses=192.168.1.123 to-ports=80 protocol=tcp in-interface=DSL1 dst-port=80
5 chain=dstnat action=dst-nat to-addresses=192.168.1.123 to-ports=80 protocol=udp in-interface=DSL1 dst-port=80


I can’t seem to see a traceroute from xx.xx.xx.xx to yy.yy.yy.yy.
It always returns one hop

traceroute yy.yy.yy.yy

ADDRESS RT1 RT2 RT3 STATUS

1 yy.yy.yy.yy 1ms 1ms 1ms


I expect to it leave my network on wan1 xx.xx.xx.xx and return in a couple of hops to yy.yy.yy.yy

I can confirm that external computer can route properly to yy.yy.yy.yy

I can also confirm that tracerouting anywhere else is working properly

I need this setup so that I can use wan1 to see if wan2 website is up.

Thanks in advance

TONY