Hi, I’m the Toradex AI Assistant. The Toradex Support team will follow up with you shortly!
Did you like my answer?
The issue you’re facing with the uap0
interface being marked as “unmanaged” in nmcli
is preventing you from setting up a Wi-Fi access point on your Verdin iMX8MP device. To resolve this, you need to ensure that NetworkManager is configured to manage the uap0
interface. Here are some steps you can take:
-
Check NetworkManager Configuration:
- Open the NetworkManager configuration file, typically located at
/etc/NetworkManager/NetworkManager.conf
. - Ensure that the
uap0
interface is not listed under theunmanaged-devices
section. If it is, remove it from that list.
- Open the NetworkManager configuration file, typically located at
-
Restart NetworkManager:
- After making changes to the configuration file, restart the NetworkManager service to apply the changes:
sudo systemctl restart NetworkManager
- After making changes to the configuration file, restart the NetworkManager service to apply the changes:
-
Verify Interface Management:
- Run
nmcli device
again to check if theuap0
interface is now managed.
- Run
-
Recreate the Wi-Fi Connection:
- If the interface is now managed, try recreating the Wi-Fi connection:
nmcli con add type wifi ifname uap0 mode ap con-name torizon ssid torizon
- If the interface is now managed, try recreating the Wi-Fi connection:
-
Activate the Connection:
- Attempt to bring up the connection again:
nmcli con up torizon
- Attempt to bring up the connection again:
By ensuring that the uap0
interface is managed by NetworkManager, you should be able to set up the access point successfully. If the issue persists, double-check the configuration and ensure there are no other settings or scripts that might be overriding the management of the uap0
interface.
Please, also check if these links can help you solve your problem: