Linux ssh/scp接続時にyes(公開鍵検証)の入力を避け、POSIBLE BREAK-IN ATTEMの発生を防止

1397 ワード

方法1:接続時にStrictHostKeyChecking=noを加える
ssh -o StrictHostKeyChecking=no root@192.168.1.100

方法2:変更/etc/ssh/ssh_configプロファイル、追加:
StrictHostKeyChecking no

 
また、このような警告を防止するために、POSIBLE BREAK-IN ATTEMPT!
Address 192.168.0.101 maps to localhost, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!

/etc/ssh/ssh_configプロファイルの
GSSAPIAuthentication yes

変更後:
GSSAPIAuthentication no

sedストリームエディタを使用して、変更を完了できます.
sed -i 's/#   StrictHostKeyChecking ask/StrictHostKeyChecking no/' /etc/ssh/ssh_config
sed -i 's/GSSAPIAuthentication yes/GSSAPIAuthentication no/' /etc/ssh/ssh_config
service sshd restart

 
転載先:https://www.cnblogs.com/imzye/p/5133749.html