我不完全确定,但您可能想查看sshd_config
.
来自http://wiki.centos.org/HowTos/Network/SecuringSSH
# Protocol 2,1
Protocol 2
将协议 1 更改为协议 2 并重新启动。这应该已经Protocol 2
在 Centos 6.5 中设置为,但您可能需要仔细检查。
我发现这使用了不同的协议选项
http://www.snailbook.com/faq/ssh-1-vs-2.auto.html
不确定这是否足以解决您的特定问题。
你知道他们用什么来检查配置吗?
更新:
这是从man sshd_config
运行
Ciphers
Specifies the ciphers allowed for protocol version 2 in order of preference. Multiple ciphers must be comma-separated. The supported ciphers are
“3des-cbc”, “aes128-cbc”, “aes192-cbc”, “aes256-cbc”, “aes128-ctr”, “aes192-ctr”, “aes256-ctr”, “arcfour128”, “arcfour256”, “arcfour”,
“blowfish-cbc”, and “cast128-cbc”. The default is:
aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,
aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc,
aes256-cbc,arcfour
还有Macs
选项:
MACs Specifies the MAC (message authentication code) algorithms in order of preference. The MAC algorithm is used in protocol version 2 for data
integrity protection. Multiple algorithms must be comma-separated. The default is:
hmac-md5,hmac-sha1,umac-64@openssh.com,
hmac-ripemd160,hmac-sha1-96,hmac-md5-96,
hmac-sha2-256,hmac-sha2-512
所以我会看一下这些,并/etc/ssh/sshd_config
用你想要的密码和macs在你的文件中设置选项。