ipconfig.co.uk

Error messages A–Z

Paste the message into your browser's find (Ctrl+F). Each entry names the tool that produces it, the cause, and the page with the full fix.

MessageToolCauseFixMore
An address has not yet been associated with the network endpointipconfig /releaseReleasing an adapter that had no lease (often already on 169.254).Harmless. Run ipconfig /renew.
An attempt was made to access a socket in a way forbidden by its access permissionsWindows server appsThe port is in a Hyper-V/WSL excluded range or reserved by another service.netsh int ipv4 show excludedportrange protocol=tcp.
An error occurred while renewing interface X: The system cannot find the file specifiedipconfig /renewDHCP Client service stopped, or a broken adapter driver.net start dhcp; reinstall the driver; netsh winsock reset.
An error occurred while renewing interface X: unable to contact your DHCP server. Request has timed outipconfig /renewNo DHCP reply within about 60 s.Check link, router, DHCP pool, rogue servers.
bind: Address already in useany serverAnother process owns the port, or it is in TIME_WAIT.Find the owner with ss/netstat/lsof and stop it.
Could not flush the DNS Resolver Cache: Function failed during executionipconfig /flushdnsThe DNS Client (Dnscache) service is disabled.Re-enable it via the registry (Start = 2) and reboot.
Destination host unreachablepingNo ARP reply for a local address, or no route for a remote one.Check the address, mask and gateway; confirm the target is on and on the same subnet.
Destination net unreachablepingA router on the path has no route to that network.Check the address; if correct, the fault is upstream.
Error: Connection activation failed: No suitable device foundnmcli con upThe profile is tied to an interface name or MAC that no longer exists.nmcli con mod "X" connection.interface-name "" or set it to the current name.
Error: Failed to add/activate new connection: 802-11-wireless-security.psk: property is invalidnmcli dev wifi connectPassword shorter than 8 characters or wrong security type.Check the passphrase; for WPA3-only or enterprise networks configure the profile explicitly.
General failure (PING: transmit failed)pingThe local stack could not send: adapter disabled, no address, IPv6 disabled, or a broken filter driver.netsh winsock reset, netsh int ip reset, reboot.
ifconfig: command not foundifconfignet-tools is not installed on modern Linux.Use ip -br addr, or install net-tools.
ifconfig: interface en9 does not existifconfig (macOS/BSD)Wrong interface name.ifconfig -l lists real names.
ifconfig: ioctl (SIOCAIFADDR): permission deniedifconfig (macOS)Not root.Prefix with sudo.
Invalid YAML / Error in network definitionnetplan applyIndentation or key error in /etc/netplan/*.yaml.Two-space indentation, no tabs; netplan --debug generate shows the line.
ip: Cannot find device "eth0"ipInterface name wrong; modern names look like enp3s0.ip link lists names.
ip: RTNETLINK answers: File existsip addr add / ip route addThe address or route already exists.Use ip addr replace / ip route replace, or delete first.
ip: RTNETLINK answers: Network is unreachableip route add default via XThe gateway X is not on any directly connected subnet.Add the interface address first, or add the route with dev and onlink.
ip: RTNETLINK answers: No such processip route delThe route you are deleting does not exist as specified.List with ip route and match exactly (via, dev, metric).
ip: RTNETLINK answers: Operation not permittedipChanging state without root.Prefix with sudo.
Media disconnectedipconfigNo physical link on that adapter.Cable, port, Wi-Fi association, adapter enabled.
Network is unreachable (ping: connect:)ping (Linux)No route for that address family, typically no default route or no IPv6.ip route; add a default route or fix DHCP.
No such device (SIOCSIFADDR)ifconfig (Linux)The interface name does not exist.ip link or ifconfig -a.
Non-existent domain (*** can't find X)nslookupNXDOMAIN: the name does not exist at that resolver.Check spelling; try another resolver; a blocking resolver may return this deliberately.
Operation not permitted (SIOCSIFFLAGS)ifconfig (Linux)Not root.Prefix with sudo.
Packet needs to be fragmented but DF setping -fThe test packet exceeds the path MTU (expected during an MTU test).Reduce the size until it passes; set the MTU accordingly.
Ping request could not find host X. Please check the name and try againping (Windows)DNS resolution failed.nslookup X 1.1.1.1; flush DNS; change resolver.
ping: cannot resolve X: Unknown hostping (macOS)DNS resolution failed.As above.
ping: socket: Operation not permittedping (Linux, containers)The ping binary lacks CAP_NET_RAW.sudo, or setcap cap_net_raw+ep $(which ping).
Query refusednslookup / dig (REFUSED)The server will not answer for you: an authoritative-only server, or ACL.Ask a recursive resolver instead.
Request timed outping (Windows)No reply within the timeout: host off, ICMP blocked, or path broken.Test the service instead of ping; tracert to see where it stops.
Request to UnKnown timed-outnslookupThe resolver did not answer at all.Network problem or dead resolver; try nslookup X 1.1.1.1.
Resetting , failed. Access is deniednetsh int ip resetPermissions on a Nsi registry key.Grant Everyone full control on the key, rerun, revert.
Server failed (SERVFAIL)nslookup / digThe resolver could not get an answer: DNSSEC failure or broken authoritative servers.Try another resolver; dig +trace to find the failing step.
SIOCSIFFLAGS: Cannot assign requested addressifconfig up (Linux Wi-Fi)Radio blocked by rfkill or driver not ready.rfkill list, rfkill unblock wifi, check dmesg.
Temporary failure in name resolutionLinux (any tool)The resolver is unreachable or resolv.conf points nowhere.resolvectl status; cat /etc/resolv.conf; restart systemd-resolved.
The operation failed as no adapter is in the state permissible for this operationipconfig /release, /renew, /renew6No matching adapter is enabled, connected and DHCP-configured.Check the name; confirm DHCP is enabled and the link is up. For /renew6, most home networks use SLAAC, so this is expected.
The parameter is incorrectnetsh interface ip set addressWrong adapter name, or mask/gateway that do not fit the address.netsh interface show interface for names; check the mask.
The requested operation requires elevationipconfig, netsh, routeNot running as administrator.Open an elevated prompt.
The RPC server is unavailableipconfig /renewThe DHCP Client service cannot be reached.Start it, or reboot.
Time to live exceeded / TTL expired in transitping, tracerouteA routing loop.Trace to see the repeating hops; fix the routing on those devices.
user is not in the sudoers filesudo (Linux)Your account cannot use sudo.Log in as root or an admin; add the user to the sudo/wheel group.
Windows has detected an IP address conflictWindows notificationAnother device is using your address.Find it via ARP; fix reservations or the pool.
Wrong subnet / 169.254.x.x address / Autoconfiguration IPv4 AddressipconfigDHCP failed; self-assigned address.Release/renew; check the DHCP server.

Missing one? The troubleshooting playbook is organised by symptom rather than by message, and covers the situations that produce no message at all.

Last reviewed . Command syntax verified against Windows 11, Ubuntu 24.04, macOS 15 and FreeBSD 14 unless noted otherwise.

Spotted a mistake or a switch we have missed? Every page on this site is written to be checked against real output, so please test on your own machine and compare.