ssh自动断开怎么办?packet_write_wait: Connection to * . * ...

    选择打赏方式

以下方法任选一个


方法1 修改服务器

vim /etc/ssh/sshd_config

最下面插入

ClientAliveInterval 60

ClientAliveInterval 6000 #理论相当于离线100小时 还可以连接


/etc/init.d/sshd restart#centos系统,重启SSH服务命令

/etc/init.d/ssh restart#于Debian / Ubuntu系统,重启SSH服务命令

若提示,/ etc / init.d / sshd没有那个文件或目录,可以使用

service sshd restart


方法2  修改客户端

如果你没有服务器权限,那么这是个不错的选择——而且,这种办法还有个进阶的使用方法——针对某个服务器单独设置idle时长:

//编辑文件:

~/.ssh/config

//在里边添加如下语句:

ServerAliveInterval 60

ServerAliveInterval 6000


方法3

//针对某一服务器的写法:

//使用如下选项连接服务器:

ssh -o ServerAliveInterval=60 user@sshserver


版权声明:若无特殊注明,本文皆为《 zuoer 》原创,转载请保留文章出处。
本文链接:ssh自动断开怎么办?packet_write_wait: Connection to * . * . * . * port 22: Broken pipe https://www.zuoer.xin/?post=55
正文到此结束

热门推荐

管理员已关闭本篇文章评论!