1 append DRIVERS
"broadcom"
7 local adhoc_if sta_if ap_if
9 config_get vifs
"$device" vifs
11 config_get mode
"$vif" mode
23 ap_if
="${ap_if:+$ap_if }$vif"
26 config_get addr
"$vif" bssid
27 [ -z "$addr" ] || append wds
"$addr"
29 *) echo "$device($vif): Invalid mode";;
32 config_set
"$device" wds
"$wds"
35 for vif
in ${adhoc_if:-$sta_if $ap_if}; do
36 config_set
"$vif" ifname
"wl0${_c:+.$_c}"
39 config_set
"$device" vifs
"${adhoc_if:-$sta_if $ap_if}"
42 for vif
in 0 1 2 3; do
43 append ifdown
"vif $vif" "$N"
44 append ifdown
"enabled 0" "$N"
52 case "$adhoc:$sta:$apmode" in
79 # make sure the interfaces are down and removed from all bridges
80 for dev
in wl0 wl0.1 wl0.2 wl0.3
; do
81 ifconfig
"$dev" down
2>/dev
/null
>/dev
/null
&& {
91 config_get channel
"$device" channel
92 config_get country
"$device" country
93 config_get maxassoc
"$device" maxassoc
94 config_get wds
"$device" wds
95 config_get vifs
"$device" vifs
96 config_get distance
"$device" distance
97 config_get slottime
"$device" slottime
98 config_get rxant
"$device" rxant
99 config_get txant
"$device" txant
100 config_get macfilter
"$device" macfilter
101 config_get maclist
"$device" maclist
102 local vif_pre_up vif_post_up vif_do_up
109 [ -z "$slottime" ] && {
110 [ -n "$distance" ] && {
111 # slottime = 9 + (distance / 150) + (distance % 150 ? 1 : 0)
112 slottime
="$((9 + ($distance / 150) + 1 - (150 - ($distance % 150)) / 150 ))"
115 slottime
="${slottime:--1}"
131 config_get mode
"$vif" mode
132 append vif_pre_up
"vif $_c" "$N"
133 append vif_post_up
"vif $_c" "$N"
135 [ "$mode" = "sta" ] ||
{
136 config_get_bool hidden
"$vif" hidden
0
137 append vif_pre_up
"closed $hidden" "$N"
138 config_get_bool isolate
"$vif" isolate
0
139 append vif_pre_up
"ap_isolate $isolate" "$N"
147 config_get enc
"$vif" encryption
153 config_get key
"$vif" key
157 for knr
in 1 2 3 4; do
158 config_get k
"$vif" key
$knr
159 [ -n "$k" ] ||
continue
160 [ "$defkey" = "$knr" ] && def
="=" || def
=""
161 append vif_do_up
"wepkey $def$knr,$k" "$N"
165 *) append vif_do_up
"wepkey =1,$key" "$N";;
170 config_get key
"$vif" key
172 wpa
*+wpa2
*|WPA
*+WPA2
*|
*psk
+*psk2|
*PSK
+*PSK2
) auth
=132; wsec
=6;;
173 wpa2
*|WPA2
*|
*PSK2|
*psk2
) auth
=128; wsec
=4;;
176 eval "${vif}_key=\"\$key\""
177 nasopts
="-k \"\$${vif}_key\""
182 config_get key
"$vif" key
183 config_get server
"$vif" server
184 config_get port
"$vif" port
186 wpa
*+wpa2
*|WPA
*+WPA2
*) auth
=66; wsec
=6;;
187 wpa2
*|WPA2
*) auth
=64; wsec
=4;;
190 eval "${vif}_key=\"\$key\""
191 nasopts
="-r \"\$${vif}_key\" -h $server -p $port"
194 append vif_do_up
"wsec $wsec" "$N"
195 append vif_do_up
"wpa_auth $auth" "$N"
196 append vif_do_up
"wsec_restrict $wsec_r" "$N"
197 append vif_do_up
"eap_restrict $eap_r" "$N"
199 config_get ssid
"$vif" ssid
200 append vif_post_up
"vlan_mode 0" "$N"
201 append vif_post_up
"ssid $ssid" "$N"
202 append vif_do_up
"ssid $ssid" "$N"
204 append vif_post_up
"enabled 1" "$N"
206 config_get ifname
"$vif" ifname
207 #append if_up "ifconfig $ifname up" ";$N"
209 net_cfg
="$(find_net_config "$vif")"
210 [ -z "$net_cfg" ] ||
{
211 bridge
="$(bridge_interface "$net_cfg")"
212 append if_up
"start_net '$ifname' '$net_cfg'" ";$N"
213 append if_up
"set_wifi_up '$vif' '$ifname'" ";$N"
215 [ -z "$nasopts" ] ||
{
216 eval "${vif}_ssid=\"\$ssid\""
219 [ "$mode" = "sta" ] && {
221 [ -z "$bridge" ] ||
{
222 append vif_post_up
"supplicant 1" "$N"
223 append vif_post_up
"passphrase $key" "$N"
228 [ -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 &"
232 killall
-KILL nas
>&- 2>&-
237 ${mssid:+mssid $mssid}
247 macfilter ${macfilter:-0}
248 maclist ${maclist:-none}
251 country ${country:-IL0}
252 ${channel:+channel $channel}
253 maxassoc ${maxassoc:-128}
254 slottime ${slottime:--1}
269 [ -f /proc
/net
/wl0
] ||
return
270 config_get
type wl0
type
271 [ "$type" = broadcom
] && return
273 config wifi-device wl0
277 # REMOVE THIS LINE TO ENABLE WIFI:
285 option encryption none