背景:新装的BT5-R3系统(192.168.100.141),需要开启SSH服务。
1,在192.168.100.141上直接运行命令:service ssh start,显示服务开启。
执行SSH命令:ssh root@192.168.100.141,提示:Read from socket failed: Connection reset by peer。
2,在192.168.100.141上查看日志:/var/log/auth.log。看到两行错误信息:
May 23 09:52:55 bt sshd[1726]: error: Could not load host key: /etc/ssh/ssh_host_rsa_key
May 23 09:52:55 bt sshd[1726]: error: Could not load host key: /etc/ssh/ssh_host_dsa_key
3,在192.168.100.141上执行命令:
ssh-keygen -t rsa -f /etc/ssh/ssh_host_ras_key
ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key
(每次执行命令会提示需要输入,直接回车)
然后在远程电脑上执行命令:ssh root@192.168.100.141
输入密码后连接成功。
相关阅读:VMware虚拟机下安装BackTrack5(BT5)+汉化教程 http://www.linuxidc.com/Linux/2012-12/76515.htm