Sử dụng tùy chọn StricthostKeyChecking, ví dụ:
ssh -oStrictHostKeyChecking=no $h uptime
Tùy chọn này cũng có thể được thêm vào ~ / .ssh / config, vd:
Host somehost
Hostname 10.0.0.1
StrictHostKeyChecking no
Lưu ý rằng khi các phím máy chủ đã thay đổi, bạn sẽ nhận được cảnh báo, ngay cả với tùy chọn này:
$ 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
Nếu máy chủ của bạn không thường xuyên được cài đặt lại, bạn có thể làm cho điều này kém an toàn hơn (nhưng thuận tiện hơn cho các khóa máy chủ thường xuyên thay đổi) với -oUserKnownHostsFile=/dev/null
tùy chọn. Điều này loại bỏ tất cả các khóa máy chủ nhận được để nó sẽ không bao giờ tạo cảnh báo.
Với 18.04, có một khả năng mới : StrictHostKeyChecking=accept-new
. Từ 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
xuất ra "y", bạn có thể đã gặp may mắn hơnfor h in $SERVER_LIST; do yes yes | ssh $h "uptime"; done
(lưu ý thêm có, cho biết có gì để nói thay vì "y ").