Como posso descobrir se minha placa wifi suporta 802.11ac?

13

Não tenho certeza se minha placa wifi suporta 802.11ac. Como posso descobrir essas informações?

Sparhawk
fonte

Respostas:

20

Se você executar iw list, procure as linhas especificando VHT.

    VHT Capabilities (0x038071a0):
        Max MPDU length: 3895
        Supported Channel Width: neither 160 nor 80+80
        short GI (80 MHz)
        TX STBC
        SU Beamformee
    VHT RX MCS set:
        1 streams: MCS 0-9
        2 streams: MCS 0-9
        3 streams: not supported
        4 streams: not supported
        5 streams: not supported
        6 streams: not supported
        7 streams: not supported
        8 streams: not supported
    VHT RX highest supported: 0 Mbps
    VHT TX MCS set:
        1 streams: MCS 0-9
        2 streams: MCS 0-9
        3 streams: not supported
        4 streams: not supported
        5 streams: not supported
        6 streams: not supported
        7 streams: not supported
        8 streams: not supported
    VHT TX highest supported: 0 Mbps

Esta seção estará totalmente ausente se o seu cartão não suportar 802.11ac.

Portanto, em um cartão que não suporta 802.11ac:

$ iw list | grep VHT

Em um cartão que faz suporte 802.11ac:

$ iw list | grep VHT
        VHT Capabilities (0x038071a0):
        VHT RX MCS set:
        VHT RX highest supported: 0 Mbps
        VHT TX MCS set:
        VHT TX highest supported: 0 Mbps
Sparhawk
fonte
1
Por que você faz uma pergunta e responde?
Julie Pelletier
11
@JuliePelletier Porque essa pergunta ainda não estava na rede Stack Exchange. Demorei um pouco para encontrar a solução e, portanto, estou compartilhando-a com outras pessoas. Também é recomendável responder à sua própria pergunta no Stack Exchange.
Sparhawk 16/05