手动获取嵌入式系统上的ssh访问权限(可以直接进行硬盘访问)

时间:2011-02-03 07:30:42

标签: embedded ssh debian ssh-keys locked

我再次对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让我登录而不需要键?

如果有任何问题,感谢您的帮助..?!

2 个答案:

答案 0 :(得分:2)

您可以在方便的Linux系统上生成一组新的主机密钥,如下所示:

ssh-keygen -t rsa -b 2048 -f ssh_host_rsa_key
ssh-keygen -t dsa -b 1024 -f ssh_host_dsa_key

ssh-keygen要求您输入密码时,请点击Enter而不输入任何内容。主机密钥必须为空密码。

这会在当前目录中创建以下文件:

ssh_host_rsa_key
ssh_host_rsa_key.pub
ssh_host_dsa_key
ssh_host_dsa_key.pub

然后,您可以安装设备的硬盘,并将这四个文件复制到etc/ssh

请注意,当您尝试以后ssh到系统时,您的ssh客户端会抱怨密钥与预期不同,并且可能拒绝连接。如果您正在运行OpenSSH客户端,则可以再次使用ssh-keygen来更正此问题:

ssh-keygen -R <your_server_hostname>

答案 1 :(得分:0)

ssh -vvvvl root 192.168.0.3

应该是:

ssh -vvvvl root@192.168.0.3

我不知道这是否只是您在stackoverflow上发布时所做的拼写错误,或者您是否在命令行中输入了它。