I would like to check which 'technology' (a/b/g/n) is currently used by my WiFi card for the connection and to check which standards it can use.
How can I check that ?
EDIT
Alright, I have tried sudo lshw -class network
and I got from that :
*-network
description: Wireless interface
product: AR9287 Wireless Network Adapter (PCI-Express)
vendor: Atheros Communications Inc.
physical id: 0
bus info: pci@0000:03:00.0
logical name: wlan0
version: 01
serial: XX:XX:XX:XX:XX:XX
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=ath9k driverversion=3.2.0-27-generic firmware=N/A ip=192.168.1.108 latency=0 link=yes multicast=yes wireless=IEEE 802.11bgn
resources: irq:17 memory:b5100000-b510ffff
So I can get form that my card's 'possibilities' wireless=IEEE 802.11bgn
but how can I get information about current connection ?
Just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command below:
If you get no response, you may need to install lshw on your system. You can install it by typing:
I donot know if this is what you are looking for but you can get further information regarding wireless connection from
iwconfig
. Just doiwconfig WIRELESS_INTERFACE
e.giwconfig wlan0
. You can also runiwlist WIRELESS_INTERFACE OPTIONS
, see man page ofiwlist
for available options. According to man page they both retrieve information from/proc/net/wireless
Try and do this
It should give you that information.
Cheers
Another option is to use
iwconfig
Can be used without
sudo