您的位置:首页 > 其它

this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!

2016-02-23 11:57 603 查看
CentOS系统ssh连接远程服务器,报警信息 Address X.X.X.X maps to localhost, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT! 如下所示:
[root@chenhp ~]# ssh root@192.168.0.203
Address 192.168.0.203 maps to localhost, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
root@192.168.0.203's password:
Last login: Thu Feb 21 03:01:49 2013 from desktop100.example.com

解决方法:修改本机ssh_config文件
客户端进行如下修改:
[root@chenhp ~]# echo "GSSAPIAuthentication no" >> ~/.ssh/config

服务端进行如下修改:
[root@192.168.0.203 ~]# vim /etc/ssh/ssh_config
GSSAPIAuthentication no
然后重启sshd服务即可。
[root@192.168.0.203 ~]# service sshd restart

测试OK:
[root@chenhp ~]# ssh root@192.168.0.203
root@192.168.0.203's password:
Last login: Thu Feb 21 03:55:05 2013 from 192.168.0.11

本文出自 “菜鸟中的战斗机” 博客,请务必保留此出处http://linushai.blog.51cto.com/4976486/1744236
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: