From 0eee8f9fe3703fac43e7f4794e2b5886ce6abfb2 Mon Sep 17 00:00:00 2001 From: Fazle Arefin Date: Thu, 7 Mar 2024 04:26:36 +1100 Subject: [PATCH] iwlist: add page (#12460) * iwlist: add page --------- Co-authored-by: Juri Dispan --- pages/linux/iwlist.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/linux/iwlist.md diff --git a/pages/linux/iwlist.md b/pages/linux/iwlist.md new file mode 100644 index 000000000..3803f1f02 --- /dev/null +++ b/pages/linux/iwlist.md @@ -0,0 +1,36 @@ +# iwlist + +> Get detailed information from a wireless interface. +> More information: . + +- Display the list of access points and ad-hoc cells in range: + +`iwlist {{wireless_interface}} scan` + +- Display available frequencies in the device: + +`iwlist {{wireless_interface}} frequency` + +- List the bit-rates supported by the device: + +`iwlist {{wireless_interface}} rate` + +- List the WPA authentication parameters currently set: + +`iwlist {{wireless_interface}} auth` + +- List all the WPA encryption keys set in the device: + +`iwlist {{wireless_interface}} wpakeys` + +- List the encryption key sizes supported and list all the encryption keys set in the device: + +`iwlist {{wireless_interface}} keys` + +- List the various power management attributes and modes of the device: + +`iwlist {{wireless_interface}} power` + +- List generic information elements set in the device (used for WPA support): + +`iwlist {{wireless_interface}} genie`