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

Written 28 Aug 2026. This is a how-to, not a product card. Buy links are not tagged yet.

Keep leftover-box Wi-Fi off after a reboot

After the cable works, stop leftover-box Wi-Fi from coming back so the leftover box keeps one address. You do not need a new router.

You plugged the cable. SSH from the couch worked. Then the leftover box rebooted for weekly fixes, and leftover-box Wi-Fi woke up again. Now the leftover box has two numbers: one on the cable, one on the radio. SSH hangs. Pi-hole is flaky. That is not a broken router. The leftover box is answering on two doors. You are not buying a mesh kit for this.

Skip until the cable works

If the leftover box is still only on house Wi-Fi, stop. Plug a cable first: a cable beats Wi-Fi for the leftover box. That note also turns the radio off for this session, as a check. This note is the next step: make that stay off after a reboot. If you cannot log in from the couch, that is SSH from the couch. Skip this note if the leftover is a desktop or OptiPlex with no Wi-Fi radio.

What this is

The one-session off in a cable beats Wi-Fi for the leftover box is sudo ip link set wlan0 down. That lasts until the leftover box reboots. After a reboot, leftover-box Wi-Fi often comes back by itself. Two numbers is how people lose SSH, and how a DHCP reservation on the cable address looks like it failed. This look asks leftover-box Wi-Fi to stay off.

See if leftover-box Wi-Fi is even there

SSH in from the couch, then ask:

ip -br link

Look for a line whose name starts with wlan or wlp. That is leftover-box Wi-Fi. The cable line often starts with en or is named eth0. If you see no radio line, you are done. A leftover desktop can skip the rest.

Turn it off so it stays off

Ask whether the leftover box has NetworkManager:

command -v nmcli

If that prints a path, turn leftover-box Wi-Fi off this way. It usually survives a reboot:

nmcli radio wifi off

Then confirm:

nmcli radio

You want the WIFI line to say disabled or off.

If nmcli is missing, use rfkill instead. rfkill is the leftover-box radio switch. On Debian and Ubuntu, that block usually survives a reboot:

sudo rfkill block wifi

Then confirm:

rfkill

The Wi-Fi (wlan) line should say Soft blocked. If the leftover box only understands the older list command:

rfkill list

Confirm the cable is the only door

Ask again:

ip -br link

The radio line should say DOWN. The cable line should stay UP. Then check the leftover box still has one house number:

hostname -I

You want one 192.168.… or 10.… address, not two. If SSH from the couch still works after that, you are done. Do not reboot just to prove it tonight. The next leftover-box reboot (weekly fixes, or after a reboot, check the leftover box still does its jobs) is the real test. After that reboot, run ip -br link again. The radio should still be DOWN.

If leftover-box Wi-Fi comes back anyway

Some leftover laptops turn the radio back on after a reboot. Try the other command from the pair above (nmcli if you used rfkill, or rfkill if you used nmcli). Then check again. Do not blacklist kernel modules tonight. Do not buy a new router because the leftover box grew a second number.

What next

Write down the leftover box's one remaining number: see the leftover box's address on the house network. Then keep that number: keep the leftover box on the same number. Cable speed stays see how fast the leftover-box cable is talking. Skip a mesh kit and a new router for this look.

Skip

Sources

Debian: nmcli. Ubuntu: nmcli. Debian: rfkill (block wifi). Ubuntu: rfkill. Debian: ip-link. Official pages only. For the cable, see a cable beats Wi-Fi for the leftover box. For the house number, see see the leftover box's address on the house network. For the login, see SSH from the couch.

Also on this topic

A cable beats Wi-Fi for the leftover boxOnce the leftover box is doing real work, plug it into the router with a cable. House Wi-Fi can wait. Skip this if it is already on a cable. See the leftover box's address on the house networkYou need the leftover box's number before you reserve DHCP or SSH from another room. Keep the leftover box on the same numberSSH and Pi-hole keep working after a reboot when the router always gives the leftover box the same address. After a reboot, check the leftover box still does its jobsThe leftover box came back up. Confirm SSH, house ad block, and the file share still work before you buy anything. Find the leftover box on the house networkThe leftover box has a number on your house network. You need that number to SSH from the couch. You do not need a new router.