如何确定我的无线网卡是否支持5GHz?


53

我有

03:00.0 Network controller: Intel Corporation Centrino Wireless-N 2200 (rev c4)

我如何确定该卡/驱动程序是否支持5 GHz?

Answers:


85

通过运行找出接口名称 iwconfig

$ iwconfig
eth0      no wireless extensions.

lo        no wireless extensions.

wlan0     IEEE 802.11bgn  ESSID:"EvanCarroll"  
          Mode:Managed  Frequency:2.437 GHz  Access Point: D8:50:E6:44:B2:C8   
          Bit Rate=19.5 Mb/s   Tx-Power=15 dBm   
          Retry  long limit:7   RTS thr:off   Fragment thr:off
          Power Management:off
          Link Quality=61/70  Signal level=-49 dBm  
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:1  Invalid misc:80   Missed beacon:0

在这种情况下wlan0,然后运行iwlist <interface> freq

$ iwlist wlan0 freq
wlan0     13 channels in total; available frequencies :
          Channel 01 : 2.412 GHz
          Channel 02 : 2.417 GHz
          Channel 03 : 2.422 GHz
          Channel 04 : 2.427 GHz
          Channel 05 : 2.432 GHz
          Channel 06 : 2.437 GHz
          Channel 07 : 2.442 GHz
          Channel 08 : 2.447 GHz
          Channel 09 : 2.452 GHz
          Channel 10 : 2.457 GHz
          Channel 11 : 2.462 GHz
          Channel 12 : 2.467 GHz
          Channel 13 : 2.472 GHz
          Current Frequency:2.437 GHz (Channel 6)

这些通道均不在2.4 GHz之外。它不支持5 GHz。


3
如果您还演示了如何使用该iw工具也很好。我认为其他人可能已过时...
derobert 2014年

7
对。iw phy显示详细功能。除此之外,您还可能会找到5GHz的wifi卡,但驱动程序却没有。

这是否意味着Linux驱动程序不支持它或卡本身不支持?或者换个说法:这是否意味着驱动程序根本不支持它?
Daniele Segato

1
@DanieleSegato我不确定如何回答。整个过程取决于有一张驱动程序不支持的特定频段的卡。那可能存在。然而,这听起来是理论上的,这是另一个问题。
埃文·卡罗尔

1
@colotiline这完全可能是您的wifi驱动程序本身不支持5ghz。我很想知道您向LSPCI的输出,因此您应该问另一个问题。特别是,“ <card>是否在Linux中支持5ghz”
Evan Carroll

1

如果您想发现您的卡所支持的功能,这iw phy是一个不错的解决方案,其中包含很多信息(包括受支持的频段)。

iwlist显示更多在您的区域设置中可用和/或允许的内容,由于DFS频道而被禁用的内容等,而不是您的设备支持的内容。从iwlist手册页:

   freq[uency]/channel
          Give  the  list of available frequencies in the device and the number of defined channels. Please note that usually the
          driver returns the total number of channels and only the frequencies available in the present locale, so  there  is  no
          one-to-one mapping between frequencies displayed and channel numbers.

-1

运行iwconfig时,您将获得以下可能的信息:

  1. 仅IEEE 802.11bgn = 2.4hz
  2. 仅IEEE 802.11gn = 2.4hz
  3. IEEE 802.11agn = 2.4hz + 5hz

3
这只是事实上的错误,因为802.11n / can /支持5ghz,即使规范中并不需要支持5ghz。
埃文·卡罗尔
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.