I'm trying to setup QoS for my VOIP account. Here's my setup:
* VOIP service provider: mybbvoice.com
* adapter: Linksys SPA2102
* router: Asus WL-500gP v1
* firmware: Kamikaze 8.09.1
I've installed luci-app-qos and measured my bandwidth with http://www.speedtest.net to set the uplink and downlink thresholds.
For my purposes, I want VOIP to be prioritized as Express and I'll leave everything else set to the default of the QoS script: e.g. UDP > Express, SSH > Priority, etc.
The QoS MiniHowto (http://oldwiki.openwrt.org/MiniHowtos%2 … Howto.html) says "or do something simple, like mark any traffic coming from my MAC address of my ATA as 1, High." Since I can't use MAC addresses in /etc/config/qos, I created two prioritizations:
config 'classify'
option 'target' 'Express'
option 'srchost' '192.168.1.1'
option 'dsthost' '192.168.1.100'
config 'classify'
option 'target' 'Express'
option 'srchost' '192.168.1.100'
option 'dsthost' '192.168.1.1'
Is this correct? Do I need to do anything else?
Thanks.