1 append DRIVERS
"broadcom"
6 local adhoc sta apmode mon
7 local adhoc_if sta_if ap_if mon_if
10 config_get vifs
"$device" vifs
12 config_get mode
"$vif" mode
25 ap_if
="${ap_if:+$ap_if }$vif"
28 config_get addr
"$vif" bssid
30 addr
=$
(echo "$addr" |
tr 'A-F' 'a-f')
38 *) echo "$device($vif): Invalid mode";;
41 config_set
"$device" wds
"$wds"
44 for vif
in ${adhoc_if:-$sta_if $ap_if $mon_if}; do
45 config_set
"$vif" ifname
"wl0${_c:+.$_c}"
48 config_set
"$device" vifs
"${adhoc_if:-$sta_if $ap_if $mon_if}"
51 for vif
in 0 1 2 3; do
52 append ifdown
"vif $vif" "$N"
53 append ifdown
"enabled 0" "$N"
58 if [ "$_c" -gt 1 ]; then
67 case "$adhoc:$sta:$apmode:$mon" in
101 # make sure the interfaces are down and removed from all bridges
102 for dev
in wl0 wl0.1 wl0.2 wl0.3
; do
103 ifconfig
"$dev" down
2>/dev
/null
>/dev
/null
&& {
113 config_get channel
"$device" channel
114 config_get country
"$device" country
115 config_get maxassoc
"$device" maxassoc
116 config_get wds
"$device" wds
117 config_get vifs
"$device" vifs
118 config_get distance
"$device" distance
119 config_get slottime
"$device" slottime
120 config_get rxantenna
"$device" rxantenna
121 config_get txantenna
"$device" txantenna
122 config_get_bool frameburst
"$device" frameburst
123 config_get macfilter
"$device" macfilter
124 config_get maclist
"$device" maclist
125 config_get macaddr
"$device" macaddr
126 local vif_pre_up vif_post_up vif_do_up txpower
133 [ -z "$slottime" ] && {
134 [ -n "$distance" ] && {
135 # slottime = 9 + (distance / 150) + (distance % 150 ? 1 : 0)
136 slottime
="$((9 + ($distance / 150) + 1 - (150 - ($distance % 150)) / 150 ))"
139 slottime
="${slottime:--1}"
155 config_get txpower
"$vif" txpower
157 config_get mode
"$vif" mode
158 append vif_pre_up
"vif $_c" "$N"
159 append vif_post_up
"vif $_c" "$N"
160 append vif_do_up
"vif $_c" "$N"
162 [ "$mode" = "sta" ] ||
{
163 config_get_bool hidden
"$vif" hidden
0
164 append vif_pre_up
"closed $hidden" "$N"
165 config_get_bool isolate
"$vif" isolate
0
166 append vif_pre_up
"ap_isolate $isolate" "$N"
174 config_get enc
"$vif" encryption
180 config_get key
"$vif" key
184 for knr
in 1 2 3 4; do
185 config_get k
"$vif" key
$knr
186 [ -n "$k" ] ||
continue
187 [ "$defkey" = "$knr" ] && def
="=" || def
=""
188 append vif_do_up
"wepkey $def$knr,$k" "$N"
192 *) append vif_do_up
"wepkey =1,$key" "$N";;
197 config_get key
"$vif" key
199 wpa
*+wpa2
*|WPA
*+WPA2
*|
*psk
+*psk2|
*PSK
+*PSK2
) auth
=132; wsec
=6;;
200 wpa2
*|WPA2
*|
*PSK2|
*psk2
) auth
=128; wsec
=4;;
203 eval "${vif}_key=\"\$key\""
204 nasopts
="-k \"\$${vif}_key\""
209 config_get key
"$vif" key
210 config_get server
"$vif" server
211 config_get port
"$vif" port
213 wpa
*+wpa2
*|WPA
*+WPA2
*) auth
=66; wsec
=6;;
214 wpa2
*|WPA2
*) auth
=64; wsec
=4;;
217 eval "${vif}_key=\"\$key\""
218 nasopts
="-r \"\$${vif}_key\" -h $server -p ${port:-1812}"
221 append vif_do_up
"wsec $wsec" "$N"
222 append vif_do_up
"wpa_auth $auth" "$N"
223 append vif_do_up
"wsec_restrict $wsec_r" "$N"
224 append vif_do_up
"eap_restrict $eap_r" "$N"
226 config_get ssid
"$vif" ssid
227 append vif_post_up
"vlan_mode 0" "$N"
228 append vif_post_up
"ssid $ssid" "$N"
229 append vif_do_up
"ssid $ssid" "$N"
231 [ "$mode" = "monitor" ] && {
232 append vif_post_up
"monitor $monitor" "$N"
233 append vif_post_up
"passive $passive" "$N"
236 append vif_post_up
"enabled 1" "$N"
238 config_get ifname
"$vif" ifname
239 #append if_up "ifconfig $ifname up" ";$N"
240 [ -z "$macaddr" ] || append if_up
"ifconfig $ifname hw ether $macaddr" ";$N"
242 net_cfg
="$(find_net_config "$vif")"
243 [ -z "$net_cfg" ] ||
{
244 bridge
="$(bridge_interface "$net_cfg")"
245 append if_up
"start_net '$ifname' '$net_cfg'" ";$N"
246 append if_up
"set_wifi_up '$vif' '$ifname'" ";$N"
248 [ -z "$nasopts" ] ||
{
249 eval "${vif}_ssid=\"\$ssid\""
252 [ "$mode" = "sta" ] && {
254 [ -z "$bridge" ] ||
{
255 append vif_post_up
"supplicant 1" "$N"
256 append vif_post_up
"passphrase $key" "$N"
261 [ -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 &"
265 killall
-KILL nas
>&- 2>&-
270 ${mssid:+mssid $mssid}
276 rxant ${rxantenna:-3}
277 txant ${txantenna:-3}
278 monitor ${monitor:-0}
279 passive ${passive:-0}
282 macfilter ${macfilter:-0}
283 maclist ${maclist:-none}
286 country ${country:-IL0}
287 ${channel:+channel $channel}
288 maxassoc ${maxassoc:-128}
289 slottime ${slottime:--1}
290 ${frameburst:+frameburst $frameburst}
300 [ -z "$txpower" ] || iwconfig
$device txpower
${txpower}dBm
307 [ -f /proc
/net
/wl0
] ||
return
308 config_get
type wl0
type
309 [ "$type" = broadcom
] && return
311 config wifi-device wl0
315 # REMOVE THIS LINE TO ENABLE WIFI:
323 option encryption none