add ssh tooling

This commit is contained in:
Joel Beckmeyer 2023-07-28 09:43:32 -04:00
parent 08e7bb2f31
commit cbe5f594b5
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
#!/bin/sh
tmpfile=$(mktemp /tmp/ssh-check-host-fingerprints.tmp.XXXXXX)
ssh-keyscan -p "$2" "$1" 2>/dev/null > "$tmpfile"
if [ -s "$tmpfile" ]; then
fingerprints=$(ssh-keygen -lf "$tmpfile" 2>/dev/null | awk '{print $2}')
for fingerprint in $fingerprints
do
if [ "$fingerprint" = "$3" ];
then
rm "$tmpfile"
exit 0
fi
done
else
rm "$tmpfile"
exit 1
fi