如何配置ssh从外部访问WSL2【以ubuntu为例】

2021年02月11日 2556点热度 9人点赞 0条评论
  1. sudo apt-get purge openssh-server
  2. sudo apt-get install openssh-server
  3. sudo nano /etc/ssh/sshd_config 并通过设置禁止root登录 PermitRootLogin no
  4. 然后在它下面添加一行说:
    AllowUsers yourusername
    如果要使用密码登录,请确保PasswordAuthentication设置为yes
  5. 通过添加/修改禁用权限分离: UsePrivilegeSeparation no
  6. sudo service ssh --full-restart
  7. 尝试用ssh客户端从外部登陆是否成功

Subbear

保持饥渴的专注,追求最佳的品质

文章评论