Created
November 1, 2013 00:04
-
-
Save brunobraga/7259197 to your computer and use it in GitHub Desktop.
A simple script wrapping ping for better output on issues (host unreachable or timeout).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# File: pingi | |
# | |
# Purpose: Ping Improved. Actually just handles better the timeout/unreachable. | |
# | |
# Author: BRAGA, Bruno <[email protected]> | |
# | |
# Copyright: | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | |
# implied. See the License for the specific language governing | |
# permissions and limitations under the License. | |
# | |
host=$1 | |
if [ -z $host ]; then | |
echo "Usage: `basename $0` [HOST]" | |
exit 1 | |
fi | |
while :; do | |
result=`ping -W 1 -c 1 $host | grep 'bytes from '` | |
if [ $? -gt 0 ]; then | |
echo -e "`date +'%Y/%m/%d %H:%M:%S'` - host $host is \033[0;31mdown\033[0m" | |
else | |
echo -e "`date +'%Y/%m/%d %H:%M:%S'` - host $host is \033[0;32mok\033[0m -`echo $result | cut -d ':' -f 2`" | |
sleep 1 # avoid ping rain | |
fi | |
done |
This is absolutely awesome, @brunobraga!
Can you please modify it to report packet loss percentage and count on every line?
Hello I bumped in this script on Stack Exchange, your code is exactly what I wanted but there is a small issue. If the hostname is not resolved "sleep" statement is never run and i this case there is a flood of "name resolution error". Please move the sleep command out of if statement but keep it in while loop. Thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
An example of usage: