openssh for windows

2024-11-20

OpenSSH for Windows安装和卸载方法

1、下载
https://github.com/PowerShell/Win32-OpenSSH/releases
OpenSSH-Win64.zip
解压到
c:\small\OpenSSH-Win64
2、powershell默认不允许ps脚本运行
允许
Set-ExecutionPolicy RemoteSigned
限制
Set-ExecutionPolicy Restricted

3、install-sshd.ps1

install-sshd.ps1 -PasswordAuthentication

4、Get-Service sshd | start-service

5、Get-Service sshd | Stop-Service

6、uninstall-sshd.ps1

7、开启fw允许22访问
打开Windows Defender防火墙。
点击“高级设置”。
在左侧导航栏中,选择“Inbound Rules”。
右侧点击“New Rule”。
选择“Port”并点击“Next”。
选择“TCP”和特定的本地端口(22)。
允许连接。
选择适用的网络类型(通常选择“公用”)。
输入规则名称并点击“Finish”。

8、netstat -ant|findstr 22

分类:操作系统 | 标签: |

相关日志

评论被关闭!