Hey everyone! Just using a hap lite rb941-2nd as a load balancer.
After changing to 7.1.3 version I’m having troubles marking the connection to route through one, or another ISP (eth1ð2 interfaces to this case). This would be necessary for later bandwidth management over queues tree.
Having ip/firewall/mangle rule:
chain=prerouting action=mark-routing new-routing-mark=to_wan2 passthrough=no dst-address=126.18.22.26 log=no log-prefix=""
Traffic is forwarded just great. But for what I’ve read about traffic marking and later queueing, I would have to mark the connection, and packets as well:
chain=prerouting action=mark-connection new-connection-mark=test_mark passthrough=yes dst-address=126.18.22.26 log=no log-prefix=""
chain=prerouting action=mark-routing new-routing-mark=to_wan2 passthrough=no connection-mark=test_mark log=no log-prefix="
This immediately ends up with loss of communication to 126.18.22.26 address (or whatever IP has been added to mangle).
Still can’t get what is the difference but that connection marking rule seems to be missing traffic, and then mark routing just messes things up.


