From: nbd Date: Tue, 8 Oct 2013 11:09:48 +0000 (+0000) Subject: hostapd: add external registrar support X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=commitdiff_plain;h=44a7647b0c59321c9091da3540265ed513b41fd6 hostapd: add external registrar support Setting wireless.@wifi-iface[N].ext_registrar=1 will enable UPNP advertising and add an external registrar to the interface this vif belongs to (br-lan if the vif is included in the LAN bridge). By enabling this we append upnp_iface=xxx to the hostapd config file. Signed-off-by: Sujith Manoharan Signed-off-by: Mathieu Olivari Signed-off-by: Luis R. Rodriguez git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38338 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/network/services/hostapd/files/hostapd.sh b/package/network/services/hostapd/files/hostapd.sh index ce0f2271de..f856a0b739 100644 --- a/package/network/services/hostapd/files/hostapd.sh +++ b/package/network/services/hostapd/files/hostapd.sh @@ -196,6 +196,9 @@ hostapd_set_bss_options() { config_get manufacturer "$vif" wps_manufacturer "openwrt.org" config_get wps_pin "$vif" wps_pin "12345670" + config_get_bool ext_registrar "$vif" ext_registrar 0 + [ "$ext_registrar" -gt 0 -a -n "$bridge" ] && append "$var" "upnp_iface=$bridge" "$N" + append "$var" "eap_server=1" "$N" append "$var" "ap_pin=$wps_pin" "$N" append "$var" "wps_state=${wps_not_configured:-2}" "$N"