Hello, I’m trying to prioritize my VoIP traffic with queue trees but I can’t tell if it’s working as intended. I’ve set up SIP and RTP marking in Mangle and it appears it’s working there because the counters are reporting numbers. But if I go into Queue Tree, I have zeros for my RTP traffic and SIP only has a small fraction of the total that is displayed in Mangle. Is this normal behavior for RTP or could it be a misconfiguration of my rules? Below is a snippet of the config.


/interface bridge port
add bridge=bridge hw=no ingress-filtering=no interface=ether2-master
add bridge=bridge hw=no ingress-filtering=no interface=sfp1
/interface list member
add interface=bridge list=LAN
add interface=ether1 list=WAN
/queue tree
add limit-at=35M max-limit=35M name=UPLOAD parent=ether1 queue=default
add limit-at=2M max-limit=2M name=upload_pri_1 packet-mark=RTP parent=UPLOAD \
priority=1 queue=default
add limit-at=2M max-limit=2M name=upload_pri_2 packet-mark=sip parent=UPLOAD \
priority=2 queue=default
add max-limit=29M name=upload_pri_7 packet-mark=no-mark parent=UPLOAD \
priority=7 queue=default
add limit-at=550M max-limit=550M name=DOWNLOAD parent=bridge queue=default
add limit-at=2M max-limit=2M name=download_pri_1 packet-mark=RTP parent=\
DOWNLOAD priority=1 queue=default
add limit-at=2M max-limit=2M name=download_pri_2 packet-mark=sip parent=\
DOWNLOAD priority=2 queue=default
add max-limit=500M name=download_pri_7 packet-mark=no-mark parent=DOWNLOAD \
priority=7 queue=default
/ip firewall address-list
add address=208.73.144.0/21 comment="Nextiva IP Range 208.73.144.0/21" list=\
Nextiva
add address=208.89.108.0/22 comment="Nextiva IP Range 208.89.108.0/22" list=\
Nextiva
/ip firewall filter
add action=fasttrack-connection chain=forward connection-state=\
established,related disabled=yes hw-offload=yes
add action=accept chain=forward comment="Nextiva allow" src-address-list=\
Nextiva
add action=accept chain=input comment="Nextiva allow" src-address-list=\
Nextiva
add action=accept chain=forward comment="Nextiva allow" dst-address-list=\
Nextiva
add action=accept chain=input comment="Nextiva allow" dst-address-list=\
Nextiva
/ip firewall mangle
add action=mark-connection chain=forward comment=SIP connection-state=new \
dst-address=208.73.144.43 dst-port=5060 new-connection-mark=\
nextiva-connection passthrough=yes protocol=tcp
add action=mark-packet chain=forward connection-mark=nextiva-connection \
new-packet-mark=sip passthrough=yes
add action=mark-connection chain=forward comment=RTP connection-state=new \
dst-address=208.73.144.43 log-prefix=RTP-Conn new-connection-mark=\
rtp-connection passthrough=yes port=10000-26000 protocol=udp
add action=mark-packet chain=forward connection-mark=rtp-connection \
log-prefix=RTP new-packet-mark=RTP passthrough=yes
add action=change-dscp chain=postrouting comment="DSCP 46" log-prefix=\
change-dscp new-dscp=46 packet-mark=RTP passthrough=yes
