π ~1 min read
Table of contents
Symptom & Impact
Network is down after reboot because profile references old interface name.
Environment & Reproduction
Appears after VM hardware changes or BIOS/firmware updates.
ip -br link
nmcli connection show
Root Cause Analysis
NetworkManager keyfile is pinned to an interface that no longer exists.
Quick Triage
Match active device names to configured connections.
nmcli device status
nmcli -f NAME,DEVICE connection show
Step-by-Step Diagnosis
Inspect profile options and udev naming behavior.
nmcli connection show
udevadm test-builtin net_id /sys/class/net/ 2>/dev/null | head

Solution – Primary Fix
Rebind profile to the correct interface and restart NetworkManager.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
nmcli connection modify connection.interface-name
nmcli connection up
systemctl restart NetworkManager

Solution – Alternative Approaches
Create a new profile and migrate IP settings if legacy profile is inconsistent.
nmcli connection add type ethernet ifname con-name prod-lan
Verification & Acceptance Criteria
Interface receives expected IP and default route.
ip addr show
ip route
Rollback Plan
Restore previous keyfile from backup if profile conversion fails.
cp -a /etc/NetworkManager/system-connections /root/nm-backup.$(date +%F)
Prevention & Hardening
Standardize predictable naming and validate interface maps after hardware changes.
journalctl -u NetworkManager -n 100 --no-pager
Related Errors & Cross-Refs
No suitable device found, connection activation failed.
Related tutorial: View the step-by-step tutorial for rhel-10.
View all rhel-10 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
NetworkManager nmcli and RHEL network configuration docs.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.