私のWi-Fiカードが802.11acをサポートしているかどうかを確認するには?

私のWi-Fiカードが802.11acをサポートしているかどうかを確認するには?

私のWi-Fiカードが802.11acをサポートしているかどうかわかりません。この情報をどのように見つけることができますか?

ベストアンサー1

実行すると、iw list指定された行を見つけます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

カードが802.11acをサポートしていない場合、このセクションは完全にありません。

したがって、802.11acをサポートしていないカードの場合:

$ iw list | grep VHT

カードにする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

おすすめ記事