Networking

“iwlist wlan0 scan”上的n模式

  • January 30, 2013

我知道如何確定掃描的 AP 使用 B 或 G 模式,但如何知道(使用“iwlist wlan0 scan”)它使用 N 協議?如果我使用“iw dev wlan0 scan”並查看單元是否具有“HT 功能”塊。

好的。“iw dev wlan scan”部分有效,但我無法獲取有關信號質量、通道模式(是主模式還是臨時模式)和安全選項的數據。我需要在一個命令中找到所有安全算法選項。

還有其他選擇嗎?像第三方命令?任何原始碼黑客建議?

沒有其他工具iw可以為您提供更多資訊。iw已經提供了網路驅動程序提供的所有資訊。如果缺少某些資訊,請更新您的網路驅動程序(即您的核心)和/或iw.

iw最新輸出的範例:

BSS 42:42:42:42:42:42 (on w0)
   TSF: 4922636642679 usec (56d, 23:23:56)
   freq: 2437
   beacon interval: 102
   capability: ESS ShortPreamble ShortSlotTime (0x0421)
   signal: -80.00 dBm
   last seen: 600 ms ago
   Information elements from Probe Response frame:
   SSID: bestSSIDevar
   Supported rates: 1.0* 2.0* 5.5* 6.0 9.0 11.0* 12.0 18.0 
   DS Parameter set: channel 6
   TIM: DTIM Count 0 DTIM Period 1 Bitmap Control 0x0 Bitmap[0] 0x0
   ERP: <no flags>
   Extended supported rates: 24.0 36.0 48.0 54.0 

要獲得信號質量,只需查看signal:線路。BSS 的類型在該capability:行中給出:ESS 表示這是更大網路的一部分(因此它是 AP 模式),IBSS 表示網路是獨立的,因此它是 ad-hoc 模式。

安全選項是一種複雜的野獸,在幾個資訊元素中給出。如果您在 中看到Privacycapabilities網路以某種方式受到保護。如果您看到一個RSN資訊元素,那麼……網路受到穩健安全網路協議系列的保護,更通俗地稱為 WPA2。如果您看到一個WPA資訊元素,那麼它就是 WPA1。如果您沒有看到任何RSNWPA資訊元素但有Privacy,那麼它就是舊的 WEP。

這是一個同時支持 WPA 和 RSN 以及 CCMP 和 TKIP(但只有 TKIP 用於組)並使用 IEEE 802.1X(不是 PSK)的網路的片段:

BSS 46:46:46:46:46:46 (on w0)
   TSF: 4923527793080 usec (56d, 23:38:47)
   freq: 2412
   beacon interval: 102
   capability: ESS Privacy ShortPreamble ShortSlotTime (0x0431)
   signal: -59.00 dBm
   last seen: 872 ms ago
   Information elements from Probe Response frame:
   SSID: bestest
   Supported rates: 1.0* 2.0* 5.5* 6.0 9.0 11.0* 12.0 18.0 
   DS Parameter set: channel 1
   TIM: DTIM Count 0 DTIM Period 1 Bitmap Control 0x0 Bitmap[0] 0x0
   ERP: <no flags>
   RSN:     * Version: 1
            * Group cipher: TKIP
            * Pairwise ciphers: TKIP CCMP
            * Authentication suites: IEEE 802.1X
            * Capabilities: 4-PTKSA-RC 4-GTKSA-RC (0x0028)
   Extended supported rates: 24.0 36.0 48.0 54.0 
   WPA:     * Version: 1
            * Group cipher: TKIP
            * Pairwise ciphers: TKIP
            * Authentication suites: IEEE 802.1X
            * Capabilities: (0x0000)

引用自:https://unix.stackexchange.com/questions/63069