mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
34 lines
453 B
Markdown
34 lines
453 B
Markdown
# Iw
|
|
|
|
## Table of contents <!-- omit in toc -->
|
|
|
|
1. [TL;DR](#tldr)
|
|
1. [Sources](#sources)
|
|
|
|
## 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]
|
|
|
|
<!--
|
|
References
|
|
-->
|
|
|
|
<!-- Others -->
|
|
[cheat.sh]: https://cheat.sh/iw
|