1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/wpa_cli.md
2016-01-08 09:38:59 +01:00

25 lines
416 B
Markdown

# wpa_cli
> Add and configure wlan interfaces.
- Scan for available networks:
`wpa_cli scan`
`wpa_cli scan_results`
- Add a network:
`wpa_cli add_network {{number}}`
- Configure the network, e.g. set SSID and passkey:
`wpa_cli set_network {{number}} ssid {{SSID}}`
`wpa_cli set_network {{number}} psk {{passkey}}`
- Enable network:
`wpa_cli enable_network {{number}}`
- Save config:
`wpa_cli save_config`