Skip to content

Commit 66dfcf9

Browse files
committed
installation/live-images/guide.md: add WPA3/SAE info
1 parent 6d67de0 commit 66dfcf9

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

src/config/network/wpa_supplicant.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ $ echo -n <passphrase> | iconv -t utf16le | openssl md4
3939
## WEP
4040

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

4444
```
4545
network={
@@ -51,6 +51,19 @@ network={
5151
}
5252
```
5353

54+
## SAE
55+
56+
SAE (used for WPA3) can be configured in `wpa_supplicant.conf` as follows:
57+
58+
```
59+
network={
60+
ssid="MYSSID"
61+
key_mgmt=SAE
62+
sae_password="YOUR AP PASSWORD"
63+
ieee80211w=2
64+
}
65+
```
66+
5467
### The wpa_supplicant service
5568

5669
The `wpa_supplicant` service checks the following options in

src/installation/live-images/guide.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,10 @@ Select your primary network interface. If you do not choose to use DHCP, you
4040
will be prompted to provide an IP address, gateway, and DNS servers.
4141

4242
If you choose a wireless network interface, you will be prompted to provide the
43-
SSID, encryption type (`wpa` or `wep`), and password. If `void-installer` fails
44-
to connect to your network, you may need to exit the installer and configure it
45-
manually using [wpa_supplicant](../../config/network/wpa_supplicant.md) and
43+
SSID, encryption type (`wpa`, `wep`, or `sae`), and password. If
44+
`void-installer` fails to connect to your network, you may need to exit the
45+
installer and configure it manually using
46+
[wpa_supplicant](../../config/network/wpa_supplicant.md) and
4647
[dhcpcd](../../config/network/index.md#dhcpcd) before continuing.
4748

4849
## Source

0 commit comments

Comments
 (0)