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
- Skip this note if the leftover box has no Wi-Fi radio. A leftover desktop or OptiPlex often does not.
- Skip if the leftover box is still only on house Wi-Fi. Plug a cable first: a cable beats Wi-Fi for the leftover box.
- Skip if SSH from the couch does not work yet. That is SSH from the couch.
- Skip buying a mesh kit or a new router because SSH hops between two leftover-box numbers.
- Skip blacklisting kernel modules tonight.
- Skip opening SSH to the internet.
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.