欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ssh 登录 packet_write_wait: Connection to ip地址 port 22: Broken pipe

程序员文章站 2024-02-21 23:34:04
...

问题现象

使用 ssh 命令连接服务器之后,如果一段时间不操作,再次进入 Terminal 时会有一段时间没有响应,然后就出现错误提示:Write failed: Broken pipe。这时只能重新用 ssh 命令进行连接服务器。

解决方法

方法一:在客户端的 ~/.ssh/config 配置文件中添加

ServerAliveInterval 60
IPQoS lowdelay throughput

方法二:在服务器的 /etc/ssh/ssh_config 配置文件中添加

ClientAliveInterval 60
IPQoS lowdelay throughput

方法三:临时解决
可以再命令行中加入 -o 'IPQoS=lowdelay throughput'参数即可

相关标签: linux基础 ssh