mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-25 05:17:56 +02:00
Fix putting mac80211 interfaces in monitor and managed modes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12293 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
54a7242228
commit
a8d1b57fac
@ -13,14 +13,14 @@ scan_mac80211() {
|
|||||||
|
|
||||||
config_get mode "$vif" mode
|
config_get mode "$vif" mode
|
||||||
case "$mode" in
|
case "$mode" in
|
||||||
adhoc|sta|ap)
|
adhoc|sta|ap|monitor)
|
||||||
append $mode "$vif"
|
append $mode "$vif"
|
||||||
;;
|
;;
|
||||||
*) echo "$device($vif): Invalid mode, ignored."; continue;;
|
*) echo "$device($vif): Invalid mode, ignored."; continue;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
config_set "$device" vifs "${ap:+$ap }${adhoc:+$adhoc }${ahdemo:+$ahdemo }${sta:+$sta }${wds:+$wds }"
|
config_set "$device" vifs "${ap:+$ap }${adhoc:+$adhoc }${ahdemo:+$ahdemo }${sta:+$sta }${wds:+$wds }${monitor:+$monitor}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -53,6 +53,7 @@ enable_mac80211() {
|
|||||||
|
|
||||||
local first=1
|
local first=1
|
||||||
for vif in $vifs; do
|
for vif in $vifs; do
|
||||||
|
ifconfig "$ifname" down
|
||||||
config_get ifname "$vif" ifname
|
config_get ifname "$vif" ifname
|
||||||
config_get enc "$vif" encryption
|
config_get enc "$vif" encryption
|
||||||
config_get eap_type "$vif" eap_type
|
config_get eap_type "$vif" eap_type
|
||||||
@ -73,10 +74,14 @@ enable_mac80211() {
|
|||||||
sleep 1
|
sleep 1
|
||||||
iwconfig "$ifname" mode ad-hoc >/dev/null 2>/dev/null
|
iwconfig "$ifname" mode ad-hoc >/dev/null 2>/dev/null
|
||||||
fi
|
fi
|
||||||
ifconfig "$ifname" up
|
|
||||||
sleep 1
|
sleep 1
|
||||||
iwconfig "$ifname" channel "$channel" >/dev/null 2>/dev/null
|
iwconfig "$ifname" channel "$channel" >/dev/null 2>/dev/null
|
||||||
}
|
}
|
||||||
|
if [ "$mode" = sta ]; then
|
||||||
|
iwconfig "$ifname" mode managed >/dev/null 2>/dev/null
|
||||||
|
else
|
||||||
|
iwconfig "$ifname" mode $mode >/dev/null 2>/dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
wpa=
|
wpa=
|
||||||
case "$enc" in
|
case "$enc" in
|
||||||
|
Loading…
x
Reference in New Issue
Block a user