Queue on a bridged interface not working?

I’ve been attempting to get a simple queue setup. I have the packet and connection marks working fine – but when I view the queue statistics, it never shows any traffic. I suspect that this is because I am using a bridged wired/wireless configuration (this is a home setup)

What I’m really trying to do is to give packets market “priority-packet” to be given a higher priority than the rest of my traffic

/interface bridge settings> print
use-ip-firewall: yes
use-ip-firewall-for-vlan: no
use-ip-firewall-for-pppoe: no
allow-fast-path: yes

/queue simple> print
Flags: X - disabled, I - invalid, D - dynamic
0 name=“main” target=“” parent=none packet-marks=“” priority=8/8
queue=default-small/default-small limit-at=0/0 max-limit=100M/100M
burst-limit=0/0 burst-threshold=0/0 burst-time=0s/0s

1 name=“priority” target=“” parent=main packet-marks=priority-packet
priority=1/1 queue=default-small/default-small limit-at=0/0
max-limit=0/0 burst-limit=0/0 burst-threshold=0/0 burst-time=0s/0s

2 name=“other” target=“” parent=main packet-marks=no-mark priority=4/4
queue=default-small/default-small limit-at=0/0 max-limit=0/0
burst-limit=0/0 burst-threshold=0/0 burst-time=0s/0s


I tried this first with a simpler config (i.e. no parent queues) and had the same problem

Thx – I hope/assume I’m missing something really simple.

Use queue tree instead

Skickat från min unknown via Tapatalk

simple queues have few simple rules:

  1. you must have some kind of target in simple queues to get them working properly, (0.0.0.0/0 = not set)

  2. parent queue must capture all the traffic that is necessary for child queues

  3. there must be some limits or change in queue-type to queue to work.

Thx. I did have a target set (0.0.0.0/0) but I changed it to 10.0.0.0/24 to be safe and I applied an upload max limit to the two sub queues.

Working now :slight_smile: