2 append DRIVERS
"atheros"
7 local adhoc ahdemo sta ap monitor
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
71 config_get regdomain
"$device" regdomain
72 [ -n "$regdomain" ] && echo "$regdomain" > /proc
/sys
/dev
/$device/regdomain
74 config_get country
"$device" country
75 [ -z "$country" ] && country
="0"
76 echo "$country" > /proc
/sys
/dev
/$device/countrycode
78 config_get_bool outdoor
"$device" outdoor
"0"
79 echo "$outdoor" > /proc
/sys
/dev
/$device/outdoor
81 config_get channel
"$device" channel
82 config_get vifs
"$device" vifs
83 config_get txpower
"$device" txpower
85 [ auto
= "$channel" ] && channel
=0
87 config_get_bool antdiv
"$device" diversity
88 config_get antrx
"$device" rxantenna
89 config_get anttx
"$device" txantenna
90 config_get_bool softled
"$device" softled
1
92 devname
="$(cat /proc/sys/dev/$device/dev_name)"
95 NanoStation2
) antgpio
=7;;
96 NanoStation5
) antgpio
=1;;
98 if [ -n "$antgpio" ]; then
100 config_get antenna
"$device" antenna
102 external
) antdiv
=0; antrx
=1; anttx
=1 ;;
103 horizontal
) antdiv
=0; antrx
=1; anttx
=1 ;;
104 vertical
) antdiv
=0; antrx
=2; anttx
=2 ;;
105 auto
) antdiv
=1; antrx
=0; anttx
=0 ;;
108 [ -x "$(which gpioctl 2>/dev/null)" ] || antenna
=
110 horizontal|vertical|auto
)
111 gpioctl
"dirout" "$antgpio" >/dev
/null
2>&1
112 gpioctl
"set" "$antgpio" >/dev
/null
2>&1
115 gpioctl
"dirout" "$antgpio" >/dev
/null
2>&1
116 gpioctl
"clear" "$antgpio" >/dev
/null
2>&1
121 [ -n "$antdiv" ] && sysctl
-w dev.
"$device".diversity
="$antdiv" >&-
122 [ -n "$antrx" ] && sysctl
-w dev.
"$device".rxantenna
="$antrx" >&-
123 [ -n "$anttx" ] && sysctl
-w dev.
"$device".txantenna
="$anttx" >&-
124 [ -n "$softled" ] && sysctl
-w dev.
"$device".softled
="$softled" >&-
126 config_get distance
"$device" distance
127 [ -n "$distance" ] && sysctl
-w dev.
"$device".distance
="$distance" >&-
130 local start_hostapd
= vif_txpower
= nosbeacon
=
131 config_get ifname
"$vif" ifname
132 config_get enc
"$vif" encryption
133 config_get eap_type
"$vif" eap_type
134 config_get mode
"$vif" mode
137 sta
) config_get_bool nosbeacon
"$device" nosbeacon
;;
138 adhoc
) config_get_bool nosbeacon
"$vif" sw_merge
1;;
141 [ "$nosbeacon" = 1 ] || nosbeacon
=""
142 ifname
=$
(wlanconfig
"$ifname" create wlandev
"$device" wlanmode
"$mode" ${nosbeacon:+nosbeacon})
144 echo "enable_atheros($device): Failed to set up $mode vif $ifname" >&2
147 config_set
"$vif" ifname
"$ifname"
149 config_get hwmode
"$device" hwmode
150 [ -z "$hwmode" ] && config_get hwmode
"$device" mode
156 *g
) hwmode
=11g
; pureg
=1;;
164 iwpriv
"$ifname" mode
"$hwmode"
165 iwpriv
"$ifname" pureg
"$pureg"
167 iwconfig
"$ifname" channel
"$channel" >/dev
/null
2>/dev
/null
169 config_get_bool hidden
"$vif" hidden
0
170 iwpriv
"$ifname" hide_ssid
"$hidden"
172 config_get ff
"$vif" ff
173 if [ -n "$ff" ]; then
174 iwpriv
"$ifname" ff
"$ff"
177 config_get wds
"$vif" wds
179 1|on|enabled
) wds
=1;;
182 iwpriv
"$ifname" wds
"$wds" >/dev
/null
2>&1
184 [ "$mode" = ap
-a "$wds" = 1 ] && {
185 config_get_bool wdssep
"$vif" wdssep
1
186 [ -n "$wdssep" ] && iwpriv
"$ifname" wdssep
"$wdssep"
191 for idx
in 1 2 3 4; do
192 config_get key
"$vif" "key${idx}"
193 iwconfig
"$ifname" enc
"[$idx]" "${key:-off}"
195 config_get key
"$vif" key
198 [1234]) iwconfig
"$ifname" enc
"[$key]";;
199 *) iwconfig
"$ifname" enc
"$key";;
204 config_get key
"$vif" key
210 config_get addr
"$vif" bssid
212 iwconfig
"$ifname" ap
"$addr"
217 config_get_bool bgscan
"$vif" bgscan
218 [ -n "$bgscan" ] && iwpriv
"$ifname" bgscan
"$bgscan"
220 config_get rate
"$vif" rate
221 [ -n "$rate" ] && iwconfig
"$ifname" rate
"${rate%%.*}"
223 config_get mcast_rate
"$vif" mcast_rate
224 [ -n "$mcast_rate" ] && iwpriv
"$ifname" mcast_rate
"${mcast_rate%%.*}"
226 config_get frag
"$vif" frag
227 [ -n "$frag" ] && iwconfig
"$ifname" frag
"${frag%%.*}"
229 config_get rts
"$vif" rts
230 [ -n "$rts" ] && iwconfig
"$ifname" rts
"${rts%%.*}"
232 config_get_bool comp
"$vif" compression
0
233 iwpriv
"$ifname" compression
"$comp" >/dev
/null
2>&1
235 config_get_bool minrate
"$vif" minrate
236 [ -n "$minrate" ] && iwpriv
"$ifname" minrate
"$minrate"
238 config_get_bool maxrate
"$vif" maxrate
239 [ -n "$maxrate" ] && iwpriv
"$ifname" maxrate
"$maxrate"
241 config_get_bool burst
"$vif" bursting
242 [ -n "$burst" ] && iwpriv
"$ifname" burst
"$burst"
244 config_get_bool wmm
"$vif" wmm
245 [ -n "$wmm" ] && iwpriv
"$ifname" wmm
"$wmm"
247 config_get_bool xr
"$vif" xr
248 [ -n "$xr" ] && iwpriv
"$ifname" xr
"$xr"
250 config_get_bool
ar "$vif" ar
251 [ -n "$ar" ] && iwpriv
"$ifname" ar "$ar"
253 config_get_bool beacon_power
"$vif" beacon_power
254 [ -n "$beacon_power" ] && iwpriv
"$ifname" beacon_pwr
"$beacon_power"
256 config_get_bool doth
"$vif" doth
0
257 [ -n "$doth" ] && iwpriv
"$ifname" doth
"$doth"
259 config_get_bool probereq
"$vif" probereq
260 [ -n "$probereq" ] && iwpriv
"$ifname" probereq
"$probereq"
262 config_get maclist
"$vif" maclist
263 [ -n "$maclist" ] && {
265 iwpriv
"$ifname" maccmd
3
266 for mac
in $maclist; do
267 iwpriv
"$ifname" addmac
"$mac"
271 config_get macpolicy
"$vif" macpolicy
274 iwpriv
"$ifname" maccmd
1
277 iwpriv
"$ifname" maccmd
2
280 # default deny policy if mac list exists
281 [ -n "$maclist" ] && iwpriv
"$ifname" maccmd
2
285 ifconfig
"$ifname" up
288 net_cfg
="$(find_net_config "$vif")"
289 [ -z "$net_cfg" ] ||
{
290 bridge
="$(bridge_interface "$net_cfg")"
291 config_set
"$vif" bridge
"$bridge"
292 start_net
"$ifname" "$net_cfg"
295 config_get ssid
"$vif" ssid
297 iwconfig
"$ifname" essid on
298 iwconfig
"$ifname" essid
"$ssid"
301 set_wifi_up
"$vif" "$ifname"
303 # TXPower settings only work if device is up already
304 # while atheros hardware theoretically is capable of per-vif (even per-packet) txpower
305 # adjustment it does not work with the current atheros hal/madwifi driver
307 config_get vif_txpower
"$vif" txpower
308 # use vif_txpower (from wifi-iface) instead of txpower (from wifi-device) if
309 # the latter doesn't exist
310 txpower
="${txpower:-$vif_txpower}"
311 [ -z "$txpower" ] || iwconfig
"$ifname" txpower
"${txpower%%.*}"
315 config_get_bool isolate
"$vif" isolate
0
316 iwpriv
"$ifname" ap_bridge
"$((isolate^1))"
318 if [ -n "$start_hostapd" ] && eval "type hostapd_setup_vif" 2>/dev
/null
>/dev
/null
; then
319 hostapd_setup_vif
"$vif" madwifi ||
{
320 echo "enable_atheros($device): Failed to set up hostapd for interface $ifname" >&2
321 # make sure this wifi interface won't accidentally stay open without encryption
322 ifconfig
"$ifname" down
323 wlanconfig
"$ifname" destroy
329 if eval "type wpa_supplicant_setup_vif" 2>/dev
/null
>/dev
/null
; then
330 wpa_supplicant_setup_vif
"$vif" madwifi ||
{
331 echo "enable_atheros($device): Failed to set up wpa_supplicant for interface $ifname" >&2
332 ifconfig
"$ifname" down
333 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
] && continue
359 config wifi-device $dev
363 # REMOVE THIS LINE TO ENABLE WIFI:
371 option encryption none