Cara Melakukan Ping pada Windows, Mac, Linux
Ping merupakan program utilitas yang berjalan di atas protokol
ICMP (Internet Control Message Protocol) untuk mengecek koneksi antara
satu komputer dengan yang lain.
Untuk melakukan ping pada Windows:
- Buka command prompt
- Ketikkan
Contoh:
Untuk melakukan ping pada Linux/OSX:
- Buka terminal
- Ketikkan
Contoh:
Output:
— google.com ping statistics —
5 packets transmitted, 5 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 64.647/196.277/408.608/134.316 ms
Untuk melakukan ping pada Windows:
- Buka command prompt
- Ketikkan
ping alamat
Contoh:
ping google.com
Untuk melakukan ping pada Linux/OSX:
- Buka terminal
- Ketikkan
ping -c 5 alamat
Contoh:
ping -c 5 google.com
Output:
Fuads-iMac:~ vmgamer$ ping -c 5 google.com
PING google.com (202.70.58.19): 56 data bytes
64 bytes from 202.70.58.19: icmp_seq=0 ttl=57 time=299.957 ms
64 bytes from 202.70.58.19: icmp_seq=1 ttl=57 time=108.887 ms
64 bytes from 202.70.58.19: icmp_seq=2 ttl=57 time=408.608 ms
64 bytes from 202.70.58.19: icmp_seq=3 ttl=57 time=64.647 ms
64 bytes from 202.70.58.19: icmp_seq=4 ttl=57 time=99.287 ms
— google.com ping statistics —
5 packets transmitted, 5 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 64.647/196.277/408.608/134.316 ms