ping命令返回如下错误 可能是DNS设置有误
# ping www.sina.com.cn
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)路由表正常
# netstat -rn
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
192.168.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0
0.0.0.0 192.168.0.1 0.0.0.0 UG 0 0 0 eth0
如果未设置, 则增加网关:
# route add default gw 192.168.0.1
3) 确保可用dns解析
# grep hosts /etc/nsswitch.conf
hosts:files dns
files 使用/etc/hosts文件
hosts: dns表示只用DNS解析主机
host: files表示只用/etc/hosts文件解析主机
hosts: files dns
将使用/etc/hosts文件解析主机,表示如果无法解析主机名将使用DNS
如果上面的方法都不能解决问题 在看看iptables的配置