Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion src/config/network/wpa_supplicant.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ $ echo -n <passphrase> | iconv -t utf16le | openssl md4
## WEP

For WEP configuration, add the following lines to your device's
`wpa-supplicant.conf`:
`wpa_supplicant.conf`:

```
network={
Expand All @@ -51,6 +51,19 @@ network={
}
```

## WPA3-SAE

SAE (used for WPA3) can be configured in `wpa_supplicant.conf` as follows:

```
network={
ssid="MYSSID"
key_mgmt=SAE
sae_password="YOUR AP PASSWORD"
ieee80211w=2
}
```

### The wpa_supplicant service

The `wpa_supplicant` service checks the following options in
Expand Down
Loading