SSH Ubuntu20.04配置
程序员文章站
2022-07-14 20:13:01
...
1.windows配置
window上要安装ssh
下载连接:https://www.mls-software.com/opensshd.html
2.ubuntu20.04配置
检查sshd是否安装和启动,确保安装和启动
未安装:
apt-get install openssh-client
apt-get install openssh-server
vim /etc/ssh/sshd_config
PermitRootLogin=yes
PasswordAuthentication=yes
service ssh restart
3.CMD