GAT1400 server occasional abnormal connection troubleshooting

Scenes

        The bottom layer of the written client program uses libcurl to access the GAT1400 server, and occasionally the error code is 28 and the request timed out. How to intuitively notify third-party vendors to fix the problem


solution

        https://elifulkerson.com/projects/tcping.php Download the tcping.exe tool, which can visually show whether the remote server port can be accessed and the access time for multiple accesses

 The test results are as follows:

tcping.exe 192.168.10.89 8080

Probing 192.168.10.89:8080/tcp - Port is open - time=1.603ms
Probing 192.168.10.89:8080/tcp - Port is open - time=1.220ms
Probing 192.168.10.89:8080/tcp - Port is open - time=1.376ms
Probing 192.168.10.89:8080/tcp - Port is open - time=1.208ms

Ping statistics for 192.168.10.89:8080
     4 probes sent.
     4 successful, 0 failed.  (0.00% fail)
Approximate trip times in milli-seconds:
     Minimum = 1.208ms, Maximum = 1.603ms, Average = 1.352m

Guess you like

Origin blog.51cto.com/fengyuzaitu/2606988