SSH Write failed: Broken pipe

服务器端设定:

/etc/ssh/sshd_config

ClientAliveInterval 60         //每60秒向客户端发送一次信号
ClientAliveCountMax 2          //重试连接次数


客户端进行设置也可以实现

/etc/ssh/ssh_config文件里加两个参数就行了

1 TCPKeepAlive yes
2 ServerAliveInterval 300

连接时增加参数
ssh -o TCPKeepAlive=yes -o ServerAliveInterval=300 Server....

你可能感兴趣的:(pipe,Broken)