- 下载微软开源的openssh
下载最新的二进制版本: https://github.com/PowerShell/Win32-OpenSSH/releases - 解压到
C:\Program Files
并重命名为OpenSSH
- 启动Window PowerShell 并进入C:\Program Files\OpenSSH目录
- 输入命令安装sshd和ssh-agent服务
powershell -ExecutionPolicy Bypass -File install-sshd.ps1
- 打开防火墙,开启22端口
netsh advfirewall firewall add rule name=sshd dir=in action=allow protocol=TCP localport=22
- 设置开机启动
Set-Service sshd -StartupType Automatic Set-Service ssh-agent -StartupType Automatic
- 启动服务
Start-Service sshd Start-Service ssh-agent
- 连接测试
使用xshell输入ip,用户名密码为Win 2008 r2登录的用户名和密码
Win 2008 r2 安装SSH服务器
- 本文链接: https://zengwu.com.cn/p/8257a63e.html
- 版权声明: 本博客所有文章遵循 CC 4.0 BY-SA 版权协议。转载请注明出处!