I would like to use both PCQ and queue tree if possible. I am not certain it is. Basically, I want to prioritize VOIP and work traffic over other things going on at the house. In the past, I have used the mangle like this:
add action=mark-connection chain=prerouting comment=DNS connection-state=new
new-connection-mark=DNS passthrough=yes port=53 protocol=udp
add action=mark-packet chain=prerouting connection-mark=DNS new-packet-mark=
DNS passthrough=no
add action=mark-connection chain=postrouting connection-state=new
new-connection-mark=DNS passthrough=yes port=53 protocol=udp
add action=mark-packet chain=postrouting connection-mark=DNS new-packet-mark=
DNS passthrough=noI understand PCQ is similar like:
add action=mark-packet chain=forward comment=“172.20.3.0/25 Upload”
new-packet-mark=“172.20.3.0/25 Upload” passthrough=no src-address=
172.20.3.0/25
add action=mark-packet chain=forward comment=“172.20.3.0/25 Download”
dst-address=172.20.3.0/25 in-interface=Uplink new-packet-mark=
“172.20.3.0/25 Download” passthrough=noWas the src-address and interface reversal the right way to do that?
I am most unclear about the parent/child. I am guessing I would have:
add comment=“172.20.3.0/25 Download” name=“172.20.3.0/25 Download”
packet-mark=“172.20.3.0/25 Download” parent=global queue=
“172.20.3.0/25 Download”
add comment=“172.20.3.0/25 Upload” name=“172.20.3.0/25 Upload” packet-mark=
“172.20.3.0/25 Upload” parent=global queue="172.20.3.0/25 Upload"But I will need multiple layers. How do I do that? The goal would be to divide traffic into upload and download, and then prioritize packets within:
- Download
1.1 Download VOIP
1.2 Download WebEx/Skype/Facetime
1.3 Download ACK/DNS
1.4 Download Work (anything VPN? IP based?)
1.5 Download HTTP/HTTPS
1.6 Download other non streaming
1.7 Download streaming - Upload
1.1 Upload VOIP
1.2 Upload WebEx/Skype/Facetime
1.3 Upload ACK/DNS
1.4 Upload Work (anything VPN? IP based?)
1.5 Upload HTTP/HTTPS
1.6 Upload other non streaming
1.7 Upload streaming
Can someone provide some specific guidance?