Does a great job. My only fear is it doesn't specifically target IAX2 traffic as high priority, but I can modify it later to do so if needed.
Just add some iptables rules to prioritize UDP traffic by marking them with TOS. (I do this to prioritize game packets at home.)
iptables -t mangle -A PREROUTING -p udp -j TOS --set-tos 0x10 iptables -t mangle -A OUTPUT -p udp -j TOS --set-tos 0x10 iptables -t mangle -A POSTROUTING -p udp -j TOS --set-tos 0x10
Wondershaper puts packets marked TOS 0x10 into the high priority queue. _______________________________________________ Asterisk-Users mailing list [email protected] http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
