I have two WANs each with a public address and using PCC to load balance as per the WIKI.
Am trying to port forward to a server on my LAN but fails unless I stop the load balancing.
How is is possible to achieve the two?
It sounds like you have something wrong in your mangle rules. Please post /export compact
Here are my mangle rules
/ip firewall mangle
add action=mark-connection chain=input in-interface=ether2 new-connection-mark=jtl-E
add action=mark-connection chain=input in-interface=ether3 new-connection-mark=jtl-J
add action=mark-routing chain=output connection-mark=jtl-E new-routing-mark=to_jtl-E
add action=mark-routing chain=output connection-mark=jtl-J new-routing-mark=to_jtl-J
add action=mark-connection chain=prerouting dst-address-type=!local in-interface=ether1 new-connection-mark=jtl-E per-connection-classifier=\
both-addresses:2/0
add action=mark-connection chain=prerouting dst-address-type=!local in-interface=ether new-connection-mark=jtl-J per-connection-classifier=\
both-addresses:2/1
add action=mark-routing chain=prerouting connection-mark=jtl-E in-interface=ether1 new-routing-mark=to_jtl-E
add action=mark-routing chain=prerouting connection-mark=jtl-J in-interface=ether1 new-routing-mark=to_jtl-J
My NAT rules
/ip firewall nat
add action=masquerade chain=srcnat out-interface=ether2
add action=masquerade chain=srcnat out-interface=ether3
add action=dst-nat chain=dstnat dst-port=80,443,10000,22 in-interface=ether2 protocol=tcp to-addresses=192.168.100.110
add action=dst-nat chain=dstnat dst-port=80,443,10000,22 in-interface=ether3 protocol=tcp to-addresses=192.168.100.110