Win10使用OpenSSH搭建SFTP服务器

Win10使用OpenSSH搭建SFTP服务器

  • 下载Win32-OpenSSH
    https://github.com/PowerShell/Win32-OpenSSH/releases
  • 解压到(安装的64位的):
    C:\Program Files\OpenSSH-Win64
  • 管理员运行CMD,进入目录
    cd "C:\Program Files\OpenSSH-Win64"
    
  • 安装
    powershell.exe -ExecutionPolicy Bypass -File install-sshd.ps1
    
  • 设置防火墙
    Win2012 及以上服务器:
    New-NetFirewallRule -Name sshd -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22
    
    桌面版或 Windows 2008 R2 及以下服务器:
    netsh advfirewall firewall add rule name=sshd dir=in action=allow protocol=TCP localport=22
    
  • 启动
    net start sshd
    
  • 设置开机启动
    powershell.exe Set-Service sshd -StartupType Automatic
    

  • 用用户名密码验证
  • 生成密钥
    ssh-keygen -t rsa -f ca_userkeys
    
    Win10使用OpenSSH搭建SFTP服务器_第1张图片
    Win10使用OpenSSH搭建SFTP服务器_第2张图片
  • 将ca_userkeys.pub里面的内容复制到服务器(需要登录的)用户的目录下的.shh文件夹的authorized_keys文件中。即可使用ca_userkeys登录了。

你可能感兴趣的:(Win10使用OpenSSH搭建SFTP服务器)