2 append DRIVERS
"atheros"
9 config_get vifs
"$device" vifs
12 config_get ifname
"$vif" ifname
13 config_set
"$vif" ifname
"${ifname:-ath}"
15 config_get mode
"$vif" mode
17 adhoc|ahdemo|sta|ap|monitor
)
21 config_get ssid
"$vif" ssid
22 [ -z "$ssid" ] && continue
24 config_set
"$vif" wds
1
25 config_set
"$vif" mode sta
28 ${addr:+append $mode "$vif"}
30 *) echo "$device($vif): Invalid mode, ignored."; continue;;
34 case "${adhoc:+1}:${sta:+1}:${ap:+1}" in
35 # valid mode combinations
38 :1:1)config_set
"$device" nosbeacon
1;; # AP+STA, can't use beacon timers for STA
42 *) echo "$device: Invalid mode combination in config"; return 1;;
45 config_set
"$device" vifs
"${sta:+$sta }${ap:+$ap }${adhoc:+$adhoc }${ahdemo:+$ahdemo }${wds:+$wds }${monitor:+$monitor}"
52 set_wifi_down
"$device"
57 grep "$device" "$dev/%parent" >/dev
/null
2>/dev
/null
&& {
58 [ -f "/var/run/wifi-${dev}.pid" ] &&
59 kill "$(cat "/var
/run
/wifi-
${dev}.pid
")"
62 wlanconfig
"$dev" destroy
70 # Can only set the country code to one setting for the entire system. The last country code is the one that will be applied.
71 config_get country
"$device" country
72 [ -z "$country" ] && country
="0"
74 [ -e /proc
/sys
/dev
/$device/countrycode
] && cc
="$(cat /proc/sys/dev/$device/countrycode)"
75 if [ ! "$cc" = "$country" ] ; then
77 insmod ath_pci countrycode
=$country
79 config_get channel
"$device" channel
80 config_get vifs
"$device" vifs
81 config_get txpower
"$device" txpower
83 [ auto
= "$channel" ] && channel
=0
87 local start_hostapd vif_txpower
89 config_get ifname
"$vif" ifname
90 config_get enc
"$vif" encryption
91 config_get eap_type
"$vif" eap_type
92 config_get mode
"$vif" mode
95 sta
) config_get nosbeacon
"$device" nosbeacon
;;
96 adhoc
) config_get nosbeacon
"$vif" sw_merge
;;
99 config_get ifname
"$vif" ifname
100 ifname
=$
(wlanconfig
"$ifname" create wlandev
"$device" wlanmode
"$mode" ${nosbeacon:+nosbeacon})
102 echo "enable_atheros($device): Failed to set up $mode vif $ifname" >&2
105 config_set
"$vif" ifname
"$ifname"
107 # only need to change freq band and channel on the first vif
108 config_get hwmode
"$device" hwmode
109 [ -z "$hwmode" ] && config_get hwmode
"$device" mode
115 *g
) hwmode
=11g
; pureg
=1;;
123 iwpriv
"$ifname" mode
"$hwmode"
124 iwpriv
"$ifname" pureg
"$pureg"
126 [ "$first" = 1 ] && {
127 iwconfig
"$ifname" channel
"$channel" >/dev
/null
2>/dev
/null
130 config_get_bool hidden
"$vif" hidden
0
131 iwpriv
"$ifname" hide_ssid
"$hidden"
133 config_get ff
"$vif" ff
134 if [ -n "$ff" ]; then
135 iwpriv
"$ifname" ff
"$ff"
138 config_get wds
"$vif" wds
140 1|on|enabled
) wds
=1;;
143 iwpriv
"$ifname" wds
"$wds"
145 [ "$mode" = ap
-a "$wds" = 1 ] && {
146 config_get_bool wdssep
"$vif" wdssep
1
147 [ -n "$wdssep" ] && iwpriv
"$ifname" wdssep
"$wdssep"
152 for idx
in 1 2 3 4; do
153 config_get key
"$vif" "key${idx}"
154 iwconfig
"$ifname" enc
"[$idx]" "${key:-off}"
156 config_get key
"$vif" key
159 [1234]) iwconfig
"$ifname" enc
"[$key]";;
160 *) iwconfig
"$ifname" enc
"$key";;
165 config_get key
"$vif" key
171 config_get addr
"$vif" bssid
173 iwconfig
"$ifname" ap
"$addr"
177 config_get ssid
"$vif" ssid
179 config_get_bool bgscan
"$vif" bgscan
180 [ -n "$bgscan" ] && iwpriv
"$ifname" bgscan
"$bgscan"
182 config_get_bool antdiv
"$device" diversity
183 config_get antrx
"$device" rxantenna
184 config_get anttx
"$device" txantenna
185 config_get_bool softled
"$device" softled
1
187 devname
="$(cat /proc/sys/dev/$device/dev_name)"
190 NanoStation2
) antgpio
=7;;
191 NanoStation5
) antgpio
=1;;
193 if [ -n "$antgpio" ]; then
195 config_get antenna
"$device" antenna
197 external
) antdiv
=0; antrx
=1; anttx
=1 ;;
198 horizontal
) antdiv
=0; antrx
=1; anttx
=1 ;;
199 vertical
) antdiv
=0; antrx
=2; anttx
=2 ;;
200 auto
) antdiv
=1; antrx
=0; anttx
=0 ;;
203 [ -x "$(which gpioctl 2>/dev/null)" ] || antenna
=
205 horizontal|vertical|auto
)
206 gpioctl
"dirout" "$antgpio" >/dev
/null
2>&1
207 gpioctl
"set" "$antgpio" >/dev
/null
2>&1
210 gpioctl
"dirout" "$antgpio" >/dev
/null
2>&1
211 gpioctl
"clear" "$antgpio" >/dev
/null
2>&1
216 [ -n "$antdiv" ] && sysctl
-w dev.
"$device".diversity
="$antdiv" >&-
217 [ -n "$antrx" ] && sysctl
-w dev.
"$device".rxantenna
="$antrx" >&-
218 [ -n "$anttx" ] && sysctl
-w dev.
"$device".txantenna
="$anttx" >&-
219 [ -n "$softled" ] && sysctl
-w dev.
"$device".softled
="$softled" >&-
221 config_get distance
"$device" distance
222 [ -n "$distance" ] && athctrl
-i "$device" -d "$distance" >&-
224 config_get rate
"$vif" rate
225 [ -n "$rate" ] && iwconfig
"$ifname" rate
"${rate%%.*}"
227 config_get mcast_rate
"$vif" mcast_rate
228 [ -n "$mcast_rate" ] && iwpriv
"$ifname" mcast_rate
"${mcast_rate%%.*}"
230 config_get frag
"$vif" frag
231 [ -n "$frag" ] && iwconfig
"$ifname" frag
"${frag%%.*}"
233 config_get rts
"$vif" rts
234 [ -n "$rts" ] && iwconfig
"$ifname" rts
"${rts%%.*}"
236 config_get_bool comp
"$vif" compression
237 [ -n "$comp" ] && iwpriv
"$ifname" compression
"$comp"
239 config_get_bool minrate
"$vif" minrate
240 [ -n "$minrate" ] && iwpriv
"$ifname" minrate
"$minrate"
242 config_get_bool maxrate
"$vif" maxrate
243 [ -n "$maxrate" ] && iwpriv
"$ifname" maxrate
"$maxrate"
245 config_get_bool burst
"$vif" bursting
246 [ -n "$burst" ] && iwpriv
"$ifname" burst
"$burst"
248 config_get_bool wmm
"$vif" wmm
249 [ -n "$wmm" ] && iwpriv
"$ifname" wmm
"$wmm"
251 config_get_bool xr
"$vif" xr
252 [ -n "$xr" ] && iwpriv
"$ifname" xr
"$xr"
254 config_get_bool
ar "$vif" ar
255 [ -n "$ar" ] && iwpriv
"$ifname" ar "$ar"
257 config_get_bool turbo
"$vif" turbo
258 [ -n "$turbo" ] && iwpriv
"$ifname" turbo
"$turbo"
260 config_get_bool doth
"$vif" doth
0
261 [ -n "$doth" ] && iwpriv
"$ifname" doth
"$doth"
263 config_get_bool probereq
"$vif" probereq
264 [ -n "$probereq" ] && iwpriv
"$ifname" probereq
"$probereq"
266 config_get maclist
"$vif" maclist
267 [ -n "$maclist" ] && {
269 iwpriv
"$ifname" maccmd
3
270 for mac
in $maclist; do
271 iwpriv
"$ifname" addmac
"$mac"
275 config_get macpolicy
"$vif" macpolicy
278 iwpriv
"$ifname" maccmd
1
281 iwpriv
"$ifname" maccmd
2
284 # default deny policy if mac list exists
285 [ -n "$maclist" ] && iwpriv
"$ifname" maccmd
2
289 ifconfig
"$ifname" up
292 net_cfg
="$(find_net_config "$vif")"
293 [ -z "$net_cfg" ] ||
{
294 bridge
="$(bridge_interface "$net_cfg")"
295 config_set
"$vif" bridge
"$bridge"
296 start_net
"$ifname" "$net_cfg"
298 [ -n "$ssid" ] && iwconfig
"$ifname" essid on
299 iwconfig
"$ifname" essid
"$ssid"
300 set_wifi_up
"$vif" "$ifname"
302 # TXPower settings only work if device is up already
303 # while atheros hardware theoretically is capable of per-vif (even per-packet) txpower
304 # adjustment it does not work with the current atheros hal/madwifi driver
306 config_get vif_txpower
"$vif" txpower
307 # use vif_txpower (from wifi-iface) instead of txpower (from wifi-device) if
308 # the latter doesn't exist
309 txpower
="${txpower:-$vif_txpower}"
310 [ -z "$txpower" ] || iwconfig
"$ifname" txpower
"${txpower%%.*}"
314 config_get_bool isolate
"$vif" isolate
0
315 iwpriv
"$ifname" ap_bridge
"$((isolate^1))"
317 if [ -n "$start_hostapd" ] && eval "type hostapd_setup_vif" 2>/dev
/null
>/dev
/null
; then
318 hostapd_setup_vif
"$vif" madwifi ||
{
319 echo "enable_atheros($device): Failed to set up hostapd for interface $ifname" >&2
320 # make sure this wifi interface won't accidentally stay open without encryption
321 ifconfig
"$ifname" down
322 wlanconfig
"$ifname" destroy
328 if eval "type wpa_supplicant_setup_vif" 2>/dev
/null
>/dev
/null
; then
329 wpa_supplicant_setup_vif
"$vif" madwifi ||
{
330 echo "enable_atheros($device): Failed to set up wpa_supplicant for interface $ifname" >&2
331 ifconfig
"$ifname" down
332 wlanconfig
"$ifname" destroy
346 for dev
in $
(ls -d wifi
* 2>&-); do
347 config_get
type "$dev" type
348 devname
="$(cat /proc/sys/dev/$dev/dev_name)"
352 # Ubiquiti NanoStation features
353 option antenna auto # (auto|horizontal|vertical|external)
357 [ "$type" = atheros
] && return
359 config wifi-device $dev
363 # REMOVE THIS LINE TO ENABLE WIFI:
371 option encryption none