Skip to content

Instantly share code, notes, and snippets.

@vamdt
Last active August 16, 2017 03:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vamdt/c76b2a5087d921371a2641577131280a to your computer and use it in GitHub Desktop.
Save vamdt/c76b2a5087d921371a2641577131280a to your computer and use it in GitHub Desktop.
ssh_connection_test
for i in $(cat ip.txt)
do
ssh -q -p 16322 -o "BatchMode=yes" -o "ConnectTimeout=3" "$i" "echo 2>&1" && echo "$i OK" || echo "$i NOK"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment