SSHv1 上的未知密码类型“3des”

SSHv1 上的未知密码类型“3des”

目前,我通过 SSHv1 连接华为路由器时遇到了问题。请注意,它适用于 SSHv2,但我需要 SSHv1 来测试一些特殊的东西。

因此我打开终端并写入:

ssh -1 -c 3des [email protected]

我收到了消息Unknown cipher type '3des',SSH 手册中也列出了此密码的版本 1。我也尝试使用 DES 和 blowfish 密码。有什么建议吗?

这是日志文件:

root@superuser:~# ssh1 -vvv -1 -c 3des [email protected]
OpenSSH_7.2p2 Ubuntu-4ubuntu1, OpenSSL 1.0.2g-fips  1 Mar 2016
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug3: kex names ok: [diffie-hellman-group1-sha1]
debug2: resolving "192.168.0.10" port 22
debug2: ssh_connect_direct: needpriv 0
debug1: Connecting to 192.168.0.10 [192.168.0.10] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/identity type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/identity-cert type -1
debug1: Remote protocol version 2.0, remote software version -
debug1: no match: -
Protocol major versions differ: 1 vs. 2

答案1

SSHv1 已从当前的 openssh 中过时。如果您想使用此过时的协议,您需要安装openssh-client-ssh1打包并使用ssh1二进制文件,它仍然支持 SSHv1。

ssh1 -1 -c 3des [email protected]

应该可以帮你完成这个工作。

相关内容