hostapd: add code to prevent accidentally bridging non-wds sta mode interfaces

SVN-Revision: 28858
master
Jo-Philipp Wich 13 years ago
parent b6aef59ea8
commit ec20b84048
  1. 9
      package/hostapd/files/wpa_supplicant.sh

@ -23,6 +23,15 @@ wpa_supplicant_setup_vif() {
config_set "$vif" bridge "$bridge"
}
local mode ifname wds
config_get mode "$vif" mode
config_get ifname "$vif" ifname
config_get_bool wds "$vif" wds 0
[ -z "$bridge" ] || [ "$mode" = ap ] || [ "$mode" = sta -a $wds -eq 1 ] || {
echo "wpa_supplicant_setup_vif($ifname): Refusing to bridge $mode mode interface"
return 1
}
case "$enc" in
*none*)
key_mgmt='NONE'

Loading…
Cancel
Save