2

i use tracert in power shell,but it can not show all path,some parts talks Request timed out.

Tracing route to google.com [216.58.212.78]
over a maximum of 30 hops:

  1    33 ms    33 ms    32 ms  172.31.4.1
  2    33 ms    33 ms    32 ms  192.168.160.2
  3     *        *        *     Request timed out.
  4     *        *        *     Request timed out.
  5     *        *        *     Request timed out.
  6     *        *        *     Request timed out.
  7     *        *        *     Request timed out.
  8     *        *        *     Request timed out.
  9     *        *        *     Request timed out.
 10     *        *        *     Request timed out.
 11     *        *        *     Request timed out.
 12     *        *        *     Request timed out.
 13     *        *        *     Request timed out.
 14     *        *        *     Request timed out.
 15     *        *        *     Request timed out.
 16     *        *        *     Request timed out.
 17     *        *        *     Request timed out.
 18     *        *        *     Request timed out.
 19   173 ms   168 ms   169 ms  216.58.212.78

Trace complete.

i set hops to 200,300,Request timed out to 3,5,10 second but it is same before, how i can tracert that has complete reponse? thanks for reply

1 Answers1

5

This does not look Powershell-related at all. Instead, it looks like your network (after 192.168.160.2) is filtering at least the ICMP Time exceeded responses, which is what tracert / traceroute relies upon to generate the routing path trace.

It does not matter what traceroute implementation you are using or how you tweak the parameters of the call - your network administrators have broken the network for you, most likely due to the misconception that ICMP is evil.

the-wabbit
  • 40,319
  • 13
  • 105
  • 169
  • thanks very much you rescued me from dizzy.i will test it with psiphon – stackprogramer Feb 04 '16 at 07:57
  • with filter break it has same response,what solution for overcome this!!!!!???? – stackprogramer Feb 04 '16 at 08:06
  • 1
    @stackprogramer oh, I see, it's one of *those* networks. I am not familiar with psiphon, but according to their docs, you should be able to use traceroute in "VPN" mode which is establishing an L2TP tunnel. If it does not work either, try a different VPN tunnel solution. – the-wabbit Feb 04 '16 at 08:49