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
@@ -1423,6 +1423,47 @@ If you want to forget the saved network so it doesn’t auto-connect again, you
1423
1423
sudo nmcli connection delete <SSID>
1424
1424
```
1425
1425
1426
+
#### WPA2-Enterprise Connections
1427
+
1428
+
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.
1429
+
1430
+
For example, here is the configuration for**Eduroam**, an international Wi-Fi roaming service for users in research and education.
1431
+
1432
+
```bash
1433
+
nmcli con add \
1434
+
type wifi \
1435
+
connection.id Eduroam \ # Connection name
1436
+
wifi.ssid eduroam \ # Network Wi-Fi SSID
1437
+
wifi.mode infrastructure \
1438
+
wifi-sec.key-mgmt wpa-eap \
1439
+
802-1x.eap peap \
1440
+
802-1x.phase2-auth mschapv2 \
1441
+
802-1x.identity <your identity>
1442
+
```
1443
+
1444
+
1445
+
1446
+
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:
1462
+
1463
+
```bash
1464
+
nmcli --ask con up <your network name>
1465
+
```
1466
+
1426
1467
#### From the Microcontroller
1427
1468
1428
1469
Since the radio module is connected to the Qualcomm microprocessor, we need the **Bridge** to expose the connectivity to the microcontroller.
0 commit comments