网络跳过 Pinging 每 3 分钟定期进行 2 秒

网络跳过 Pinging 每 3 分钟定期进行 2 秒

我在 UP Board | UP-CHT01 中运行一个应用程序,它将执行操作并将数据发送到 NATS 消息服务器。(它在另一台 PC 上运行,即不在同一块板上)

在测试该应用程序时我们发现,它每 3 分钟就会定期发送 2-3 秒的消息失败。

经过一些调试后,我发现这可能是网络问题而不是应用程序问题。

因此我停止了应用程序并尝试每秒单独 ping 一次 nats 服务器,看看是否发生断开连接。

简单 ping -ping -O <ipAddress>

每 3 分钟就会发生同样的事情 - ping 跳过如下,我跳过了一些不需要的 ping 日志

20230402-07:13:54.078730 64 bytes from 192.168.1.239: icmp_seq=76 ttl=63 time=0.664 ms
20230402-07:13:56.125891 no answer yet for icmp_seq=77 
20230402-07:13:57.149865 no answer yet for icmp_seq=78 
20230402-07:13:58.173868 no answer yet for icmp_seq=79 
20230402-07:13:58.174764 64 bytes from 192.168.1.239: icmp_seq=80 ttl=63 time=0.663 ms
....
20230402-07:16:55.038752 64 bytes from 192.168.1.239: icmp_seq=253 ttl=63 time=0.692 ms 
20230402-07:16:57.085881 no answer yet for icmp_seq=254 
20230402-07:16:58.109875 no answer yet for icmp_seq=255 
20230402-07:16:59.133873 no answer yet for icmp_seq=256 
20230402-07:16:59.134810 64 bytes from 192.168.1.239: icmp_seq=257 ttl=63 time=0.699 ms
20230402-06:51:23.102719 490 packets transmitted, 481 received, 1.83673%

我确实 ping 了 google.com,发生了同样的事情。

有谁能解释一下,这可能是什么原因造成的。任何与路由器或交换机有关的事情。

相关内容