11 lines
223 B
Markdown
11 lines
223 B
Markdown
#tldr: show / manipulate wirless devices and their configs.
|
|
|
|
# Commands used:
|
|
- `iw list` shows extensive info about all wirless devices.
|
|
- To check if any devices is AP ready:
|
|
```bash
|
|
iw list | grep -i ap -A 5 -B 5
|
|
```
|
|
|
|
|