传奇哥'S BLOG传奇哥'S BLOG

Windows server 开启SSH登录

#安装OpenSSH

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

# 启动服务

Start-Service sshd

#设置开机自启动

Set-Service -Name sshd -StartupType Automatic

#放行22端口

New-NetFirewallRule -Name sshd -DisplayName 'OpenSSH Server' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22


相关文章

回到首页 发表评论 回到顶部