2 network testing tools under windows

environment

  • windows 10 64bit

  • tcping

  • tcproute

Introduction

TCPingand TCProuteare tools windowsfor testing TCPconnections , which can help users determine the availability and response time of network connections.

TCPing

Download link: https://elifulkerson.com/projects/tcping.php

TCPingTests the availability of the network connection by sending TCPa request and measuring the response time. TCPingThe method of use is very simple, you only need to enter TCPingthe command plus IPthe address or domain name of the target host. TCPingMultiple TCPrequests and the average response time is calculated. If the response time is long or the connection fails, there is a problem with the network connection.

Here are a few examples of usage scenarios

Test the connection availability of the target host

TCPing <目标主机IP或域名>

Specify port for connection test

TCPing <目标主机IP或域名> <端口号>

Set the number of tests and the time interval

TCPing <目标主机IP或域名> -n <测试次数> -i <时间间隔>

TCProute

Download link: https://elifulkerson.com/projects/tcproute.php

TCProuteIt is an advanced TCPconnection test tool that can help users determine the path and delay time of network connections. TCPingUnlike , TCProutemultiple TCPrequests , and the routers and delay times that each request passes through are recorded. With this information, users can determine the path and latency of network connections, and identify possible problems. TCProuteThe method of use is also relatively simple, you only need to enter TCProutethe command and add IPthe address or domain name of the target host.

Also look at a few example usage scenarios

Test the connection path and latency of the target host

TCProute <目标主机IP或域名>

Specify port number for connection test

TCProute <目标主机IP或域名> <端口号>

Set the maximum number of hops

TCProute <目标主机IP或域名> -h <最大跃点数>

Set the number of tests and the time interval

TCProute <目标主机IP或域名> -n <测试次数> -i <时间间隔>

References

  • https://elifulkerson.com/projects/

Guess you like

Origin blog.csdn.net/djstavaV/article/details/130143853