Hi, I googled a lot and couldn’t find any answer exactly to my question.
In simple queue without any parents, what queue would be likely to get to its limit first before other queues, queue with higher priority or number?
Thanks guys ![]()
I don't know about simple queues, I only work with HTB (Queue Tree), but priority does nothing on a parent, it only works on children.
Sample queue assigned to an interface
/queue tree
add name="UP" parent=WAN queue=default max-limit=128K
add name="DOWN" parent=LAN queue=default max-limit=256K
child assigned to parent. Here you can set priority and have it actually do something
add name="ALLUP" parent="UP" packet-mark="ALL" queue=default priority=1
add name="ALLDOWN" parent="DOWN" packet-mark="ALL" queue=default priority=1
Thanks for reply pcunite, but still I couldn’t find the answer yet. ![]()