config_get vifs "$device" vifs
config_get distance "$device" distance
config_get slottime "$device" slottime
+ config_get rxant "$device" rxant
+ config_get txant "$device" txant
local vif_pre_up vif_post_up vif_do_up
_c=0
}
[ -z "$nasopts" ] || {
eval "${vif}_ssid=\"\$ssid\""
- mode="-A"
- [ "$vif" = "$sta_if" ] && mode="-S"
- [ -z "$nas" ] || nas_cmd="${nas_cmd:+$nas_cmd$N}$nas -P /var/run/nas.$ifname.pid -H 34954 ${bridge:+ -l $bridge} -i $ifname $mode -m $auth -w $wsec -s \"\$${vif}_ssid\" -g 3600 $nasopts &"
+ nas_mode="-A"
+ use_nas=1
+ [ "$mode" = "sta" ] && {
+ nas_mode="-S"
+ [ -z "$bridge" ] || {
+ append vif_pre_up "supplicant 1" "$N"
+ append vif_pre_up "passphrase $key" "$N"
+
+ use_nas=0
+ }
+ }
+ [ -z "$nas" -o "$use_nas" = "0" ] || nas_cmd="${nas_cmd:+$nas_cmd$N}$nas -P /var/run/nas.$ifname.pid -H 34954 ${bridge:+ -l $bridge} -i $ifname $nas_mode -m $auth -w $wsec -s \"\$${vif}_ssid\" -g 3600 $nasopts &"
}
_c=$(($_c + 1))
done
${wet:+wet 1}
802.11d 0
802.11h 0
+rxant ${rxant:-3}
+txant ${txant:-3}
radio ${radio:-1}
macfilter 0
config wifi-device wl0
option type broadcom
option channel 5
-# disable radio to prevent an open ap after reflashing:
+
+ # REMOVE THIS LINE TO ENABLE WIFI:
option disabled 1
config wifi-iface
option network lan
option mode ap
option ssid OpenWrt
- option hidden 0
option encryption none
-
EOF
}