उदाहरण के लिए, StrictHostKeyChecking विकल्प का उपयोग करें:
ssh -oStrictHostKeyChecking=no $h uptime
इस विकल्प को ~ / .ssh / config में भी जोड़ा जा सकता है, जैसे:
Host somehost
Hostname 10.0.0.1
StrictHostKeyChecking no
ध्यान दें कि जब होस्ट कुंजी बदल गई है, तो आपको इस विकल्प के साथ एक चेतावनी भी मिलेगी:
$ ssh -oStrictHostKeyChecking=no somehost uptime
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that a host key has just been changed.
The fingerprint for the RSA key sent by the remote host is
31:6f:2a:d5:76:c3:1e:74:f7:73:2f:96:16:12:e0:d8.
Please contact your system administrator.
Add correct host key in /home/peter/.ssh/known_hosts to get rid of this message.
Offending RSA key in /home/peter/.ssh/known_hosts:24
remove with: ssh-keygen -f "/home/peter/.ssh/known_hosts" -R 10.0.0.1
Password authentication is disabled to avoid man-in-the-middle attacks.
Keyboard-interactive authentication is disabled to avoid man-in-the-middle attacks.
ash: uptime: not found
यदि आपके मेजबानों को अक्सर पुनर्स्थापित नहीं किया जाता है, तो आप विकल्प के साथ इसे कम सुरक्षित (लेकिन अक्सर बदलते मेजबान कुंजी के लिए अधिक सुविधाजनक) बना सकते हैं -oUserKnownHostsFile=/dev/null
। यह सभी होस्ट कुंजी प्राप्त करता है ताकि यह चेतावनी उत्पन्न न करे।
18.04 के साथ, एक नई संभावना है StrictHostKeyChecking=accept-new
:। से man 5 ssh_config
:
If this flag is set to “accept-new” then ssh will automatically
add new host keys to the user known hosts files, but will not
permit connections to hosts with changed host keys. If this flag
is set to “no” or “off”, ssh will automatically add new host keys
to the user known hosts files and allow connections to hosts with
changed hostkeys to proceed, subject to some restrictions.
yes
आउटपुट "y" की उम्मीद कर रहा है , तो आपको बेहतर किस्मत मिली होगीfor h in $SERVER_LIST; do yes yes | ssh $h "uptime"; done
(अतिरिक्त हाँ पर ध्यान दें, जो बताता है कि "y" के बजाय क्या कहना चाहिए ")।