使用TCP协议的Ping测试

by Web全栈工程师 on 2015 年 12 月 03 日

PING是一种计算机网络工具,用来测试数据包能否透过IP协议到达特定主机。ping的运作原理是向目标主机传出一个ICMP echo@要求数据包,并等待接收echo回应数据包。程序会按时间和成功响应的次数估算丢失数据包率和数据包往返时间。

但是PING使用的是ICMP协议,如果遇到TCP阻断的时候不能测试出TCP协议是否被阻断,所以需要用到第三方PING工具:TCPING和PSPING测试,

TCPPING

  1. 从 https://www.elifulkerson.com/projects/tcping.php 下载tcpping.exe
  2. 将 tcpping.exe 下载到C:\WINDOWS\system32 目录下,就可以在命令提示符下使用tcpping命令了
  3. 使用 tcping /? 查看帮助

PSPING

  1. 从微软官网下载:https://technet.microsoft.com/en-us/sysinternals/psping.aspx
  2. 将 psping.exe 下载到C:\WINDOWS\system32 目录下,就可以在命令提示符下使用psping命令了
  3. psping的几个用法:
    Usage: psping -? [i|t|l|b]
    
    Parameter	Description	
    -? I	Usage for ICMP ping.	
    -? T	Usage for TCP ping.	
    -? L	Usage for latency test.	
    -? B	Usage for bandwidth test.
    

原创文章,转载请注明:转载自Web开发笔记 | 使用TCP协议的Ping测试

本文链接地址:https://www.magentonotes.com/psping-and-tcpping.html

Comments on this entry are closed.

Previous post:

Next post: