ping google.com
在我的Windows7 cmd提示符下不起作用。但可以通过浏览器访问google
以下是快照
注意:没有网站可以ping ..所有请求都超时
但是,google.com
在所有浏览器中都可以正常工作。下面是快照。
注意:我正在使用无线连接访问Internet。
请帮我解决这个问题。提前致谢。
另外,以下是输出 pathping google.com
ping google.com
在我的Windows7 cmd提示符下不起作用。但可以通过浏览器访问google
以下是快照
注意:没有网站可以ping ..所有请求都超时
但是,google.com
在所有浏览器中都可以正常工作。下面是快照。
注意:我正在使用无线连接访问Internet。
请帮我解决这个问题。提前致谢。
另外,以下是输出 pathping google.com
Answers:
从有限的信息(我们知道有关您的网络设置)的信息来看,似乎有一些东西阻止了ICMP请求。我将看一下您的路由器,并确保您最近没有更改设置以不允许出站ICMP(这很奇怪),或者与您的提供商进行交谈,看看他们是否阻止了请求。
我确实想知道您的网络浏览器是否正常运行,为什么您要ping google?您在连接方面是否还有其他问题(阻止的Torrent,FTP等?)可能有助于弄清问题所在?
尝试跟踪路由以查看可以走多远也可能会有所帮助。
tracert www.google.com
您可能会遇到一个常见的问题,即能够通过其IP地址而不是通过域名ping域。在您对Google的原始ping操作中,返回的公开地址为173.194.36.99
。在尝试对其他IP进行故障排除之前,我会先尝试ping该IP。
如果事实证明您可以ping通IP,但不能ping通域名,那么您将需要更多关于DNS Resolution的信息。
遇到与您类似的各种奇怪的Internet问题后,我将提供我使用的各种方法来解决问题。我对它们为什么会起作用的知识充其量只是中等程度的,但是他们倾向于解决问题:
顺序不重要,所有步骤都一样。其中任何一种或几种的组合都可以做到。
全部来自命令提示符:
:: resets the ipv4 interface
netsh interface ip reset
:: flush and reregister DNs
ipconfig /flushdns
net stop dnscache
net start dnscache
ipconfig /registerdns
:: clear persistent routes
route print -f
:: start / restart mrxdav
net stop netbt
net stop mrxdav 2>nul
sleep 60
net start mrxdav
net start netbt
:: clean the arpcache
arp -a -d
:: I might have the order of the switches backwards and the order matters, so if that doesnt do anything put the -d before the -a
:: make sure winhttp and webclient services are running (this is a mystery to me / neither appear necessary, but both have fixed my problem on various occasions)
net start webclient
net start winhttp
最后,如果仍然没有解决,请重启路由器并重启PC。它不会告诉您出什么问题了,但是几乎可以肯定会解决问题。
您正在比较苹果和桔子。
Ping和Web浏览是两件事。许多网站阻止传入的ping来防止过多的网络负载和DoS攻击。
但是,我能够ping那些地址,所以听起来好像有些东西正在过滤掉您这一边的ping。您可能需要尝试pathping google.com
查看ping过滤掉的位置。
ICMP rules, Block all ICMP requests
,等等。如果(ICMP)[ en.wikipedia.org/wiki/Internet_Control_Message_Protocol](ping)被路由器阻止,则您将无法发送任何数据包。
ping时,最后添加“ -4”。就像“ ping google.com -4”
我知道问题发布已经6年了。但这可能会帮助其他人。
您可以尝试重新启动路由器。
如果不这样做:
:: reset the ipv4 interface
netsh interface ip reset
:: flush and reregister DNs
ipconfig flushdns
net stop dnscache
net start dnscache
ipconfig /registerdns