Written 28 Aug 2026. This is a how-to, not a product card. Buy links are not tagged yet.
When SSH says the leftover box looks different
After you reinstall the leftover box, SSH from the couch can refuse because your laptop still remembers the old leftover-box ID. Clear that memory with ssh-keygen -R. You do not need a new router.
You wiped the leftover box this weekend, or you swapped it for another leftover. SSH from the couch used to work. Now the laptop prints a loud warning that the leftover box looks different, and it will not connect. That is not a new router problem. Your laptop still remembers the leftover-box ID from before the wipe. Clear that one memory. Then SSH again.
Skip if SSH still works
If you can already type commands on the leftover box from the couch, you do not need this note. This look is only for the warning after a reinstall, a leftover-box swap, or a leftover-box rename.
What this is
The leftover-box ID is a fingerprint SSH stores on your laptop the first time you connect. Linux people call that a host key. You do not need the phrase. You need the check. This is not the same note as log in with a key, not the password every time (that is your laptop proving it is you). This is the leftover box proving it is the same box your laptop met last time. After a wipe, it is a new leftover box on the same name or number. The laptop is right to pause. You are the one who wiped it.
If you did not reinstall
Stop. Do not clear the memory yet. If you did not wipe the leftover box, did not swap it, and did not change its name, a new leftover-box ID is a reason to look, not a reason to buy. Confirm SSH is still only on the house network: keep the leftover box on the house network. Do not forward port 22. Then come back to this note only if you now know you reinstalled or swapped the box.
Clear the old leftover-box ID
On your laptop, not on the leftover box, in Terminal, forget the leftover name:
ssh-keygen -R leftover
If you connect by number instead of a name, swap in that number from find the leftover box on the house network:
ssh-keygen -R 192.168.1.50
Use your real leftover-box number. The command removes that leftover-box ID from the laptop memory file, usually ~/.ssh/known_hosts. It does not change the leftover box. It does not change your leftover-box password. It does not add a login key. That later note is still log in with a key, not the password every time.
Connect again
From the laptop:
ssh you@leftover
Or the leftover-box number, same as SSH from the couch. The first time after a wipe, SSH will ask if you trust this leftover box. That is normal. Type yes only if this is the leftover box you just installed. Then the leftover-box password, the one you set in change the leftover-box login password.
What next
Password SSH should be boring again. Extra leftover logins stay see if the leftover box still has old login accounts. When password login has been boring, log in with a key, not the password every time. A leftover-box name that sticks is give the leftover box a name that sticks. Skip a new router. Skip opening SSH to the internet.
Skip
- Skip this note if SSH from the couch already works.
- Skip this note if you did not reinstall or swap the leftover box. Start with keep the leftover box on the house network.
- Skip buying a new router because SSH printed a warning.
- Skip editing the leftover-box SSH server for this. The memory lives on your laptop.
- Skip opening SSH to the internet.
Sources
Debian: ssh-keygen (-R). Ubuntu: ssh-keygen. OpenSSH: ssh-keygen. Official pages only. For the login, see SSH from the couch. For the leftover-box number, see find the leftover box on the house network. For a leftover-box name, see give the leftover box a name that sticks. For your laptop login key, see log in with a key, not the password every time. For the house-network boundary, see keep the leftover box on the house network.