ssh问题:Connection closed by foreign host. Disconnected from remote host

放通一个远程ip能够ssh服务器,但是报错:

Connection closed by foreign host.

Disconnected from remote host。。。

解决办法:

  1. firewall防火墙放通ip。
  2. /etc/ssh/sshd_config文件修改,运行root用户密码登,再重启sshd服务。
  3. /etc/hosts.allow和/etc/hosts.deny文件修改,允许相应主机的访问,再重启sshd服务。
  4. 客户端连接数过多时也会报错。

    a.每次/etc/ssh/sshd_config中,将#MaxStartups 10修改为MaxStartups 10/100,再重启sshd服务

    b.每次都exit正常退出ssh,可以释放ssh连接。

时间: 2024-10-21 22:57:06

ssh问题:Connection closed by foreign host. Disconnected from remote host的相关文章

Connection closed by foreign host无法连接linux

环境,在win7系统下的虚拟机,虚拟机系统为centos6.6 由于windows长时间没有关机,然后今天电脑就感觉卡了就重启一下,结果重启了,linux链接不上了,如下: Connecting to 192.168.10.186:22... Connection established. To escape to local shell, press 'Ctrl+Alt+]'. Last login: Mon Jun 19 15:34:58 2017 from 192.168.10.11 Co

XShell 连接虚拟机中的服务器 失败 、连接中断(Connection closed by foreign host.)

在使用XShell连接虚拟机中的服务器时,报以下错误并断开连接,之前连接还是挺稳定的,忽然就这样了 Last login: Thu Aug 10 21:28:38 2017 from 192.168.1.102 [[email protected] ~]# Socket error Event: 32 Error: 10053. Connection closing...Socket close. Connection closed by foreign host. Disconnected f

【笔记】处理ssh 连接后一段时间就掉线 Connection closed by foreign host

[写在前面] 写这篇博文的原因是我遇到一个"ssh 连接后一段时间就掉线 Connection closed by foreign host"的问题,因为这个压根就不是VMware.Linux操作系统及ssh问题,最后原因是因为ESET防毒软体的IDS防护导致的--,纠结了我长达半个月的时间,痛苦的经历记录下来方便后续解决其他问题时参考,也希望能给其他人一点启发. [问题场景] 开始上课的时候,在VMware中安装RHEL7.2系统,完成后按照SOP做快照.做克隆--,一切都感觉很顺利

关于xshell:Connection closed by foreign host

因为原来系统网有时掉,有时卡(同局域网别人没事),重新做了系统. 装了xmanager3,在用xshell连接linux服务器时,提示:服务器发送了一个无效的密钥,然后输出:Connection closed by foreign host 首先大家可以根据其他博客作者所说的原因排查下: 1.linux里没有设置连接超时,结果客户端退出后服务器依旧保持连接. 2.ip冲突. 如果都不行的话,试试我的方法: 卸载掉,不要删除文件夹就完了 装在c盘 不要打汉化补丁 别注册. 这样用账号密码连接的时候

Connection closed by foreign host. 误改BUG

昨天调试远程服务器,为了增加socket链接数,理所当然的进行了limits.conf配置,之后悲剧发生了. 利用xshell再度远程时,被强制T了.链接瞬间即断,如果幸运,会弹出 "Connection closed by foreign host" 提示. 开始以为是防火墙或网络行为的原因,沟通了服务运营商,但是结论是没有那些东东的干扰. 好吧,自己回忆一下我是怎么改的吧. vim /etc/security/limits.conf #以下都是在limits.conf中编辑的 #无

telnet出现Connection closed by foreign host

2018-10-26 执行命令: telnet smtp.exmail.qq.com 465 出现信息: [[email protected] Desktop]# telnet 10.223.30.128 7027 Tring 10.223.30.128.7027 Connected to 10.223.30.128 (10.223.30.128) // 表示已经成功连接 Escape character is '^]' // 不是报错,"^]" 中的^ 表示 ctrl键,表示此时 同

Xshell ssh 连接后一段时间就掉线 Connection closed by foreign host

问题现象: 发现本机sshd服务开启但是其他机器不能登陆 查看sshd服务 [[email protected] ~]# systemctl status sshd.service ● sshd.service - OpenSSH server daemon Loaded: loaded (/usr/lib/systemd/system/sshd.service; enabled; vendor preset: enabled) Active: active (running) since Su

CentOS7.1 Xshell 经常掉线 Connection closed by foreign host

XShell如果经常对CentOS掉线,则VNC肯定连接不上 但是ping CentOS的IP又能ping通,主要原因还是因为sshd的设置问题 #进入ssh目录 cd /etc/ssh #修改sshd_config参数 vim sshd_config #找到以下几个参数并修改成如下结果 PermitRootLogin yes ClientAliveCountMax 60 #ClientAliveCountMax设置成60分钟,运行root登录 #重新载入ssh参数 service sshd r

【Ansible】SSH Error: ssh_exchange_identification: Connection closed by remote host

ansible ssh到目标机器 时好时坏,报错:  SSH Error: ssh_exchange_identification: Connection closed by remote host 咋搞? 解决办法简单粗暴: /etc/init.d/ssh restart 啥原因?不知道! 可能是虚拟机太傻叉! 也有可能使用了跳板机,然后设置了forks数目不为1 参考资料: http://wangmukun.blog.51cto.com/651644/202747 http://www.ju