多个连续的 ssh 会话导致错误:“ssh_exchange_identification:读取:连接由对等方重置”

多个连续的 ssh 会话导致错误:“ssh_exchange_identification:读取:连接由对等方重置”

我有一个包含许多命令的脚本rsync,用于部分同步两台计算机上某些目录中的某些文件类型。两者都有Ubuntu。

前几十个 rsync 命令运行顺利,但随后出现错误:

rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: unexplained error (code 255) at io.c(235) [sender=3.1.2]
ssh_exchange_identification: read: Connection reset by peer
rsync: connection unexpectedly closed (0 bytes received so far) [Receiver]
rsync error: unexplained error (code 255) at io.c(235) [Receiver=3.1.2]
ssh_exchange_identification: read: Connection reset by peer
...

该问题似乎是由于在短时间内进行了多次 ssh 传输造成的。实际上,如果我输入一些sleep 60命令,大约每 10 个 rsync 命令一次,脚本就可以完美运行。

有谁知道这可能是什么原因造成的?我尝试更改/etc/ssh/sshd_config两台机器(MaxStartups MaxAuthTries和)中的一些设置MaxSessions,但问题仍然存在。我认为这些都与这个问题无关;例如,MaxStartups限制同时建立的未经身份验证的 ssh 连接的数量,但我的脚本包含一系列按顺序运行的 rsync 命令(每个会话在下一个会话打开之前关闭)。我找不到任何限制时间窗口内 ssh 连接数量的设置。

/var/log/auth.log似乎不包含任何有用的信息(仅显示与最后一次成功连接和前几次不成功连接相对应的输出;IP 和其他个人信息被屏蔽):

Oct 15 15:58:15 localhostname systemd-logind[773]: New session 152 of user username.
Oct 15 15:58:25 localhostname sshd[31252]: Received disconnect from xxx.xxx.xxx.xxx port 2709:11: disconnected by user
Oct 15 15:58:25 localhostname sshd[31252]: Disconnected from user username xxx.xxx.xxx.xxx port 2709
Oct 15 15:58:25 localhostname sshd[31199]: pam_unix(sshd:session): session closed for user username
Oct 15 15:58:25 localhostname systemd-logind[773]: Session 152 logged out. Waiting for processes to exit.
Oct 15 15:58:25 localhostname systemd-logind[773]: Removed session 152.
Oct 15 15:58:25 localhostname sshd[31255]: Connection reset by xxx.xxx.xxx.xxx port 12951 [preauth]
Oct 15 15:58:25 localhostname sshd[31257]: Connection reset by xxx.xxx.xxx.xxx port 35552 [preauth]
Oct 15 15:58:25 localhostname sshd[31259]: Connection reset by xxx.xxx.xxx.xxx port 60391 [preauth]

非常感谢您的任何反馈,

答案1

看起来从客户端到服务器的 TCP 连接在创建后立即被重置,并且客户端和服务器都报告该连接被对方​​重置。

在这种情况下,我怀疑防火墙或某种恶意软件/入侵检测软件正在干扰这些 TCP 连接。如果仅在短时间内打开多个连接时发生,则可能是形式速率限制,或者可能是保护软件正在寻找的行为类型。

相关内容