## 개요 - ping(Packet Internet Grouper)은 IP 네트워크를 통해 특정 호스트가 도달할 수 있는지 여부를 테스트할 때 쓰는 도구이다. - [[ICMP]]를 사용한다. ## 사용 방법 ```sh $ ping google.com ``` ``` PING google.com (172.217.175.238): 56 data bytes 64 bytes from 172.217.175.238: icmp_seq=0 ttl=114 time=32.495 ms 64 bytes from 172.217.175.238: icmp_seq=1 ttl=114 time=32.710 ms 64 bytes from 172.217.175.238: icmp_seq=2 ttl=114 time=32.960 ms ^C --- google.com ping statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/stddev = 32.495/32.722/32.960/0.190 ms ``` #network