现在的位置: 首页 > 综合 > 正文

Linux下可ping IP地址,但是ping不通域名

2013年06月23日 ⁄ 综合 ⁄ 共 872字 ⁄ 字号 评论关闭

 

可能解决问题的方法一:
在/etc/resolv.conf中添点东西

格式如下:
nameserver xxx.xxx.xxx.xxx
nameserver xxx.xxx.xxx.xxx

后面的ip地址是dns服务器的地址,可以添加多个地址

如:
nameserver 202.106.46.151

然后
service network restart

 

可能解决问题的方法二

今天在开发的同事来说,内网不能通过域名访问自己的服务器!然后做了下面的测试发现这样的问题:

  [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 即可!

详文参考:http://www.zhanne.com/zzxy/fwq/Linuxfwq/2010/03/25/49312.html

抱歉!评论已关闭.