My Mikrotik version is 3.13 and I want to configure PPPoE to have 512/256 traffic. Client IP are 10.0.0.10-10.0.0.100. I want my users to download with LAN speed for web pages and other things that are in cache. I need help to configure that, I tried by simple queue but it is the same I can not download faster than from internet.
What kind of queue do I need to configure? Any example?
Set the tx/rx limit in the ppp profile.
r u using mikrotik proxy or external proxy???
i think below link will help u to solve the problem
http://forum.mikrotik.com/t/cached-files-without-queue-lmit-v3-11/22653/1
I am using Mikrotik Web-Proxy. Can you help me what rules to create?
I just checked proxy> chache-contents
And saw that there is the file I donloaded before but when I download the same file again it does not download fastere but with the same speed like from the internet.
if you have ‘default-small’ queues type, change it to ‘default’ and test again
I have same problem,do you find soultion ?
Thanks
Yes I found the solution, and it is working. First make mangle:
chain=output action=mark-packet new-packet-mark=proxy-hit passthrough=no out-interface=!WAN dscp=4
Second make simple queue:
name=“Hit Traffic From Proxy” target-addresses=10.0.0.0/24
dst-address=0.0.0.0/0 interface=all parent=none packet-marks=proxy-hit
direction=both priority=2 queue=default/default limit-at=0/0
max-limit=512000/512000 burst-limit=0/0 burst-threshold=0/0
burst-time=0s/0s total-queue=defaul
You can put other limit e.g. 2M/2M
and move these rules up to be first rule.