目 录CONTENT

文章目录

windows-tcping

筱晶哥哥
2023-07-08 / 0 评论 / 0 点赞 / 55 阅读 / 1422 字 / 正在检测是否收录...
温馨提示:
本文最后更新于 2024-03-23,若内容或图片失效,请留言反馈。部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

tcping.exe 是一个控制台应用程序,其操作类似于“ping”,但它在tcp端口上工作。

在 Windows 上要查看指定 IP、端口 是否连通,通常要使用 telnet,但是 telnet 需要安装,有时安装过程中有时还要重启。

使用 tcping -t IP 端口 即可测试端口,-t 代表连续测试,需要放在 tcping 与 IP 之间

下载

官网

tcping.exe

tcping64.exe

如果信任该应用的话,可以将其放入到 C:\Windows\ 文件夹中,方便随时调用

使用

C:\Users\xiaojingge>tcping64 -t baidu.com 80

** Pinging continuously.  Press control-c to stop **

Probing 39.156.66.10:80/tcp - Port is open - time=24.255ms
Probing 39.156.66.10:80/tcp - Port is open - time=26.552ms
Probing 39.156.66.10:80/tcp - Port is open - time=26.702ms
Probing 39.156.66.10:80/tcp - Port is open - time=31.220ms
Probing 39.156.66.10:80/tcp - Port is open - time=24.344ms
Probing 39.156.66.10:80/tcp - Port is open - time=29.309ms
Probing 39.156.66.10:80/tcp - Port is open - time=26.840ms
Control-C

Ping statistics for 39.156.66.10:80
     7 probes sent.
     7 successful, 0 failed.  (0.00% fail)
Approximate trip times in milli-seconds:
     Minimum = 24.255ms, Maximum = 31.220ms, Average = 27.032ms
0

评论区