You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/content.md
+41Lines changed: 41 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1297,6 +1297,47 @@ If you want to forget the saved network so it doesn’t auto-connect again, you
1297
1297
sudo nmcli connection delete <SSID>
1298
1298
```
1299
1299
1300
+
#### WPA2-Enterprise Connections
1301
+
1302
+
To connect to a WPA2-Enterprise network, you need to provide additional authentication configuration. The possible configurations can be complex; please refer to the [official documentation](https://people.freedesktop.org/~lkundrak/nm-dbus-api/nm-settings.html) for a comprehensive list of options.
1303
+
1304
+
For example, here is the configuration for**Eduroam**, an international Wi-Fi roaming service for users in research and education.
1305
+
1306
+
```bash
1307
+
nmcli con add \
1308
+
type wifi \
1309
+
connection.id Eduroam \ # Connection name
1310
+
wifi.ssid eduroam \ # Network Wi-Fi SSID
1311
+
wifi.mode infrastructure \
1312
+
wifi-sec.key-mgmt wpa-eap \
1313
+
802-1x.eap peap \
1314
+
802-1x.phase2-auth mschapv2 \
1315
+
802-1x.identity <your identity>
1316
+
```
1317
+
1318
+
1319
+
1320
+
Here's another example using TTLS authentication with PAP:
If you prefer not to store your password in plain text (especially when it contains special characters), you can use the `--ask` flag to be prompted for the password interactively when connecting:
1336
+
1337
+
```bash
1338
+
nmcli --ask con up <your network name>
1339
+
```
1340
+
1300
1341
#### From the Microcontroller
1301
1342
1302
1343
Since the radio module is connected to the Qualcomm microprocessor, we need the **Bridge** to expose the connectivity to the microcontroller.
0 commit comments