博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Are you sure you want to continue connecting etc ssh ssh_config StrictHostKeyChecking no
阅读量:7005 次
发布时间:2019-06-27

本文共 655 字,大约阅读时间需要 2 分钟。

Are you sure you want to continue connecting (yes/no)

每次ssh 进入一台新机器都会跳出如下的提示:

The authenticity of host '111.222.333.444 (111.222.333.444)' can't be established.

RSA key fingerprint is f3:cf:58:ae:71:0b:c8:04:6f:34:a3:b2:e4:1e:0c:8b.
Are you sure you want to continue connecting (yes/no)? 

感觉很烦,有以下方法可以解决这个问题:

 

1. 加入一个参数:

ssh -o "StrictHostKeyChecking no" user@host

 

2.修改配置文件

在文件/etc/ssh/ssh_config(全局)或者~/.ssh/config(某用户)开头加入以下内容:

 

Host 192.168.0.*

   StrictHostKeyChecking no

   UserKnownHostsFile=/dev/null

 

or 

 

Host *

   StrictHostKeyChecking no
   UserKnownHostsFile=/dev/null

posted on
2016-08-11 12:46 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/ruiy/p/5760532.html

你可能感兴趣的文章