Page 1 of 1

Wireless issues with 1.6.x

Posted: Mon Oct 20, 2014 11:39 am
by timc
I tried upgrading to 1.6.x and I have found that after a day or so, I can no longer view WMC live TV from a wireless Xbox360 S. If I reboot the router, it will work for another day. Going back to 1.5.10 keeps it stable. Any one else see this issue?

Re: Wireless issues with 1.6.x

Posted: Wed Oct 22, 2014 11:06 am
by Ulric
Check to see if your router uses the ath9k wireless driver:

Code: Select all

lsmod | grep ath9k
If it does, find out how many radios your router has:

Code: Select all

ls /sys/kernel/debug/ieee80211/


Replacing 'phy0' as needed to get all radios listed, disable ANI with the following command:

Code: Select all

echo 0 > /sys/kernel/debug/ieee80211/phy0/ath9k/ani
Once you have completed that, add the previous command to rc.local, again replacing 'phy0' as needed. If it was 'exit 0' at the end, be sure to add the lines above it.

Code: Select all

vi /etc/rc.local
Hope it helps :)