无法SSH的问题是Ubuntu的安全选项问题,只需要修改ssh配置文件即可
直接在PVE的控制台中编辑
nano /etc/ssh/sshd_config
修改 root登录
PermitRootLogin without-password
为
PermitRootLogin yes
修改 密码登录
PasswordAuthentication no
为
PasswordAuthentication yes
然后重启sshd
systemctl restart sshd
https://www.280i.com/tech/11726.html