mirror of
https://github.com/unifi-utilities/unifios-utilities.git
synced 2024-08-30 18:32:21 +00:00
Create 15-add-ssh-known-hosts.sh (#193)
enables automation / scripting using ssh and scp without needing prompting for trusting new hosts Former-commit-id: 166f743781348070b95a8b181c7146ea5930dc2b
This commit is contained in:
parent
d7e642e935
commit
6ada451310
@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
#####################################################
|
||||||
|
# ADD KNOWN HOSTS AS BELOW - CHANGE BEFORE RUNNING #
|
||||||
|
#####################################################
|
||||||
|
# set -- "known host text on a line with quotes " \ #
|
||||||
|
# "second known host on another line " \ #
|
||||||
|
# "one per line, last line has no backslash" #
|
||||||
|
#####################################################
|
||||||
|
set -- "hostname ecdsa-sha2-nistp256 AAAABIGHOSTIDENTIFIERWITHMAGICSTUFF=" \
|
||||||
|
"otherhost ecdsa-sha2-nistp256 AAAADIFFERENTHOSTMAGICSTUFF!@HJKSL="
|
||||||
|
|
||||||
|
KNOWN_HOSTS_FILE="/root/.ssh/known_hosts"
|
||||||
|
|
||||||
|
|
||||||
|
counter=0
|
||||||
|
for host in "$@"
|
||||||
|
do
|
||||||
|
## Places known host in ~/.ssh/known_hosts if not present
|
||||||
|
if ! grep -Fxq "$host" "$KNOWN_HOSTS_FILE"; then
|
||||||
|
let counter++
|
||||||
|
echo "$host" >> "$KNOWN_HOSTS_FILE"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo $counter hosts added to $KNOWN_HOSTS_FILE
|
||||||
|
|
||||||
|
|
||||||
|
exit 0;
|
Loading…
x
Reference in New Issue
Block a user