Il comando ping invia un pacchetto attraverso la rete al computer remoto specificato. Quando ping risponde, conferma che la macchina remota sta rispondendo alle richieste e che l'instradamento a quella macchina è valido e funzionante. Se ping non risponde, potrebbe essere perchè la propria macchina non ha una connessione di rete, non c'è la connessione a internet, o il sito web su internet non è raggiungibile.
Nel seguente esempio si usa il comando ping per verificare se la macchina 'toast' su Computerbank accetta le richieste di ping. Per terminare le richieste di ping premere i tasti Ctrl-C.
kylie@prometheus:~$ ping toast
Questo comando restituisce il seguente risultato sullo schermo:
PING toast.cbv.prv (192.168.1.1): 56 data
bytes 64 bytes from 192.168.1.1: icmp_seq=0 ttl=244 time=0.6 ms 64 bytes from
192.168.1.1: icmp_seq=1 ttl=244 time=0.6 ms 64 bytes from
192.168.1.1: icmp_seq=2 ttl=244 time=0.6 ms 64 bytes from
192.168.1.1: icmp_seq=3 ttl=244 time=0.6 ms ---
toast.cbv.prv ping statistics --- 4 packets transmitted, 4 packets
received, 0% packet loss round-trip min/avg/max = 0.6/0.6/0.6 ms
Questa schermata ci informa che la nostra macchina ha connettività di rete e che la macchina 'toast' accetta le richieste di ping.
Il seguente esempio è una richiesta di ping verso www.yahoo.com.au. Premere i tasti Ctrl-C per terminare le richieste di ping.
kylie@prometheus:~$ ping www.yahoo.com.au
Questo comando restituisce il seguente risultato sullo schermo:
PING au.rc.yahoo.com (202.3.14.151): 56 data bytes 64 bytes from
202.3.14.152: icmp_seq=0 ttl=244 time=1754.4 ms 64 bytes from 202.3.14.152:
icmp_seq=1 ttl=244 time=1496.0 ms 64 bytes from 202.3.14.152: icmp_seq=2 ttl=244
time=1586.1 ms 64 bytes from 202.3.14.152: icmp_seq=3 ttl=244 time=1645.8 ms ---
au.rc.yahoo.com ping statistics --- 5 packets transmitted, 4 packets received, 20%
packet loss round-trip min/avg/max = 1496.0/1620.5/1754.4 ms
Questo esempio ci informa che la connessione Internet di Computerbank è attiva, e che il sito web www.yahoo.com.au sta accettando le richieste.