I have a network with private IP address 10.10.1.0/24. So I use masquerade. I want to share the bandwith equally beetwen the user.
I make a queue tree for the Bandwith controll.
The control of the UPLOAD is working correctly.
But the DOWNLOAD doesn't work.
How to mark the packets for the download if I use NAT ?
I've seen a p2p example on mikrotik web. So I try this:
/ip firewall mangle add src-address=10.10.0.1/32 mark-connection=client1 action=passthrough
/ip firewall mangle add connection=client1 dst-address=10.10.1.1/32 mark-flow= client1_down action=passthrough.
But it doesn't work correctly.
Please help me