码迷,mamicode.com
首页 > 其他好文 > 详细

ssh连接问题

时间:2019-02-20 12:50:07      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:drop   执行   iss   bsp   连接   rect   fail   ble   问题   

1.问题:Permission denied, please try again.

可能原因:密码错误或者对方主机不允许root用户远程登录

针对第二个原因解决方案:修改ssh服务端配置文件:vim /etc/ssh/sshd_config

# Authentication:

#LoginGraceTime 2m
#PermitRootLogin prohibit-password
PermitRootLogin yes   添加这一句可以允许root用户远程登录
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10

然后再重启ssh服务:service ssh restart

2.问题:

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that a host key has just been changed.
The fingerprint for the ECDSA key sent by the remote host is
SHA256:BCqRWpcHuCP7H2Hu9vKVhOHWbumgivtO1WdLuFmjd9k.
Please contact your system administrator.
Add correct host key in /home/guojihai/.ssh/known_hosts to get rid of this message.
Offending ECDSA key in /home/guojihai/.ssh/known_hosts:2
remove with:
ssh-keygen -f "/home/guojihai/.ssh/known_hosts" -R "192.168.199.134"
ECDSA host key for 192.168.199.134 has changed and you have requested strict checking.
Host key verification failed.

可能原因分析:可能是之前登录过对方主机,但是对方改变了密码,所以需要主机的验证失败

解决方案:ssh-keygen -f "/home/guojihai/.ssh/known_hosts" -R "192.168.199.134"

然后重新登录:ssh username@ip

3.问题:碰见refused等问题

可能原因:可能是主机地址写错,或者是对方主机没有安装ssh服务端程序

针对第二个原因解决方案:在对方主机上执行命令:sudo apt-get install openssh-server

然后查看服务端程序是否启动:ps -e |grep ssh

如果看到sshd,证明安装启动成功,可以允许其他主机远程连接

ssh连接问题

标签:drop   执行   iss   bsp   连接   rect   fail   ble   问题   

原文地址:https://www.cnblogs.com/thoughtful-actors/p/10405698.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!