当我尝试通过我的ubuntu客户端将(ssh -i xyz.pem blah@blah.in)
ssh到我的centos服务器实例时,它会出现此错误:
/etc/ssh/ssh_config: line 56: Bad configuration option: clientaliveinterval
/etc/ssh/ssh_config: terminating, 1 bad configuration options
有趣的是,其他系统能够使用相同的pem文件成功登录。此外,ssh_config文件中也不存在clientaliveinterval
配置选项。当然,没有什么需要在服务器上完成,那么应该在本地做什么?缓存是否发生在这里?
为什么这只发生在我当地的ubuntu客户端上。如何解决?
答案 0 :(得分:2)
客户端配置ssh_config
中没有此选项。你可能意味着ServerAliveInterval
。
将clientaliveinterval
(在客户端上)的第56行上的选项/etc/ssh/ssh_config
替换为ServerAliveInterval
,您应该没问题。