Labthrift Labthrift What to buy. What to skip. Why.

Written 5 Sep 2026. This is a how-to, not a product card.

When Wake-on-LAN won't wake the computer

You sent the magic packet. Fans stay quiet. Check power, cable, MAC, BIOS, and Wake-on: g before you buy a smart plug.

Haven't turned Wake-on-LAN on yet? That setup is wake the computer from the house network. This note is the failure case: you already sent a packet from a laptop or phone, and the old PC stays dark. Don't open a port on the router for this. Don't buy a KVM for a first closet OptiPlex.

Skip until soft-off is the plan

If you are not sure it is soft-off versus asleep, dead, or unplugged, start with is the computer still on?. If you yanked the power strip, Wake-on-LAN cannot help until wall power is back. If it already answers ping, you don't need this note tonight. SSH fails after wake? when SSH won't connect.

What this is

Wake-on-LAN only works when four things line up: wall power still feeds the NIC, the NIC is listening in soft-off, you used the MAC for that wired port, and the magic packet reaches it on the house network (not Guest Wi-Fi). One miss and the fans stay quiet. The walk below is check power and cable first, then MAC, then BIOS and Wake-on: g.

Step 1: confirm soft-off, not dead power

Look at the case. Soft-off usually means a faint standby LED, or no LED but the PSU switch is still On and the strip is live. Hard-off means the strip is off, the PSU rocker is Off, or the cord is out. Press the front power button once. If it boots from the button, Wake-on-LAN can work in theory. If the button does nothing, fix power first. Leave the wall outlet connected after a clean shutdown:

sudo shutdown -h now

That polite stop is shut down without yanking the plug. Wait until the fans stop before you test a wake.

Step 2: stay on the house network

Send the packet from a laptop or phone on the main house Wi-Fi or a cable into the same router. Guest Wi-Fi often isolates devices and drops the packet. A VPN on the phone can hide you from the LAN too. Turn the VPN off for the test. Don't try this from a coffee shop. The magic packet is a house-network trick.

Step 3: match the wired MAC

Wake-on-LAN wants the ethernet MAC, not the Wi-Fi one. Wrong six pairs is the most common silent fail. Power the computer on with the front button, SSH in, and print interfaces:

ip link show

Find the wired name (enp*, eth0, sometimes eno1). The link/ether line is the MAC. Write those six pairs down again. A case sticker helps only when it matches that wired port. Need a slower walk? see its hardware address. Then shut down cleanly and send with the new MAC:

wakeonlan aa:bb:cc:dd:ee:ff

Swap in your pairs. On a phone, type the same pairs into a simple Wake-on-LAN app on house Wi-Fi.

Step 4: cable and link lights

Prefer a cable from the computer to the router or switch. Wi-Fi wake is flaky on most old machines. After soft-off, many NICs still show a faint link light on the port. No light and no wake often means a bad cable, a dead switch port, or the NIC powered down too hard. Reseat the cable. Try another short patch. Prefer ethernet for the listener: a cable beats Wi-Fi for the old PC.

Step 5: BIOS Wake on LAN and deep sleep

Power on with the front button. Open setup (Dell often F2, HP Esc then F10, Lenovo F1). Confirm Wake on LAN / Wake on LAN from S5 is On. If you see Deep Sleep, ErP, or Extreme Power Saving, turn that Off so the NIC can keep listening. Save and exit. One BIOS pass is enough. Then shut down cleanly and send the packet again.

Step 6: check Wake-on: g in Linux

Power on with the button. SSH in. Install ethtool if needed, then check the wired NIC (swap enp3s0 for yours):

sudo apt update && sudo apt install -y ethtool

ethtool enp3s0 | grep -i wake

You want Wake-on: g. If you see d or an empty wake line, set it:

sudo ethtool -s enp3s0 wol g

Check again. If ethtool refuses, the BIOS switch is still off, or that NIC cannot do Wake-on-LAN. Make the setting survive reboot with the oneshot service on wake the computer from the house network (the wol.service block). Without that, a later reboot can put Wake-on back to d.

Step 7: send once, wait for boot

Shut down cleanly. Send one packet. Wait a full minute for POST and boot on an old disk. Then:

ping -c 3 192.168.1.50

Swap in the computer's number. When ping answers, SSH from the couch. If the address moved after power cycles, reserve it or set a fixed one: keep the computer on the same address on common routers, or give the computer a fixed address when the router won't. Find the number again if needed: find it on the house network.

Step 8: when it still won't wake

Match what you see:

What you seeLikely cause
Front button boots; packet never doesWrong MAC, Guest Wi-Fi, or Wake-on still d. Steps 2โ€“6.
No standby LED; button does nothingStrip, PSU rocker, or cord. Not a Wake-on-LAN problem.
Works once, fails after a later rebootwol.service missing or wrong interface name. Re-check Step 6.
Laptop on Wi-Fi only; desktop has cableSender can be on Wi-Fi. The sleeper wants a cable. Step 4.
Ping answers; SSH still failsIt woke. Fix login separately: when SSH won't connect.

Some Marketplace boards never expose a working Wake-on-LAN. That is a hardware limit, not a reason to buy a smart plug on day one. Leaving the computer on all week is a fine answer for a first house box. Soft-off is optional.

What this is not

This is not remote wake from the internet. It is not a smart-plug shopping list. It is not the fix for a laptop that only slept with the lid closed. That is still don't let the old laptop sleep. It is not a new mini PC because one OptiPlex NIC will not listen in S5.

What next

When the packet works again, keep the setup page bookmarked: wake the computer from the house network. After it boots, confirm the house jobs: after a reboot, check the computer still does its jobs. Prefer a cable for the listener: a cable beats Wi-Fi for the old PC. If you rarely soft-off, leaving it on is fine. Don't open Wake-on-LAN through the router.

Skip

Sources

Debian: ethtool. Ubuntu: ethtool. Debian: wakeonlan. Official pages only. For the calm setup, see wake the computer from the house network. For soft-off vs dead, see is the computer still on?. For the MAC, see see its hardware address.

Also on this topic

Wake the computer from the house networkSoft-off is fine overnight. Wake the old PC from a laptop or phone on the house network so SSH and Pi-hole come back. You don't need a smart plug for this. Is it still on?You left the computer on. This morning ads are back, or SSH hangs. Check if it is awake before you buy anything. Shut down without yanking the plugWhen you're done for the night, shut it down and let it finish writing files before it powers off. Don't yank the cord. See its hardware addressBefore you reserve its number, write down the sticker-like address the router uses to recognize it. A cable beats Wi-Fi for the old PCOnce it is doing real work, plug it into the router with a cable. Skip if it is already on a cable. Don't let the laptop sleepClose the lid. It has to stay awake so SSH and Pi-hole keep working. A desktop can skip this. When SSH won't connectSSH hangs, says connection refused, or Permission denied. Check the computer is on, confirm the address, then the user and password. You don't need a new router or a KVM. After a reboot, check the computer still does its jobsThe computer came back up. Confirm SSH, house ad block, and the file share still work before you buy anything.