Added iw notes to the knowledge base

This commit is contained in:
Michele Cereda
2022-05-10 09:46:57 +02:00
parent 870deb283e
commit ef8c862436
2 changed files with 33 additions and 0 deletions

23
knowledge base/iw.md Normal file
View File

@@ -0,0 +1,23 @@
# Iw
## TL;DR
```shell
# 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

10
knowledge base/iwlist.md Normal file
View File

@@ -0,0 +1,10 @@
# Iwlist
> Not deprecated, but surpassed many times by [iw].
## TL;DR
```shell
# Scan for networks.
iwlist wlan0 scan
```