how to fix a ssh port 22 connection problem in windows 11

DomiNeu 0 Reputation points
2023-03-12T15:31:42.1933333+00:00

Hello,
I have a reMarkable 2 e-ink tablet, and until recently it was no problem to place a for me important eraser-hack for my Lamy-pen via ssh there.

Now.

The ssh port 22 is closed - "connection timed out" - via the windows 11 computer terminal.
Also there is no connection possible via the "termius" ssh client of an Android-tablet.

So I assume that the problem is in the network or in my personal reMarkable as the reMarkable still works with other users after the latest updates - whereas, I made a factory setup of the reMarkable and it still doesn't work...

How can I open the ssh port 22 of the reMarkable?

Windows Server PowerShell
Windows Server PowerShell
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.PowerShell: A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
4,731 questions
No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Rich Matheisen 36,161 Reputation points
    2023-03-12T18:15:59.6433333+00:00

    Run this (as administrator):

    Get-WindowsCapability -Online | Where-Object Name -like 'OpenSSH*'
    
    

    Are both SSH client and server installed? Or does it look like this:

    Name  : OpenSSH.Client~~~~0.0.1.0
    State : Installed
    Name  : OpenSSH.Server~~~~0.0.1.0
    State : NotPresent
    
    

    If the SSH server isn't installed, add it:

    Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0