歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux服務器 >> linux下能ping ip不能ping域名

linux下能ping ip不能ping域名

日期:2017/3/2 16:34:39   编辑:Linux服務器

今天在開發的同事來說,內網不能通過域名訪問自己的服務器!然後做了下面的測試發現這樣的問題:

[root@Aaronwang ~]# ping www.aaronw.cn
ping: unknown host www.aaronw.cn
[root@Aaronwang ~]#ping 192.168.1.1
PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
64 bytes from 192.168.1.1: icmp_seq=1 ttl=64 time=0.537 ms
64 bytes from 192.168.1.1: icmp_seq=2 ttl=64 time=0.430 ms
— 192.168.1.1 ping statistics —
2 packets transmitted, 2 received, 0% packet loss, time 999ms
rtt min/avg/max/mdev = 0.430/0.483/0.537/0.057 ms
[root@Aaronwang ~]#cat /etc/host.conf
order bind,hosts

經過一翻查找後解決了,原因和方法如下:

[root@Aaronwang ~]# grep host /etc/nsswitch.conf
#hosts: db files nisplus nis dns
hosts: files
主機只找文件不走dns,將其該成hosts: files dns 即可!

Copyright © Linux教程網 All Rights Reserved