반응형
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://scbyun.com/740
728x90
반응형
'스크립트' 카테고리의 다른 글
[스크립트] thread dump && heap dump (0) | 2016.11.26 |
---|---|
IIS 로그 압축 스크립트 (0) | 2016.03.30 |
CentOS 4에서 Oracle 11g R2를 설치하는 스크립트 (0) | 2014.09.25 |
하이퍼쓰레딩(Hyper Threading) 활성화 상태 확인하는 스크립트 (0) | 2014.06.20 |
DSR 루프백 설정하는 방법(dsr loopback 설정) (0) | 2014.03.14 |