web-dev-qa-db-ja.com

OpenWrtロギング:「wifi認証解除」を見つける方法

誰かがwifiを使い始めたら、logreadでそれを見ることができます:

Jan 23 21:04:47 router daemon.info hostapd: wlan0: STA XX:XX:XX:XX:XX:XX IEEE 802.11: authenticated

しかし、彼/彼女が切断していることをどうやって見ることができますか? logreadには「bla-bladeauthenticatedbla」行はなく、誰かが切断されたことを示すものさえありません。

グーグルしようとしました:
http://wiki.openwrt.org/doc/uci/system
しかし、ログレベルについては記述していません。

誰かがwifiをルーターから切断していることを知る方法を教えてもらえますか?誰かが切断しても、logreadは行を書き込みません。

助けてください!!それは重要です!
ありがとうございました!:\

3
LanceBaynes

次のいずれかのコマンドから、関連するクライアントのリストをポーリングできます。

  • iw dev wlan0 station dump-> nl80211/mac80211互換ドライバーの場合

  • wlc assoclist->独自仕様のbroadcom-wlドライバー用

  • iwinfo wlan0 assoclist-> libiwinfoトランクで利用可能なOpenWrt抽象化用

ログのhostapdで判断すると、最初のログが機能するはずです。出力例:

   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

また、hostapdは切断を報告します(たとえば、コマンドラインから実行した場合-これをログに記録する方法は確かにあります):

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

または、wpa-cliを使用して制御ソケット経由でhostapdに接続することもできます。

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
4
koniu