Verifying and Troubleshooting
# Overall connectivity status summary
nmcli general status
# Full detail on one device: state, IP config, DNS, routes
nmcli device show eth0
# Show listening and established network sockets
ss -tuln
# Trace the network path to a destination, hop by hop
tracepath example.com
# Watch DNS resolution specifically
getent hosts example.com
Tip — nmcli device show Is the One-Stop Summary — Instead of separately checking ip addr, ip route, and DNS settings, nmcli device show device lays out the full effective configuration for that device in one place.