How to run a ping ?

PING stands for Packet INternet Groper.

This is a simple diagnostic tool implemented in both Windows and Linux that enables you the ability to test for basic communication between two network nodes within a LAN or across the WAN/Internet.

The concept is simple - a special packet is sent from a source machine to a destination machine at which the destination machine responds back.


The time it takes for this process to complete helps determine two things:

  • Does the destination machine respond?
  • How long does it take the destination machine to respond back?


To run this tool is very simple.



Windows

For windows you simply open a command prompt:

Go to Start->run->type CMD->press enter

Within the command prompt you will type:

ping destination-IP -n 10

For example:

ping 192.168.88.132  -n 10


Linux


For Linux open terminal:

root@rb:~# ping -c 10  destination-IP

Within the command prompt you will type:

ping -c 10 destination-IP 

For example:

ping -c 10 192.168.88.132 
 
  • 204 Users Found This Useful
Was this answer helpful?

Related Articles

How to bind additional IPs?

Instructions are only for CentOS / Fedora specifically. By default, Rackbank only binds your...

How to run a traceroute?

Both Windows and Linux have the ability of diagnosing the health of a connection between a...

How to set additional IPs in Windows?

By default, Rackbank only binds your first IP. This is because there are different methods of...

Recieving an "ip_conntrack: table full" error.

On OpenVZ/HyperVM machines sometimes the ip_conntrack table will become full and drop packets....