How to check wifi networking standard of current connection

13

6

Both my router and my wireless networking card support the standards 802.11a/b/g/n but as I'm only getting speeds around 30-40 Mbit/s I suspect that it's the g standard being used instead of n. Now, I'd like to verify this somehow, so my question is: Is there a way (like a network diagnistics tool or the like) to find out which standard is currently used in the communication between computer and router?

yzfr1

Posted 2012-11-18T10:24:40.463

Reputation: 228

Can someone tell me, how to do it on macOS? – Tadej – 2017-02-21T21:30:19.527

what os are you running? – Journeyman Geek – 2012-11-18T11:01:51.903

Instructions for either linux or windows would do, I have computers running Debian Wheezy, Windows XP and Windows 7 – yzfr1 – 2012-11-18T11:04:17.193

Answers

17

On Windows (tested on Win7, should be compatible with Vista back to Windows XP):

C:\Users\kuba>netsh wlan show interfaces

There is 1 interface on the system:

    Name                   : Wireless Network Connection 2
    Description            : DW1520 Wireless-N WLAN Half-Mini Card
    State                  : connected
    Network type           : Infrastructure
    Radio type             : 802.11g         <-- the currently negotiated value
    Authentication         : WPA-Personal
    Cipher                 : CCMP
    Connection mode        : Auto Connect
    Channel                : 11
    Receive rate (Mbps)    : 54
    Transmit rate (Mbps)   : 54
    Signal                 : 82%
    Profile                : xxxx

    Hosted network status  : Not started

On many Linux flavors (including Debian) use iwconfig. Although it doesn't display a string such as "802.11n", it does display Bit Rate:54 Mb/s among other settings.

kubanczyk

Posted 2012-11-18T10:24:40.463

Reputation: 1 108