aboutsummaryrefslogtreecommitdiffstats
path: root/package/hostapd
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2012-07-24 23:07:15 +0000
committerJohn Crispin <blogic@openwrt.org>2012-07-24 23:07:15 +0000
commitfc04e98efd6c789ebc25c73f50963c1290ad2ca3 (patch)
tree47e8b2468b20899f13d1f4a166dad5e4e7f655a5 /package/hostapd
parent7a1c6282df289b3ec3737e6dc038cd2b87323484 (diff)
downloadupstream-fc04e98efd6c789ebc25c73f50963c1290ad2ca3.tar.gz
upstream-fc04e98efd6c789ebc25c73f50963c1290ad2ca3.tar.bz2
upstream-fc04e98efd6c789ebc25c73f50963c1290ad2ca3.zip
wpa_supplicant: add more parameters
Signed-off-by: Antonio Quartulli <ordex@autistici.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32829 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/hostapd')
-rw-r--r--package/hostapd/files/wpa_supplicant.sh44
1 files changed, 38 insertions, 6 deletions
diff --git a/package/hostapd/files/wpa_supplicant.sh b/package/hostapd/files/wpa_supplicant.sh
index ed6597c259..6f89c646aa 100644
--- a/package/hostapd/files/wpa_supplicant.sh
+++ b/package/hostapd/files/wpa_supplicant.sh
@@ -4,6 +4,8 @@ wpa_supplicant_setup_vif() {
local key="$key"
local options="$3"
local freq=""
+ local ap_scan=""
+ local scan_ssid="1"
[ -n "$4" ] && freq="frequency=$4"
# make sure we have the encryption type and the psk
@@ -30,7 +32,11 @@ wpa_supplicant_setup_vif() {
echo "wpa_supplicant_setup_vif($ifname): Refusing to bridge $mode mode interface"
return 1
}
- [ "$mode" = "adhoc" ] && modestr="mode=1"
+ [ "$mode" = "adhoc" ] && {
+ modestr="mode=1"
+ scan_ssid="0"
+ ap_scan="ap_scan=2"
+ }
key_mgmt='NONE'
case "$enc" in
@@ -117,22 +123,48 @@ wpa_supplicant_setup_vif() {
;;
esac
+ local fixed_freq bssid1 beacon_interval brates mrate
config_get ifname "$vif" ifname
config_get bridge "$vif" bridge
- config_get ssid "$vif" ssid
- config_get bssid "$vif" bssid
- bssid=${bssid:+"bssid=$bssid"}
+ bssid1=${bssid:+"bssid=$bssid"}
+ beacon_interval=${beacon_int:+"beacon_interval=$beacon_int"}
+
+ local br brval brsub brstr
+ [ -n "$basic_rate_list" ] && {
+ for br in $basic_rate_list; do
+ brval="$(($br / 1000))"
+ brsub="$((($br / 100) % 10))"
+ [ "$brsub" -gt 0 ] && brval="$brval.$brsub"
+ [ -n "$brstr" ] && brstr="$brstr,"
+ brstr="$brstr$brval"
+ done
+ brates=${basic_rate_list:+"rates=$brstr"}
+ }
+
+ local mcval=""
+ [ -n "$mcast_rate" ] && {
+ mcval="$(($mcast_rate / 1000))"
+ mcsub="$(( ($mcast_rate / 100) % 10 ))"
+ [ "$mcsub" -gt 0 ] && mcval="$mcval.$mcsub"
+ mrate=${mcast_rate:+"mcast_rate=$mcval"}
+ }
+
rm -rf /var/run/wpa_supplicant-$ifname
cat > /var/run/wpa_supplicant-$ifname.conf <<EOF
ctrl_interface=/var/run/wpa_supplicant-$ifname
+$ap_scan
network={
$modestr
- scan_ssid=1
+ scan_ssid=$scan_ssid
ssid="$ssid"
- $bssid
+ $bssid1
key_mgmt=$key_mgmt
$proto
$freq
+ ${fixed:+"fixed_freq=1"}
+ $beacon_interval
+ $brates
+ $mrate
$ieee80211w
$passphrase
$pairwise