diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-07-08 18:36:17 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-07-08 18:36:17 +0000 |
commit | ca4a8b1bee22646319f8e2aeb1ed59062403a9b8 (patch) | |
tree | a564e331397dba07eb504951ab54088430a48d9c /package/hostapd/files/hostapd.sh | |
parent | 3e75044a95d42c948dc84d4a88776c7923c20055 (diff) | |
download | upstream-ca4a8b1bee22646319f8e2aeb1ed59062403a9b8.tar.gz upstream-ca4a8b1bee22646319f8e2aeb1ed59062403a9b8.tar.bz2 upstream-ca4a8b1bee22646319f8e2aeb1ed59062403a9b8.zip |
hostapd: add preliminary wps script support (push-button only, does not handle multi-bss yet)
SVN-Revision: 22100
Diffstat (limited to 'package/hostapd/files/hostapd.sh')
-rw-r--r-- | package/hostapd/files/hostapd.sh | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/package/hostapd/files/hostapd.sh b/package/hostapd/files/hostapd.sh index fdb047be6a..c4e91689da 100644 --- a/package/hostapd/files/hostapd.sh +++ b/package/hostapd/files/hostapd.sh @@ -1,7 +1,7 @@ hostapd_set_bss_options() { local var="$1" local vif="$2" - local enc wpa_group_rekey + local enc wpa_group_rekey wps_possible config_get enc "$vif" encryption config_get wpa_group_rekey "$vif" wpa_group_rekey @@ -60,6 +60,7 @@ hostapd_set_bss_options() { else append "$var" "wpa_passphrase=$psk" "$N" fi + wps_possible=1 ;; *wpa*) # required fields? formats? @@ -116,6 +117,14 @@ hostapd_set_bss_options() { config_get bridge "$vif" bridge config_get ieee80211d "$vif" ieee80211d + config_get_bool wps_pbc "$vif" wps_pushbutton 0 + [ -n "$wps_possible" -a "$wps_pbc" -gt 0 ] && { + append "$var" "eap_server=1" "$N" + append "$var" "wps_state=2" "$N" + append "$var" "ap_setup_locked=1" "$N" + append "$var" "config_methods=push_button" "$N" + } + append "$var" "ssid=$ssid" "$N" [ -n "$bridge" ] && append "$var" "bridge=$bridge" "$N" [ -n "$ieee80211d" ] && append "$var" "ieee80211d=$ieee80211d" "$N" |