I am using connection marking in forward chain to prioritize the traffic in the queue tree.
add action=mark-connection chain=forward comment="new dns UDP" \
connection-mark=no-mark connection-state=new dst-port=53 \
new-connection-mark=p1 protocol=udp
...
add action=mark-packet chain=w1_d comment="pmark p1" connection-mark=p1 \
new-packet-mark=w1_d_p1 passthrough=no
I have multiple WANs which I would like to load balance (3 wans - 20mbs 20mbs 30mbs)
I have seen examples to load balance wans with connection marking but I already used up connection marks for priorities.
http://wiki.mikrotik.com/wiki/NTH_load_balancing_with_masquerade
So I have a conflict, on one side I need connection marks for queue tree on the other for wans balancing.
Is there any way out of this ?
Can I mark connections for queue tree and wan balancing at the same time ?
cheers