mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# iwlist
|
|
|
|
> Get detailed information from a wireless interface.
|
|
> More information: <https://manned.org/iwlist>.
|
|
|
|
- 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`
|