স্ট্রাইকহস্টকিচেকিং বিকল্পটি ব্যবহার করুন, উদাহরণস্বরূপ:
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 এর পরিবর্তে হ্যাঁ কী বলবে তা বলে" ")।