我有这个错误:“未知的密码类型”

我有这个错误:“未知的密码类型”

我正在创建一个 ubuntu 服务器。我是新手。

  • 第一个危险信号是当电脑开机时,在所有内容加载完成之前,它会在“启动作业正在运行,等待网络配置”中失败。
  • 在安装开始时,我为服务器设置了一个静态 IP。现在我这样做:
ssh -2c [email protected]

它回应:

Unknown cipher type '[email protected]'

其中这个ip是我一开始设置的静态ip。

感谢所有帮助我的人

我正在关注的教程链接:https://www.youtube.com/watch?v=TowpySeDtTU&t=123s

在 1:54

答案1

您正在遵循的教程指导您输入-2Cnot -2c。从 开始man sshCc选项截然不同:

 -C      Requests compression of all data (including stdin, stdout,
         stderr, and data for forwarded X11, TCP and UNIX-domain connec‐
         tions).  The compression algorithm is the same used by gzip(1).
         Compression is desirable on modem lines and other slow connec‐
         tions, but will only slow down things on fast networks.  The de‐
         fault value can be set on a host-by-host basis in the configura‐
         tion files; see the Compression option.

 -c cipher_spec
         Selects the cipher specification for encrypting the session.
         cipher_spec is a comma-separated list of ciphers listed in order
         of preference.  See the Ciphers keyword in ssh_config(5) for more
         information.

特别是,由于-c预期cipher_spec 争论,它被[email protected]视为 cipher_spec 而不是主机名。

据我所知,选项-2(虽然可以接受)被忽略,因为 OpenSSH 不再支持 SSH 1 协议。因此,您应该使用

ssh -2C [email protected]

要不就

ssh -C [email protected]

相关内容