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
"${device}${_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
66 case "$adhoc:$sta:$apmode:$mon" in
95 set_wifi_down
"$device"
96 wlc ifname
"$device" down
97 wlc ifname
"$device" bssid
`wlc ifname "$device" default_bssid`
101 # make sure the interfaces are down and removed from all bridges
102 for dev
in $device ${device}.1 ${device}.2 ${device}.3; do
103 ifconfig
"$dev" down
2>/dev
/null
>/dev
/null
&& {
114 config_get channel
"$device" channel
115 config_get country
"$device" country
116 config_get maxassoc
"$device" maxassoc
117 config_get wds
"$device" wds
118 config_get vifs
"$device" vifs
119 config_get distance
"$device" distance
120 config_get slottime
"$device" slottime
121 config_get rxantenna
"$device" rxantenna
122 config_get txantenna
"$device" txantenna
123 config_get_bool frameburst
"$device" frameburst
124 config_get macfilter
"$device" macfilter
125 config_get maclist
"$device" maclist
126 config_get macaddr
"$device" macaddr
127 config_get txpower
"$device" txpower
128 config_get frag
"$device" frag
129 config_get rts
"$device" rts
130 config_get hwmode
"$device" hwmode
131 local vif_pre_up vif_post_up vif_do_up vif_txpower
140 [ -z "$slottime" ] && {
141 [ -n "$distance" ] && {
142 # slottime = 9 + (distance / 150) + (distance % 150 ? 1 : 0)
143 slottime
="$((9 + ($distance / 150) + 1 - (150 - ($distance % 150)) / 150 ))"
146 slottime
="${slottime:--1}"
171 config_get vif_txpower
"$vif" txpower
173 config_get mode
"$vif" mode
174 append vif_pre_up
"vif $_c" "$N"
175 append vif_post_up
"vif $_c" "$N"
176 append vif_do_up
"vif $_c" "$N"
178 config_get_bool wmm
"$vif" wmm
"$wmm"
179 config_get_bool doth
"$vif" doth
"$doth"
181 [ "$mode" = "sta" ] ||
{
182 config_get_bool hidden
"$vif" hidden
0
183 append vif_pre_up
"closed $hidden" "$N"
184 config_get_bool isolate
"$vif" isolate
0
185 append vif_pre_up
"ap_isolate $isolate" "$N"
193 config_get enc
"$vif" encryption
199 config_get key
"$vif" key
201 *shared
*) append vif_do_up
"wepauth 1" "$N";;
202 *) append vif_do_up
"wepauth 0" "$N";;
207 for knr
in 1 2 3 4; do
208 config_get k
"$vif" key
$knr
209 [ -n "$k" ] ||
continue
210 [ "$defkey" = "$knr" ] && def
="=" || def
=""
211 append vif_do_up
"wepkey $def$knr,$k" "$N"
215 *) append vif_do_up
"wepkey =1,$key" "$N";;
220 config_get key
"$vif" key
222 wpa
*+wpa2
*|WPA
*+WPA2
*|
*psk
+*psk2|
*PSK
+*PSK2
) auth
=132; wsec
=6;;
223 wpa2
*|WPA2
*|
*PSK2|
*psk2
) auth
=128; wsec
=4;;
224 *aes|
*AES
) auth
=4; wsec
=4;;
227 eval "${vif}_key=\"\$key\""
228 nasopts
="-k \"\$${vif}_key\""
233 config_get key
"$vif" key
234 config_get server
"$vif" server
235 config_get port
"$vif" port
237 wpa
*+wpa2
*|WPA
*+WPA2
*) auth
=66; wsec
=6;;
238 wpa2
*|WPA2
*) auth
=64; wsec
=4;;
241 eval "${vif}_key=\"\$key\""
242 nasopts
="-r \"\$${vif}_key\" -h $server -p ${port:-1812}"
245 append vif_do_up
"wsec $wsec" "$N"
246 append vif_do_up
"wpa_auth $auth" "$N"
247 append vif_do_up
"wsec_restrict $wsec_r" "$N"
248 append vif_do_up
"eap_restrict $eap_r" "$N"
250 config_get ssid
"$vif" ssid
251 append vif_post_up
"vlan_mode 0" "$N"
252 append vif_post_up
"ssid $ssid" "$N"
253 append vif_do_up
"ssid $ssid" "$N"
255 [ "$mode" = "monitor" ] && {
256 append vif_post_up
"monitor $monitor" "$N"
259 [ "$mode" = "adhoc" ] && {
260 config_get bssid
"$vif" bssid
262 append vif_pre_up
"bssid $bssid" "$N"
263 append vif_pre_up
"ibss_merge 0" "$N"
265 append vif_pre_up
"ibss_merge 1" "$N"
269 append vif_post_up
"enabled 1" "$N"
271 config_get ifname
"$vif" ifname
272 #append if_up "ifconfig $ifname up" ";$N"
275 net_cfg
="$(find_net_config "$vif")"
276 [ -z "$net_cfg" ] ||
{
277 append if_up
"set_wifi_up '$vif' '$ifname'" ";$N"
278 append if_up
"start_net '$ifname' '$net_cfg'" ";$N"
280 [ -z "$nasopts" ] ||
{
281 eval "${vif}_ssid=\"\$ssid\""
283 [ "$mode" = "sta" ] && nas_mode
="-S"
285 nas_cmd
="${nas_cmd:+$nas_cmd$N}start-stop-daemon -S -b -p /var/run/nas.$ifname.pid -x $nas -- -P /var/run/nas.$ifname.pid -H 34954 -i $ifname $nas_mode -m $auth -w $wsec -s \"\$${vif}_ssid\" -g 3600 -F $nasopts"
290 killall
-KILL nas
>&- 2>&-
291 wlc ifname
"$device" stdin
<<EOF
297 ${mssid:+mssid $mssid}
303 rxant ${rxantenna:-3}
304 txant ${txantenna:-3}
305 fragthresh ${frag:-2346}
306 rtsthresh ${rts:-2347}
307 monitor ${monitor:-0}
310 macfilter ${macfilter:-0}
311 maclist ${maclist:-none}
314 country ${country:-US}
315 ${channel:+channel $channel}
316 maxassoc ${maxassoc:-128}
317 slottime ${slottime:--1}
318 ${frameburst:+frameburst $frameburst}
325 wlc ifname
"$device" stdin
<<EOF
329 # use vif_txpower (from last wifi-iface) instead of txpower (from
330 # wifi-device) if the latter does not exist
331 txpower
=${txpower:-$vif_txpower}
332 [ -z "$txpower" ] || iwconfig
$device txpower
${txpower}dBm
341 while grep -qs "^ *wl$((++i)):" /proc
/net
/dev
; do
342 config_get
type wl
${i} type
343 [ "$type" = broadcom
] && continue
345 config wifi-device wl${i}
349 # REMOVE THIS LINE TO ENABLE WIFI:
356 option ssid OpenWrt${i#0}
357 option encryption none