본문 바로가기

리눅스

ping check 스크립트

728x90

ping check 스크립트

vim pingcheck.sh
#!/bin/bash

while true; do
    if ping -c 1 192.168.2.1 >/dev/null; then
        echo "$(date '+%Y-%m-%d %H:%M:%S') : Success" >> tempfile
    else
        echo "$(date '+%Y-%m-%d %H:%M:%S') : Fail" >> tempfile
    fi
    sleep 1
done

이제 위의 코드는 1초마다 192.168.2.1에 대한 ping을 수행하고 결과를 tempfile에 기록하는 스크립트로 사용할 수 있습니다.

chmod +x pingcheck.sh
bash pingcheck.sh &
$ tail -f tempfile
2015-03-27 13:41:35 : Success
2015-03-27 13:41:36 : Success
2015-03-27 13:41:37 : Success
2015-03-27 13:41:38 : Success
2015-03-27 13:41:39 : Success
2015-03-27 13:41:50 : Fail
2015-03-27 13:42:01 : Fail
2015-03-27 13:42:12 : Fail
2015-03-27 13:42:23 : Fail
2015-03-27 13:42:34 : Fail
2015-03-27 13:42:45 : Fail

 

참고URL

- ping, telnet으로 통신(포트) 상태 확인 : https://sangchul.kr/36

 

728x90