mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 05:42:49 +02:00
add fragmentation and rts settings thanks rene closes #1725
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7743 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
92ed42016c
commit
9ff2a956d3
@ -184,6 +184,16 @@ enable_atheros() {
|
||||
iwconfig "$ifname" txpower "${txpwr%%.*}"
|
||||
fi
|
||||
|
||||
config_get frag "$vif" frag
|
||||
if [ -n "$frag" ]; then
|
||||
iwconfig "$ifname" frag "${frag%%.*}"
|
||||
fi
|
||||
|
||||
config_get rts "$vif" rts
|
||||
if [ -n "$rts" ]; then
|
||||
iwconfig "$ifname" rts "${rts%%.*}"
|
||||
fi
|
||||
|
||||
ifconfig "$ifname" up
|
||||
iwconfig "$ifname" channel "$channel" >/dev/null 2>/dev/null
|
||||
|
||||
@ -268,6 +278,8 @@ config wifi-iface
|
||||
option hidden 0
|
||||
# option txpower 15
|
||||
# option bgscan enable
|
||||
# option frag off
|
||||
# option rts off
|
||||
option encryption none
|
||||
|
||||
EOF
|
||||
|
Loading…
Reference in New Issue
Block a user