• 批量改主机名报错:Address 192.168.43.117 maps to bogon, but this does not map back to the address


    ssh连接批量修改主机名报出以下提示:

    [root@bqh-nfs-123 ~]# vim modfilyhostname.sh
    [root@bqh-nfs-123 ~]# sh modfilyhostname.sh 
    Address 192.168.43.117 maps to bogon, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
    Address 192.168.43.118 maps to bogon, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
    to the address - POSSIBLE BREAK-IN ATTEMPT!
    Address 192.168.43.119 maps to bogon, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
    to the address - POSSIBLE BREAK-IN ATTEMPT!
    Address 192.168.43.120 maps to bogon, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
    to the address - POSSIBLE BREAK-IN ATTEMPT!
    Address 192.168.43.121 maps to bogon, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
    to the address - POSSIBLE BREAK-IN ATTEMPT!
    Address 192.168.43.122 maps to bogon, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
    to the address - POSSIBLE BREAK-IN ATTEMPT!
    Address 192.168.43.123 maps to bogon, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
    to the address - POSSIBLE BREAK-IN ATTEMPT!
    Address 192.168.43.124 maps to bogon, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!

    一般是在配置无密码登录时导致,解决方法如下:

    修改本机ssh_config文件GSSAPIAuthentication yse 改为:GSSAPIAuthentication no

    [root@bqh-117 ~]# sed -i 's#GSSAPIAuthentication yes#GSSAPIAuthentication no#g' /etc/ssh/ssh_config 
    [root@bqh-117 ~]# sed -n 50p /etc/ssh/ssh_config
        GSSAPIAuthentication no

    GSSAPIAuthentication的作用:是否允许使用基于GSSAPI的用户认证

  • 相关阅读:
    Go 指针
    Go 字符串
    Go Maps
    Go 可变参数函数
    Go 数组和切片
    pyqt5实现窗口跳转并关闭上一个窗口
    spy++查找窗口句柄
    Python中Tk模块简单窗口设计
    pyqt5无边框拖动
    pyqt5 GUI教程
  • 原文地址:https://www.cnblogs.com/su-root/p/11261671.html
Copyright © 2020-2023  润新知