ping: unknown host 解决办法

如果ping命令返回如下错误,那主要的可能性就是系统的DNS设置有误。

  1. bash-2.05# ping www.sina.com.cn
  2. ping: unknown host www.sina.com.cn
可以通过如下方法来解决,此方法已经在linux和solaris系统下通过验证。

1) 确定设置了域名服务器
没有的话, 建议设置Google的公共DNS服务, 它应该不会出问题的

# cat /etc/resolv.conf
-------------------------------------------------------------------
nameserver 8.8.8.8
nameserver 8.8.4.4
-------------------------------------------------------------------

2) 确保路由表正常

  1. bash-2.05# netstat -rn
  2. Kernel IP routing table
  3. Destination Gateway Genmask Flags MSS Window irtt Iface
  4. 0.0.0.0 10.10.10.1 0.0.0.0 UG 0 0 0 eth0


如果未设置, 则通过如下方式增加网关:
# route add default gw 192.168.40.1


3) 确保可用dns解析

# grep hosts /etc/nsswitch.conf
-------------------------------------------------------------------
hosts:      files dns
-------------------------------------------------------------------

来自:http://blog.chinaunix.net/uid-608135-id-3314327.html

你可能感兴趣的:(其它)