16

the server I need to check the latency of is denying PING requests, is there another way to check my latency to the server? Thanks in advance.

Jan Červenka
  • 339
  • 1
  • 3
  • 12

2 Answers2

8

Use a ping based on TCP.

If you have access to a Windows box, use http://technet.microsoft.com/en-us/sysinternals/jj729731.aspx

Download the zip, unpack. From CMD prompt cd to unpacked folder, then run with -t flag like this:

psping.exe -t www.anywebsite.com:80

psping to remote host with open TCP port

Please note: this assumes you have a web site running on remote host (port 80 in example above)

Charlie Dalsass
  • 1,986
  • 18
  • 23
1

Some people recommend hping which can use other protocols like TCP (for when ICMP is denied).

Note that I haven't tried it so I would be curious to know your experience if you do.

Traveler
  • 1,048
  • 14
  • 27