转载网址:http://www.kankanews.com/ICkengine/archives/48417.shtmlhtml
解决方案: linux
若是某台Linux服务器ping不通域名, 以下提示: 服务器
[root@localhost ~]# ping www.baidu.com ping: unknown host www.baidu.com网络
首先肯定已经链接上路由器,而且路由器可以访问外网,能够经过访问网关进行肯定dom
[root@localhost ~]# ping 8.8.8.8测试
PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.spa
64 bytes from 192.168.1.1: icmp_seq=1 ttl=64 time=2.96 ms.net
64 bytes from 192.168.1.1: icmp_seq=2 ttl=64 time=1.75 msrest
若是肯定网络没问题的状况下, 能够经过以下步骤寻找解决办法: 1) 肯定设置了域名服务器, 没有的话, 建议设置Google的公共DNS服务, 它应该不会出问题的 server
[root@localhost ~]# cat /etc/resolv.conf
search localdomain
由于个人DNS没有设置因此致使了ping外网ping不通。将dns添加到该文件中
[root@localhost ~]# vi /etc/resolv.conf
nameserver 202.98.96.68
nameserver 61.139.2.69
~
2) 确保网关已设置
# grep GATEWAY /etc/sysconfig/network-scripts/ifcfg*
——————————————————————-
/etc/sysconfig/network-scripts/ifcfg-eth0:GATEWAY=192.168.40.1
——————————————————————-
若是未设置, 则经过以下方式增长网关:
# route add default gw 192.168.40.1
或者手工编写/etc/sysconfig/network-scripts/ifcfg*文件后, 重启network服务:
# service network restart
3) 确保可用dns解析
# grep hosts /etc/nsswitch.conf
——————————————————————-
hosts: files dns
——————————————————————-
若是以上哪一个有问题, 修正后, 再测试, 应该就没问题了:
#ping -c 3 www.baidu.com
PING www.a.shifen.com (220.181.6.175) 56(84) bytes of data.
64 bytes from 220.181.6.175: icmp_seq=0 ttl=50 time=9.51 ms
64 bytes from 220.181.6.175: icmp_seq=1 ttl=50 time=8.45 ms
64 bytes from 220.181.6.175: icmp_seq=2 ttl=50 time=8.97 ms
— www.a.shifen.com ping statistics —
3 packets transmitted, 3 received, 0% packet loss, time 2002ms
rtt min/avg/max/mdev = 8.450/8.977/9.511/0.446 ms, pipe 2