在使用ssh链接到服务器过冲中,经常会遇到ssh断开的问题:
Write failed: Broken pipe
遇到此种问题,在mac或linux下可以这样处理,参考[1]:
添加或编辑config文件,
nano ~/.ssh/config
在其中加入:
ServerAliveInterval 60
然后重新ssh链接即可。
1. http://blog.csdn.net/fodly/article/details/13016311
update:
可以更新服务器的/etc/ssh/sshd_config文件参数:
ClientAliveInterval 30
ClientAliveCountMax 6
在ssh命令链接的时候,也可以通过参数指定:
ssh -o ServerAliveInterval=60 xxx.xxx
发表回复