Windows 子系统 Ubuntu20.04设置开启SSH服务

2021/9/7 7:09:19

本文主要是介绍Windows 子系统 Ubuntu20.04设置开启SSH服务,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

设置root密码

passwd root

编辑ssh配置文件

vi /etc/ssh/sshd_config

## 打开注释
Port 22
ListenAddress 0.0.0.0
ListenAddress ::

## 打开注释
PermitRootLogin prohibit-password
## 并修改为
PermitRootLogin yes

## 修改
PasswordAuthentication no
## 为
PasswordAuthentication yes

完成后启动sshd

service ssh start

如报错

 * Starting OpenBSD Secure Shell server sshd                                                                                sshd: no hostkeys available -- exiting

## 执行以下 不要做任何输入 直接回车
ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key
ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key

ssh连接IP地址为主机的局域网ip地址

然后就可以使用Xshell进行连接操作了



这篇关于Windows 子系统 Ubuntu20.04设置开启SSH服务的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程