Top "Ping" questions

Ping is a computer network administration utility used to test the reachability of a host on an Internet Protocol (IP) network and to measure the round-trip time for messages sent from the originating host to a destination computer.

Leave only two decimal places after the dot

public void LoadAveragePingTime() { try { PingReply pingReply = pingClass.Send("logon.chronic-domination.com"); double AveragePing = (pingReply.RoundtripTime / 1.75); label4.Text = (AveragePing.ToString() + "ms"); } …

c# ping decimal-point
Using ping in c#

When I Ping a remote system with windows it says there is no reply, but when I ping with c# …

c# ping
How to check if ping responded or not in a batch file

I want to continuously ping a server and see a message box when ever it responds i.e. server is …

command-line batch-file ping
Preferred Java way to ping an HTTP URL for availability

I need a monitor class that regularly checks whether a given HTTP URL is available. I can take care of …

java http url ping
How can I ping a server port with PHP?

I want a PHP script which allows you to ping an IP address and a port number (ip:port). I …

php ping
How to ping ubuntu guest on VirtualBox

I have an VM (VirtualBox) with Ubuntu. Host machine is Windows 7. How can I ping my Ubuntu from host and …

networking ubuntu virtualbox ping
How to ping a server only once from within a batch file?

I want to learn how to write batch scripts and tried to create a script which automatically runs this command …

batch-file ping
How do I timestamp every ping result?

Ping returns this by default: 64 bytes from 203.173.50.132: icmp_seq=0 ttl=244 time=57.746 ms Is there some way I can get it …

bash osx-lion ping bsd
Ping site and return result in PHP

I'd like to create a small IF procedure that will check if Twitter is available (unlike now, for example), and …

php ping
bash script use cut command at variable and store result at another variable

I have a config.txt file with IP addresses as content like this 10.10.10.1:80 10.10.10.13:8080 10.10.10.11:443 10.10.10.12:80 I want to ping every ip address …

bash variables loops ping cut