Hi, I have a simple setup,
3 Wireless each on on diffirent SSID, with all of em on a single bridge each wireless is 120deg.
Hotspot setup on the bridge, with ip range 192.168.11.1/24
Everything is working except my rules to prioritise traffic.
I have mangle rules to mark connections and packets according to ports used,
But when I add a simple queue and apply to all interfaces with packet mark = x then it does not do anything.
EG:
add action=mark-connection chain=prerouting comment="" disabled=no dst-port=\
80 new-connection-mark=HTTP-CONS passthrough=yes protocol=tcp
add action=mark-packet chain=prerouting comment="" connection-mark=HTTP-CONS \
disabled=no new-packet-mark=Priority1-Pkts passthrough=yes
Then at queues
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=0/0 name=P1 packet-marks=Priority1-Pkts parent=none \
priority=8 queue=default-small/default-small total-queue=default-small
Why would the queue not work?