ping
테스트로 다른 네트워크에 연결되었는지 확인할 수 있습니다
ping
다음 명령어로 8.8.8.8
IP에 ping 테스트하고, 응답이 오는 것으로 연결이 되었는지 확인할 수 있습니다.
$ ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_seq=1 ttl=53 time=44.0 ms
64 bytes from 8.8.8.8: icmp_seq=2 ttl=53 time=42.1 ms
64 bytes from 8.8.8.8: icmp_seq=3 ttl=53 time=43.3 ms
64 bytes from 8.8.8.8: icmp_seq=4 ttl=53 time=44.4 ms
64 bytes from 8.8.8.8: icmp_seq=5 ttl=53 time=43.5 ms
64 bytes from 8.8.8.8: icmp_seq=6 ttl=53 time=48.7 ms
64 bytes from 8.8.8.8: icmp_seq=7 ttl=53 time=44.3 ms
64 bytes from 8.8.8.8: icmp_seq=8 ttl=53 time=48.8 ms
8.8.8.8
은 Google DNS Server의 IP 주소입니다.
ping -i
-i
옵션은 응답을 체크할 주기입니다. -i 10
은 10초마다 ping 테스트합니다.
$ ping -i 10 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_seq=1 ttl=53 time=44.6 ms
64 bytes from 8.8.8.8: icmp_seq=2 ttl=53 time=43.9 ms
64 bytes from 8.8.8.8: icmp_seq=3 ttl=53 time=43.3 ms
64 bytes from 8.8.8.8: icmp_seq=4 ttl=53 time=44.3 ms
ping -c
-c
옵션은 ping을 보낼 전체 횟수를 설정합니다. -c 5
는 5회 ping 테스트를 하고 종료합니다.
$ ping -c 5 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_seq=1 ttl=53 time=43.6 ms
64 bytes from 8.8.8.8: icmp_seq=2 ttl=53 time=44.8 ms
64 bytes from 8.8.8.8: icmp_seq=3 ttl=53 time=44.3 ms
64 bytes from 8.8.8.8: icmp_seq=4 ttl=53 time=44.0 ms
64 bytes from 8.8.8.8: icmp_seq=5 ttl=53 time=43.0 ms
--- 8.8.8.8 ping statistics ---
5 packets transmitted, 5 received, 0% packet loss, time 4006ms
rtt min/avg/max/mdev = 43.030/43.947/44.782/0.596 ms
Loading script...
Related Posts
- Ubuntu/Linux - 특정 이름이 들어간 파일 모두 찾고 삭제하기
- Ubuntu/Linux - 특정 이름이 포함된 프로세스 모두 종료
- Ubuntu/Linux - 사용자 계정 이름 확인 (id, whoami)
- Ubuntu/Linux - E: unable to locate package 에러 해결
- Ubuntu 22.04/20.04 - Yarn 설치 방법
- Linux/Ubuntu - grep 명령어로 문자열 검색
- Linux/Ubuntu - 터미널에서 seq로 명령어 N회 반복
- Linux/Ubuntu - wc 명령어로 Line(줄) 개수 세기
- bash: pip: command not found 문제 해결 (Linux/Ubuntu)
- Ubuntu 22.04 - Swap 메모리 늘리기
- Linux - 파일이 수정된 날짜/시간 확인 방법
- Linux - 파일, 디렉토리 삭제 명령어(rm -rf, rmdir)
- 우분투 22.04 - deb 파일 설치하기
- Ubuntu 20.04 - OpenJDK 11 설치, 삭제
- Linux - ps 명령어로 실행 중인 프로세스(PID) 확인
- Ubuntu 20.04 - SSH 설치와 접속 방법
- Ubuntu에서 PPA 저장소 추가, 제거 방법
- Ubuntu 22.04 - Brave 브라우저 설치
- Ubuntu 22.04 - 프로스트와이어(FrostWire) 설치
- Ubuntu 22.04 - Remmina 설치 방법
- Ubuntu 22.04 - Rust 설치하기
- Ubuntu 22.04 - 텔레그램 설치하기
- Ubuntu - Deluge 토렌트 클라이언트 설치
- Ubuntu JDK 17 (OpenJDK) 설치, 삭제
- Ubuntu 20.04 스팀(Steam) 설치 방법
- Ubuntu에서 draw.io 설치하는 방법
- 우분투에 VMware 설치하기
- [Ubuntu] VMware에서 Windows 11 설치
- Vi/Vim에서 1줄 또는 여러줄 삭제 방법
- Vi/Vim에서 라인 번호 표시하 기
- 우분투에서 rar 압축, 압축 풀기
- Ubuntu에서 구글 드라이브 사용하기 (로컬 폴더에 마운트)
- [Ubuntu] apt-cache search, 설치 가능한 패키지 검색
- Ubuntu - DNS 캐시 삭제 방법
- Ubuntu에서 사용할 수 있는 Text Editor 소개