Jak mogę sprawdzić, czy moja karta Wi-Fi obsługuje standard 802.11ac?

13

Nie jestem pewien, czy moja karta Wi-Fi obsługuje standard 802.11ac. Jak mogę znaleźć te informacje?

Krogulec
źródło

Odpowiedzi:

20

Jeśli uruchomisz iw list, poszukaj linii określających 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

Ta sekcja będzie całkowicie niedostępna, jeśli twoja karta nie obsługuje standardu 802.11ac.

Dlatego na karcie, która nie obsługuje standardu 802.11ac:

$ iw list | grep VHT

Na karcie, która ma wsparcie 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
Krogulec
źródło
1
Dlaczego zadajesz pytanie i na nie odpowiadasz?
Julie Pelletier
11
@JuliePelletier Ponieważ to pytanie nie było jeszcze w sieci Stack Exchange. Znalezienie rozwiązania zajęło mi trochę czasu, dlatego dzielę się nim z innymi. Zachęcamy również do odpowiedzi na własne pytanie na Stack Exchange.
Sparhawk