在配置Airtight C-65时只能使用SSH,用户名密码都是config,遇到如下问题:

ssh config@192.168.0.21
Unable to negotiate with 192.168.0.21 port 22: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1

解决方案

ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 config@192.168.0.21

然后又遇到:

ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 config@192.168.0.21
Unable to negotiate with 192.168.0.21 port 22: no matching cipher found. Their offer: aes128-cbc

解决方案,加上新的Option,-oCiphers=+aes128-cbc,终于OK

ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 -oCiphers=+aes128-cbc config@192.168.0.21

用户名密码都是config

标签: none 阅读量: 975

添加新评论