2018-09-16 09:51:20 +00:00
|
|
|
# iw
|
|
|
|
|
|
|
|
> Show and manipulate wireless devices.
|
2024-10-12 06:43:55 -04:00
|
|
|
> See also: `iw dev`.
|
|
|
|
> More information: <https://wireless.docs.kernel.org/en/latest/en/users/documentation/iw.html>.
|
2018-09-16 09:51:20 +00:00
|
|
|
|
|
|
|
- Scan for available wireless networks:
|
|
|
|
|
|
|
|
`iw dev {{wlp}} scan`
|
|
|
|
|
|
|
|
- Join an open wireless network:
|
|
|
|
|
|
|
|
`iw dev {{wlp}} connect {{SSID}}`
|
|
|
|
|
|
|
|
- Close the current connection:
|
|
|
|
|
|
|
|
`iw dev {{wlp}} disconnect`
|
|
|
|
|
|
|
|
- Show information about the current connection:
|
|
|
|
|
|
|
|
`iw dev {{wlp}} link`
|
2024-10-12 06:43:55 -04:00
|
|
|
|
|
|
|
- List all physical and logical wireless network interfaces:
|
|
|
|
|
|
|
|
`iw dev`
|
|
|
|
|
|
|
|
- List all wireless capabilities for all physical hardware interfaces:
|
|
|
|
|
|
|
|
`iw phy`
|
|
|
|
|
|
|
|
- List the kernel's current wireless regulatory domain information:
|
|
|
|
|
|
|
|
`iw reg get`
|
|
|
|
|
|
|
|
- Display help for all commands:
|
|
|
|
|
|
|
|
`iw help`
|