I try it in english (thanks g**gle
I'am using Gargoyle 1.6.0 on two "TL-WA901N/ND v2" as "Client Bridge":
- The settings of "Transmit Power" will not be saved.
- In "Wireless Channel", only channels 5 - 13 are displayed for selection. I performed "reghack" to get the channels 12 and 13, but the list of channels was previously incomplete and I'm missing the channels 1 - 4 and in particular the "auto"-option.
My changes I've made by Shell and everything works fine, but it would be great if it would also work by WebIF:
Code: Select all
# reghack (add channel 12 + 13) ****************************
cd /tmp/
wget http://luci.subsignal.org/~jow/reghack/reghack.mips.elf
chmod +x reghack.mips.elf
./reghack.mips.elf /lib/modules/*/ath.ko
./reghack.mips.elf /lib/modules/*/cfg80211.ko
reboot
# set auto channel
uci get wireless.radio0.channel
uci set wireless.radio0.channel=auto
# set region
# iw reg get
uci get wireless.radio0.country
uci set wireless.radio0.country=DE
# set tx-power
iwconfig wlan0 | egrep -i 'ieee|power'
uci get wireless.radio0.txpower
uci set wireless.radio0.txpower=20
uci commit
wifi
Schorsch