Win 2008 r2 安装SSH服务器

ゝ一世哀愁。 2023-01-02 03:24 558阅读 0赞

1、下载微软开源的openssh
下载最新的二进制版本: https://github.com/PowerShell/Win32-OpenSSH/releases
2、解压到C:\Program Files并重命名为OpenSSH
3、启动Window PowerShell 并进入C:\Program Files\OpenSSH目录
4、输入命令安装sshd和ssh-agent服务

  1. powershell -ExecutionPolicy Bypass -File install-sshd.ps1

在这里插入图片描述
5、打开防火墙,开启22端口

  1. netsh advfirewall firewall add rule name=sshd dir=in action=allow protocol=TCP localport=22

在这里插入图片描述
6、设置开机启动

  1. Set-Service sshd -StartupType Automatic
  2. Set-Service ssh-agent -StartupType Automatic

7、启动服务

  1. Start-Service sshd
  2. Start-Service ssh-agent

8、连接测试
使用xshell输入ip,用户名密码为Win 2008 r2登录的用户名和密码
在这里插入图片描述

参考链接 :

Win 2008 r2 安装SSH服务器 :https://www.jianshu.com/p/b5b760bc56ff

发表评论

表情:
评论列表 (有 0 条评论,558人围观)

还没有评论,来说两句吧...

相关阅读