zoukankan      html  css  js  c++  java
  • 好记心不如烂笔头,ssh登录 The authenticity of host 192.168.0.xxx can't be established. 的问题

    The authenticity of host 'git.coding.net (123.59.85.184)' can't be established.
    RSA key fingerprint is SHA256:jok3FH7q5LJ6qvE7iPNehBgXRw51ErE77S0Dn+Vg/Ik.
    Are you sure you want to continue connecting (yes/no)?

    用ssh登录一个机器(换过ip地址),提示输入yes后,屏幕不断出现y,只有按ctrl + c结束

    错误是:The authenticity of host 192.168.0.xxx can't be established.

    以前和同事碰到过这个问题,解决了,没有记录,这次又碰到了不知道怎么处理,还好有QQ聊天记录,查找到一下,找到解决方案:

    执行ssh  -o StrictHostKeyChecking=no  192.168.0.xxx 就OK

    网址是:

    http://blog.ossxp.com/2010/04/1026/

    记一下,防止又忘记了,又快到3点了,无数个不眠之夜啊。

    2011/10/11

    某天机器又改IP了,ssh后,报:

    mmt@FS01:~$ ssh  -o StrictHostKeyChecking=no  192.168.0.130
    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    @    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 the RSA host key has just been changed.
    The fingerprint for the RSA key sent by the remote host is
    fe:d6:f8:59:03:a5:de:e8:29:ef:3b:26:6e:3d:1d:4b.
    Please contact your system administrator.
    Add correct host key in /home/mmt/.ssh/known_hosts to get rid of this message.
    Offending key in /home/mmt/.ssh/known_hosts:38
    Password authentication is disabled to avoid man-in-the-middle attacks.
    Keyboard-interactive authentication is disabled to avoid man-in-the-middle attacks.
    Permission denied (publickey,password).

     注意这句

    Add correct host key in /home/mmt/.ssh/known_hosts to get rid of this message.

    执行:

    mv  /home/mmt/.ssh/known_hosts known_hosts.bak

    再连:

    ssh  -o StrictHostKeyChecking=no  192.168.0.130

    OK了!

  • 相关阅读:
    ffmpeg一些filter使用方法、以及一些功能命令
    Hibernate调试——定位查询源头
    emmet语法
    [心得]传统IT转互联网面试经验分享
    Java中的集合类型的继承关系图
    Java的IO操作中有面向字节(Byte)和面向字符(Character)两种方式
    oracle求时间差的常用函数
    jdbc读取新插入Oracle数据库Sequence值的5种方法
    Xpath语法格式整理
    Oracle中 Instr 这个函数
  • 原文地址:https://www.cnblogs.com/aivnfjgj/p/7355174.html
Copyright © 2011-2022 走看看