Skip to content

Instantly share code, notes, and snippets.

@brunobraga
Created November 1, 2013 00:04
Show Gist options
  • Star 18 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save brunobraga/7259197 to your computer and use it in GitHub Desktop.
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).
#!/bin/bash
#
# File: pingi
#
# Purpose: Ping Improved. Actually just handles better the timeout/unreachable.
#
# Author: BRAGA, Bruno <bruno.braga@gmail.com>
#
# 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
@brunobraga
Copy link
Author

An example of usage:

image

@lolmaus
Copy link

lolmaus commented Mar 28, 2014

This is absolutely awesome, @brunobraga!

Can you please modify it to report packet loss percentage and count on every line?

@skuran
Copy link

skuran commented May 22, 2018

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