Hey guys,
I have an 11Mbit/1MBit connection that I want to do some traffic shaping on.
I want to shape the server to 2m/100k, the manager PC to 4m/200k and the rest of the LAN to 4m/200k. However, when the bandwidth is not used, to let any of them take advantage of the full internet speed, however, with some prioritazing.
I have read up on the wiki on queues and QoS and set-up some Simple Queues:
/queue simple> print
Flags: X - disabled, I - invalid, D - dynamic
0 name="server" target-addresses=192.168.2.2/32 interface=all parent=none
packet-marks="" direction=both priority=3 queue=default/default
limit-at=100k/2M max-limit=1M/11M burst-limit=0/0 burst-threshold=0/0
burst-time=0s/0s total-queue=default
1 name="manager" target-addresses=192.168.2.99/32 interface=all parent=none
packet-marks="" direction=both priority=1 queue=default/default
limit-at=200k/4M max-limit=1M/11M burst-limit=0/0 burst-threshold=0/0
burst-time=0s/0s total-queue=default
2 name="LAN" target-addresses=192.168.2.0/24 interface=all parent=none
packet-marks="" direction=both priority=2 queue=default/default
limit-at=200k/4M max-limit=1M/11M burst-limit=0/0 burst-threshold=0/0
burst-time=0s/0s total-queue=default
This however, doesnt really work.
Any pointers would be appreciated!
tom
hi
for this request you must use from queue group.
from this link you can learn much more about this.
http://wiki.mikrotik.com/wiki/Manual:HTB
you can use this:
/queue simple
add burst-limit=0/0 burst-threshold=0/0 burst-time=0s/0s comment=“”
direction=both disabled=no dst-address=0.0.0.0/0 interface=all limit-at=
0/0 max-limit=11M/1M name=Total parent=none priority=8 queue=
default-small/default-small target-addresses=192.168.2.0/24 total-queue=
default-small
add burst-limit=0/0 burst-threshold=0/0 burst-time=0s/0s comment=“”
direction=both disabled=no dst-address=0.0.0.0/0 interface=all limit-at=
200k/4M max-limit=1M/11M name=Manager parent=Total priority=1 queue=
default-small/default-small target-addresses=192.168.2.99/32 total-queue=
default-small
add burst-limit=0/0 burst-threshold=0/0 burst-time=0s/0s comment=“”
direction=both disabled=no dst-address=0.0.0.0/0 interface=all limit-at=
100k/2M max-limit=1M/11M name=Server parent=Total priority=3 queue=
default-small/default-small target-addresses=192.168.2.2/32 total-queue=
default-small
add burst-limit=0/0 burst-threshold=0/0 burst-time=0s/0s comment=“”
direction=both disabled=no dst-address=0.0.0.0/0 interface=all limit-at=
200k/4M max-limit=1M/11M name=LAN parent=Total priority=2 queue=
default-small/default-small target-addresses=192.168.2.0/24 total-queue=
default-small
I tested your configuration and its the same as mine, just with a parent queue.
Also, in the “Total” queue you have max-limit=11M/1M, but when watching traffic passing on the “Statistics” page, it should be max-limit=1M/11M
It still doesnt work when the Total queue has the max-limit either way.
Thanks,
tom
Still looking for some input on this.
Thanks guys.