Hi,
I was trying to implement bandwidth restriction in such way that all cache contents will not be restricted at all. I was following http://wiki.mikrotik.com/wiki/Queue_with_Masquerading_and_Internal_Web-Proxy
But this is not working for me. When i Create QUEUE TREE all contents are being included in that tree, means bandwidth restriction for normal contents also stops working, and i am able to download at full speed on all contents.
Please help me out in implementing Special Bandwidth restriction for CACHE contents…
Hi,
My Firewall and Queue rules are as follows
/ip firewall mangle
add action=mark-packet chain=output comment="" disabled=no dscp=4 dst-port=80 new-packet-mark=cache-out out-interface=ether1 passthrough=no protocol=tcp
add action=mark-packet chain=prerouting comment="" disabled=no in-interface=ether1 new-packet-mark=cache-up passthrough=no
add action=mark-connection chain=forward comment="" disabled=no new-connection-mark=cache-conn passthrough=yes
add action=mark-packet chain=forward comment="" connection-mark=cache-conn disabled=no in-interface=ether2 new-packet-mark=cache-down passthrough=no
add action=mark-packet chain=output comment="" disabled=no new-packet-mark=cache-down out-interface=ether1 passthrough=n
/queue tree
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=yes limit-at=5000000 max-limit=5000000 name=Cache-Down packet-mark=cache-down parent=ether1 priority=8 queue=default
add burst-limit=0 burst-threshold=0 burst-time=0s disabled=yes limit-at=320000 max-limit=320000 name="Up Stream" packet-mark=cache-up parent=global-in priority=8 queue=default