mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
18 lines
460 B
Plaintext
18 lines
460 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# wpa_supplicant
|
|
|
|
> Manage protected wireless networks.
|
|
> More information: <https://manned.org/wpa_supplicant.1>.
|
|
|
|
- Join a protected wireless network:
|
|
|
|
`wpa_supplicant -i {{interface}} -c {{path/to/wpa_supplicant_conf.conf}}`
|
|
|
|
- Join a protected wireless network and run it in a daemon:
|
|
|
|
`wpa_supplicant -B -i {{interface}} -c {{path/to/wpa_supplicant_conf.conf}}`
|