Wifi kartımın 802.11ac'ı destekleyip desteklemediğini nasıl bulabilirim?


13

Wifi kartımın 802.11ac'ı destekleyip desteklemediğinden emin değilim. Bu bilgiyi nasıl öğrenebilirim?

Yanıtlar:


20

Eğer koşarsanız iw list, belirten çizgileri arayın 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

Kartınız 802.11ac'i desteklemiyorsa bu bölüm tamamen kaybolacaktır.

Bu nedenle, 802.11ac'i desteklemeyen bir kartta:

$ iw list | grep VHT

Bir kartta o yapar destek 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

1
Neden bir soru sorup cevap veriyorsunuz?
Julie Pelletier

11
@JuliePelletier Çünkü bu soru henüz Stack Exchange ağında değildi. Çözümü bulmam biraz zaman aldı ve ben de başkalarıyla paylaşıyorum. Stack Exchange ile ilgili kendi sorunuza da cevap vermeniz önerilir .
Sparhawk
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.