diff options
Diffstat (limited to 'package/hostapd/files/hostapd.sh')
| -rw-r--r-- | package/hostapd/files/hostapd.sh | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/package/hostapd/files/hostapd.sh b/package/hostapd/files/hostapd.sh index 9dc18366d..a41c7678a 100644 --- a/package/hostapd/files/hostapd.sh +++ b/package/hostapd/files/hostapd.sh @@ -5,6 +5,11 @@ hostapd_set_bss_options() {  	config_get enc "$vif" encryption  	config_get wpa_group_rekey "$vif" wpa_group_rekey +	config_get_bool ap_isolate "$vif" isolate 0 + +	if [ "$ap_isolate" -gt 0 ]; then +		append "$var" "ap_isolate=$ap_isolate" "$N" +	fi  	# Examples:  	# psk-mixed/tkip 	=> WPA1+2 PSK, TKIP  | 
