Você pode pesquisar a lista de clientes associados usando um dos seguintes comandos:
-
iw dev wlan0 station dump
- > paranl80211/mac80211
drivers compatíveis -
wlc assoclist
- > para proprietáriobroadcom-wl
driver -
iwinfo wlan0 assoclist
- > paralibiwinfo
abstração disponível emOpenWrt
trunk
A julgar por hostapd
em seus registros, o primeiro deve funcionar. Exemplo de saída:
root@OpenWrt ~ # iw dev wlan0 station dump
Station 00:13:02:xx:xx:xx (on wlan0)
inactive time: 0 ms
rx bytes: 21835
rx packets: 152
tx bytes: 19772
tx packets: 100
tx retries: 6
tx failed: 0
signal: -43 dBm
signal avg: -44 dBm
tx bitrate: 36.0 MBit/s
Além disso, o hostapd reporta desconexões (por exemplo, se executado a partir da linha de comando - certamente há uma maneira de colocar isso em logs):
root@OpenWrt ~ # hostapd -P /var/run/wifi-phy0.pid /var/run/hostapd-phy0.conf
Using interface wlan0 with hwaddr 94:0c:6d:xx:xx:xx and ssid 'marvin'
wlan0: STA 00:13:02:xx:xx:xx IEEE 802.11: authenticated
wlan0: STA 00:13:02:xx:xx:xx IEEE 802.11: associated (aid 1)
AP-STA-CONNECTED 00:13:02:xx:xx:xx
wlan0: STA 00:13:02:xx:xx:xx WPA: pairwise key handshake completed (RSN)
(...)
AP-STA-DISCONNECTED 00:13:02:xx:xx:xx
Como alternativa, você pode se conectar a hostapd
através de seu soquete de controle usando wpa-cli
:
root@OpenWrt ~ # wpa_cli -p /var/run/hostapd-phy0
wpa_cli v0.8.x
Copyright (c) 2004-2010, Jouni Malinen <[email protected]> and contributors
This program is free software. You can distribute it and/or modify it
under the terms of the GNU General Public License version 2.
Alternatively, this software may be distributed under the terms of the
BSD license. See README and COPYING for more details.
Selected interface 'wlan0'
Interactive mode
>
(...here client connects...)
<3>AP-STA-CONNECTED 00:13:02:xx:xx:xx
(...and here disconnects...)
<3>AP-STA-DISCONNECTED 00:13:02:xx:xx:xx