📖 ~1 min read
Table of contents
Symptom & Impact
Server boots without IP address, breaking outbound updates and inbound service access.
Environment & Reproduction
Often seen after NIC rename changes or malformed connection profiles.
nmcli device status ; ip -4 addr
Root Cause Analysis
DHCP client requests are not issued due to profile mismatch, disabled autoconnect, or link timing.
Quick Triage
Check link state and NetworkManager journal for DHCP timeout messages.
ethtool eth0 | grep -i 'Link detected' ; sudo journalctl -u NetworkManager -b -n 100
Step-by-Step Diagnosis
Validate active profile, interface binding, and IPv4 method settings.
nmcli -f NAME,UUID,DEVICE,TYPE connection show ; nmcli connection show ; systemctl status NetworkManager

Solution — Primary Fix
Rebind profile to the correct interface and re-enable autoconnect DHCP.
Still having issues? Our Network Design team can diagnose and resolve this for you. Get in touch for a free consultation.
sudo nmcli connection modify connection.autoconnect yes ipv4.method auto ; sudo nmcli connection up ; sudo systemctl restart NetworkManager

Solution — Alternative Approaches
Assign static IP temporarily for critical services while DHCP scope issues are resolved.
Verification & Acceptance Criteria
Host receives expected IP and default route after reboot.
ip -4 addr show ; ip route ; ping -c 3
Rollback Plan
Restore prior connection profile from backup if new settings introduce routing regression.
sudo nmcli connection delete ; sudo nmcli connection import type ifcfg-rh file /root/ifcfg-backup
Prevention & Hardening
Pin connection profiles in automation and monitor DHCP lease renewal failures.
Related Errors & Cross-Refs
Can overlap with firewalld zone mismatch and DNS registration failures after boot.
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
RHEL NetworkManager and nmcli reference for persistent profile management.
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.