I’ve configure 3 wan pcc load balancing according the tutorial I saw online. My config can be seen here: http://forum.mikrotik.com/t/port-forward-not-working-with-pcc-load-balancing/66054/1
I was just wondering about distance in routing and was hoping that someone could explain it to me. In the config I have:
/ip route
add dst-address=0.0.0.0/0 gateway=10.1.1.1 routing-mark=to_WAN1 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=10.2.2.1 routing-mark=to_WAN2 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=10.3.3.1 routing-mark=to_WAN3 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=10.1.1.1 distance=1 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=10.2.2.1 distance=2 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=10.3.3.1 distance=3 check-gateway=ping
I was wondering why the distance increments with each wan gateway. Shouldn’t they all be set to 1?