0
When I use traceroute
(actually tracert
command for Windows) for different destination addresses, I always get same hop counts.
For example:
For superuser.com
, I get:
Tracing route to superuser.com [151.101.1.69]
over a maximum of 30 hops:
1 6 ms 1 ms 1 ms 192.168.0.1
2 2 ms 3 ms 3 ms 10.201.0.1
3 4 ms 2 ms 2 ms angeldropsltd.com [103.242.217.37]
4 8 ms 4 ms 4 ms 151.101.1.69
Trace complete.
For microsoft.com
, I get:
Tracing route to microsoft.com [23.100.122.175]
over a maximum of 30 hops:
1 3 ms 3 ms 1 ms 192.168.0.1
2 5 ms 2 ms 2 ms 10.201.0.1
3 4 ms 2 ms 2 ms angeldropsltd.com [103.242.217.37]
4 7 ms 4 ms 4 ms 23.100.122.175
Trace complete.
It is similar for all other sites I have tried so far.
I want to know the possible reasons why this is happening. I have some brief knowledge how traceroute
works. Different destinations should have different hop counts. My ISP (AngelDrops) might not have all the destination servers directly connected. I think, my ISP is doing something here. So what are the reasons for this happening?
1Try with
tcptraceroute
, as bare traceroute is using UDP/ICMP that is often specifically filtered/handled differently from "true" user traffic, often over TCP, like the probable HTTP examples you gave. – Patrick Mevzek – 2018-04-03T23:14:50.327