我再次有一个关于 ssh 问题的问题:
在嵌入式系统(没有显示器,没有键盘)上,我唯一的登录界面是 ssh。Telnet 也被禁用。(我目前正在尝试启用它,希望渺茫......)
目前我唯一的互动是接收答案并通过!ping
浏览我的共享文件。smb://
ssh 的回答总是:
$ ssh -vvvvl root 192.168.0.3
OpenSSH_5.5p1 Debian-4ubuntu4, OpenSSL 0.9.8o 01 Jun 2010
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to 192.168.0.3 [192.168.0.3] port 22.
debug1: Connection established.
debug1: identity file /home/simon/.ssh/id_rsa type -1
debug1: identity file /home/simon/.ssh/id_rsa-cert type -1
debug1: identity file /home/simon/.ssh/id_dsa type -1
debug1: identity file /home/simon/.ssh/id_dsa-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_4.3p2 Debian-8
debug1: match: OpenSSH_4.3p2 Debian-8 pat OpenSSH_4*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.5p1 Debian-4ubuntu4
debug2: fd 3 setting O_NONBLOCK
debug1: SSH2_MSG_KEXINIT sent
Read from socket failed: Connection reset by peer
但是我通过将硬盘从设备中拉出并在连接到另一台机器时操作其上的文件来直接访问硬盘。
在我注销并被锁定之前,我的最后一步是sudo rm /etc/ssh/*host*key*
,因为找不到而dpkg-reconfigure openssh-server
失败。dpkg-reconfigure
所以我想问题是,密钥被删除了。
我现在的问题是:如何在sshd
不在目标系统上运行任何命令的情况下离岸创建密钥并提供它们,或者如何sshd
让我在没有密钥的情况下登录?
感谢您的帮助,如果有的话..?!