linuxping域名
⑴ linux 下 ping 域名,在通之前總需要等一段時間,不知道是為什麼。
因為linux和window不同,linux沒有本地dns緩存,如果想快一點,可以用pdnsd設置本地緩存;沒有本地dns緩存,在你上網或ping網址的時候都會先解析dns,讓後才是其他,所以多數人就會感覺linux上網慢;
⑵ linux系統怎麼ping網路
在Linux系統中使用命令"ping 網址"可以ping網路。例如,缺團使用"ping www.example.com"可以ping網站www.example.com。
拓者扮鏈展:除了ping網路,Linux系統還可以使用traceroute命首孫令來查看網路路徑。使用該命令可以追蹤從主機到另一個主機之間的路由,並顯示每個路由中經過的主機列表。
⑶ Linux能ping通IPping不通域名
系統大全為您提供
今天碰到個問題,能ping通IP地址,ping不通域名,一直以為是DNS解析伺服器的問題,找了半天,問題不在這里。
[root@wwwpostfix]#cat/etc/resolv.conf
nameserver202.96.209.133
optionsattempts:1timeout:1rotate
#nameserver10.202.72.117
nameserver10.202.72.118
nameserver114.114.114.114
nameserver8.8.8.8
[root@wwwpostfix]#
看了一下路由表,問題也不在路由網關上。
[root@wwwpostfix]#netstat-rn
KernelIProutingtable
Destination Gateway Genmask Flags MSSWindow irttIface
115.28.80.0 0.0.0.0 255.255.252.0 U 00 0eth1
10.163.176.0 0.0.0.0 255.255.240.0 U 00 0eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 00 0eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 00 0eth1
192.168.0.0 10.163.191.247 255.255.0.0 UG 00 0eth0
172.16.0.0 10.163.191.247 255.240.0.0 UG 00 0eth0
10.0.0.0 10.163.191.247 255.0.0.0 UG 00 0eth0
0.0.0.0 115.28.83.247 0.0.0.0 UG 00 0eth1
[root@wwwpostfix]#
[root@wwwpostfix]#
[root@wwwpostfix]#
[root@wwwpostfix]#
[root@wwwpostfix]#route
KernelIProutingtable
Destination Gateway Genmask FlagsMetricRef UseIface
115.28.80.0 * 255.255.252.0 U 0 0 0eth1
10.163.176.0 * 255.255.240.0 U 0 0 0eth0
link-local * 255.255.0.0 U 1002 0 0eth0
link-local * 255.255.0.0 U 1003 0 0eth1
192.168.0.0 10.163.191.247 255.255.0.0 UG 0 0 0eth0
172.16.0.0 10.163.191.247 255.240.0.0 UG 0 0 0eth0
10.0.0.0 10.163.191.247 255.0.0.0 UG 0 0 0eth0
default 115.28.83.247 0.0.0.0 UG 0 0 0eth1
然後再看看:
[root@wwwpostfix]#grephosts/etc/nsswitch.conf
#hosts: dbfilesnisplusnisdns
#hosts: filesdns
hosts: dnsfiles
我修改為先dns,在files,測試了,也還是不通。
最後發現是防火牆的原因,我開啟了防火牆,造成了ping域名不通。
域名解析用到了53埠,需要把下面的設置配置到防火牆里即可。
iptables-AINPUT-pudp--sport53-jACCEPT
iptables-AOUTPUT-pudp--dport53-jACCEPT
iptables-AINPUT-pudp--dport53-jACCEPT
iptables-AOUTPUT-pudp--sport53-jACCEPT
以上就是系統大全給大家介紹的如何使的方法都有一定的了解了吧,好了,如果大家還想了解更多的資訊,那就趕緊點擊系統大全官網吧。
本文來自系統大全http:///如需轉載請註明!推薦:win7純凈版
⑷ LINUX系統,每次ping域名都要等十幾秒才能通,通了以後不丟包
看一下你的dns設置,
cat /etc/resolv.conf
再看一下你的nsswitch設置,
cat /etc/nsswitch.conf | grep hosts