mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-10 06:04:24 +00:00
24 lines
327 B
Markdown
24 lines
327 B
Markdown
# Iw
|
|
|
|
## TL;DR
|
|
|
|
```sh
|
|
# Scan for available wireless networks.
|
|
iw dev wlp scan
|
|
|
|
# Join an open wireless network.
|
|
iw dev wlp connect SSID
|
|
|
|
# Disconnect from the current network.
|
|
iw dev wlp disconnect
|
|
|
|
# Show information about the current connection.
|
|
iw dev wlp link
|
|
```
|
|
|
|
## Sources
|
|
|
|
- [cheat.sh]
|
|
|
|
[cheat.sh]: https://cheat.sh/iw
|