mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-27 15:41:06 +02:00
[packages] hostapd: add 11n mode and ht_capab option for hostapd
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14713 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
9781ac20ab
commit
6c96d2743b
@ -22,7 +22,7 @@ hostapd_setup_vif() {
|
|||||||
wpa=3
|
wpa=3
|
||||||
crypto="CCMP TKIP"
|
crypto="CCMP TKIP"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
wpa=1
|
wpa=1
|
||||||
crypto="TKIP"
|
crypto="TKIP"
|
||||||
;;
|
;;
|
||||||
@ -81,6 +81,11 @@ hostapd_setup_vif() {
|
|||||||
11a) hwmode=a;;
|
11a) hwmode=a;;
|
||||||
11b) hwmode=b;;
|
11b) hwmode=b;;
|
||||||
11g) hwmode=g;;
|
11g) hwmode=g;;
|
||||||
|
11n)
|
||||||
|
hwmode=g
|
||||||
|
append hostapd_cfg "ieee80211n=1" "$N"
|
||||||
|
config_get ht_capab "$device" ht_capab
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
hwmode=
|
hwmode=
|
||||||
[ "$channel" -gt 14 ] && hwmode=a
|
[ "$channel" -gt 14 ] && hwmode=a
|
||||||
@ -98,6 +103,7 @@ debug=0
|
|||||||
wpa=$wpa
|
wpa=$wpa
|
||||||
${crypto:+wpa_pairwise=$crypto}
|
${crypto:+wpa_pairwise=$crypto}
|
||||||
${country:+country_code=$country}
|
${country:+country_code=$country}
|
||||||
|
${ht_capab:+ht_capab=$ht_capab}
|
||||||
$hostapd_cfg
|
$hostapd_cfg
|
||||||
EOF
|
EOF
|
||||||
hostapd -P /var/run/wifi-$ifname.pid -B /var/run/hostapd-$ifname.conf
|
hostapd -P /var/run/wifi-$ifname.pid -B /var/run/hostapd-$ifname.conf
|
||||||
|
Loading…
x
Reference in New Issue
Block a user