您的位置:

Windows安装SSH详解

一、安装OpenSSH

1、前往Win32-OpenSSH releases页面下载msi安装文件。

<img src="https://raw.githubusercontent.com/JaidedAI/EasyOCR/master/doc/images/EasyOCR_logo.png"></img>

2、执行安装程序,并在安装过程中选择要安装的组件。

<img src="https://raw.githubusercontent.com/PowerShell/Win32-OpenSSH/master/Install/win32-openssh-setup.png"></img>

3、在开始菜单中搜索“服务”,并打开“服务”窗口。

<img src="https://raw.githubusercontent.com/PowerShell/Win32-OpenSSH/master/Install/services.png"></img>

4、查找名为“OpenSSH Authentication Agent”的服务,并启动它。

OpenSSH Authentication Agent  ssh-agent

二、生成SSH密钥

1、打开Windows PowerShell控制台。

2、执行以下命令,生成公私密钥对。

$ssh-keygen

3、根据提示输入密钥的保存路径和密码等信息。

Enter file in which to save the key (/Users/you/.ssh/id_rsa): </br>Enter passphrase (empty for no passphrase):</br>Enter same passphrase again:</br>

4、成功生成密钥后,会在指定的保存路径中生成私钥文件和公钥文件。

三、打开SSH服务

1、进入Windows服务管理器界面。

2、找到OpenSSH服务列表,并启动OpenSSH依赖的所有服务。

C:\Program Files\OpenSSH\usr\sbin\sshd.exe

3、在Windows防火墙中新建一个入站规则,允许SSH服务通过。

netsh advfirewall firewall add rule name=SSHD dir=in action=allow protocol=TCP localport=22

4、测试SSH服务。

C:\Windows\System32\OpenSSH\ssh.exe

5、输入远程主机地址和用户名,成功连接后即可使用SSH。

四、使用SSH连接远程主机

1、打开命令行界面或SSH客户端,并输入连接命令。

$ssh user@remote_host_ip

2、根据提示输入密码或使用已生成的密钥进行认证。

3、成功连接后即可在远程主机上执行命令或传输文件等操作。