Skip to content

Instantly share code, notes, and snippets.

@jjnilton
Created December 19, 2016 05:39
Show Gist options
  • Save jjnilton/ba06375050c368df1f4dda9a85629cab to your computer and use it in GitHub Desktop.
Save jjnilton/ba06375050c368df1f4dda9a85629cab to your computer and use it in GitHub Desktop.
log ping
echo "Ping failures to 208.67.222.222" >/home/brad/pinglog
while true; do
if ! ping -c 1 -q 208.67.222.222 >/dev/null; then
date >> /home/brad/pinglog
fi
sleep 57
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment