Mac OS X traceroute甚至没有到达路由器网关


2

我在运行Mac OS X 10.5的Macbook Pro上遇到问题,我无法访问某些网站,例如: “themarchesa.com”

在通过wifi连接的同一LAN网络中的其他计算机上,我能够看到这些网站很好并且成功运行了traceroute。

当我从终端运行traceroute时,它甚至不会出现在无线路由器网关上:

angela-dions-macbook-pro:~ Angie$ traceroute themarchesa.com
traceroute to themarchesa.com (64.202.189.170), 64 hops max, 40 byte packets
traceroute: sendto: No route to host
 1 traceroute: wrote themarchesa.com 40 chars, ret=-1
 *traceroute: sendto: No route to host
traceroute: wrote themarchesa.com 40 chars, ret=-1

当我在google.com上运行相同的命令时,它看起来不同:

angela-dions-macbook-pro:~ Angie$ traceroute google.com
traceroute: Warning: google.com has multiple addresses; using 74.125.227.18
traceroute to google.com (74.125.227.18), 64 hops max, 40 byte packets
 1  192.168.1.1 (192.168.1.1)  3.768 ms  6.499 ms  6.716 ms
 2  * * *
 3  gig3-11.austtxk-rtr2.austin.rr.com (66.68.1.253)  15.161 ms  24.131 ms  16.291 ms
 4  Gi0-2-1-1.austtxrdcsc-rtr2.austin.rr.com (24.27.12.174)  18.678 ms  26.495 ms  16.064 ms
 5  gig6-3-0.dllatxl3-rtr1.texas.rr.com (72.179.205.76)  15.589 ms  18.537 ms  18.427 ms
 6  ae-4-0.cr0.dfw10.tbone.rr.com (66.109.6.88)  16.404 ms  24.141 ms  27.108 ms
 7  ae-1-0.pr0.dfw10.tbone.rr.com (66.109.6.179)  25.488 ms  19.721 ms  20.257 ms
 8  74.125.48.65 (74.125.48.65)  20.165 ms  22.483 ms  21.444 ms
 9  72.14.233.65 (72.14.233.65)  20.186 ms  25.394 ms  20.003 ms
10  216.239.47.54 (216.239.47.54)  24.236 ms  37.011 ms  38.239 ms
11  74.125.227.18 (74.125.227.18)  27.468 ms  27.292 ms  20.032 ms

编辑: 这是IP地址上路由获取的输出:

angela-dions-macbook-pro:~ Angie$ route get 64.202.189.170
   route to: pwfwd-v01.prod.mesa1.secureserver.net
destination: default
       mask: default
    gateway: 192.168.1.1
  interface: en1
      flags: <UP,GATEWAY,DONE,STATIC,PRCLONING>
 recvpipe  sendpipe  ssthresh  rtt,msec    rttvar  hopcount      mtu     expire
       0         0         0         0         0         0      1500         0 

这也是我的路由表信息,如果这有助于(还有什么可能导致这种情况发生)。我可以运行traceroute并访问同一局域网上其他机器上的网站(通过wifi连接到同一个路由器)。

angela-dions-macbook-pro:~ Angie$ netstat -rn
Routing tables

Internet:
Destination        Gateway            Flags    Refs      Use  Netif Expire
default            192.168.1.1        UGSc       30        0    en1
127                127.0.0.1          UCS         0        0    lo0
127.0.0.1          127.0.0.1          UH          1    19326    lo0
169.254            link#5             UCS         0        0    en1
192.168.1          link#5             UCS         4        0    en1
192.168.1.1        0:18:f8:b7:45:7c   UHLW       26      112    en1    955
192.168.1.107      7c:6d:62:d2:43:99  UHLW        0        0    en1   1198
192.168.1.111      127.0.0.1          UHS         0        0    lo0
192.168.1.255      link#5             UHLWb       3       18    en1

Internet6:
Destination                             Gateway                         Flags      Netif Expire
::1                                     link#1                          UHL         lo0
fe80::%lo0/64                           fe80::1%lo0                     Uc          lo0
fe80::1%lo0                             link#1                          UHL         lo0
fe80::%en1/64                           link#5                          UC          en1
fe80::21f:5bff:fec7:aed7%en1            0:1f:5b:c7:ae:d7                UHLW        en1
fe80::223:6cff:fe88:f0bd%en1            0:23:6c:88:f0:bd                UHL         lo0
ff01::/32                               ::1                             U           lo0
ff02::/32                               fe80::1%lo0                     UC          lo0
ff02::/32                               link#5                          UC          en1

我不知道我还能做些什么来调试这个问题,我应该用什么来帮助调试和修复这个问题?

有些人遇到了类似的问题,并使用了一些缓存清理工具(但似乎问题突然出现,感觉就像病毒一样?):


netstat -rn将显示您的路由表。我们应该将它与您的traceroute结果进行比较。
benc

的输出 route get 64.202.189.170 也可能是提供信息的。
Gordon Davisson

感谢额外的诊断工具,我编辑了这个问题,包括netstat -rn和route get。
angelamia

Answers:



1

传输 具有内置阻止列表支持,这意味着您不需要使用Peer Guardian,从而避免此类问题。


0
sudo route flush

试试吧。 我遇到类似的问题并使用此命令解决了。有些主机消失了,无法访问。


如果它解释了为什么该命令有效,这个答案会更好。路由表之前和之后的示例以说明它也会有所帮助。
kasperd
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.