一个树莓派镜像,启动后发现没有 sshd 功能,于是 启用 openssh,重新启动,又发现树莓派拒绝 ssh 连接请求。
我的一台树莓派IP是:192.168.59.133任何服务器使用任何用户ssh均报错,甚至连自己都不能ssh自己。
不能使用任何工具连接上该服务器
使用ssh连接自己的127.0.0.1和localhost都权限拒绝错误
ssh报错如下
任何服务器ssh报错内容均一样:报错内容均为:
Permission denied, please try again.
检查列表
sshd服务是否正常开启
sudo systemctl status ssh
关闭防火墙
sudo ufw enable
尝试sudo ufw enable,从我的win7系统ssh登录不上虚拟机。但是在本机上ssh 192.168.14.83可以登录成功
SSH两种身份验证
SSH实现身份验证,有两种:
基于密码的安全验证
基于密钥的安全验证
允许root用户登录+允许root用户登录 - 基于密码的安全验证
SSH远程连接时无法直接通过root账户登录,会显示权限不足(Permission denied, please try again.)
要开启root账户远程登录,要找到/etc/ssh/sshd_config
文件并修改其中的设置
#sudo vim /etc/ssh/sshd_config
找到并用#注释掉这行:PermitRootLogin prohibit-password
PermitRootLogin yes #允许root登录,设为yes。
PermitRootLogin prohibit-password #允许root登录,但是禁止root用密码登录
重启 SSH 服务生效
systemctl restart ssh
can't open /dev/tty: No such file or directory
root@192.168.2.50's password:
debug1: Authentications that can continue: publickey,password
Permission denied, please try again.
debug1: read_passphrase: can't open /dev/tty: No such file or directory
https://blog.csdn.net/cuichongxin/article/details/117462494