I'm running a kali VM in virtualbox on a windows 11 computer. when i run tracert to google.com in the windows CMD it gives what looks like a normal output with 9 hops, but on my VM it looks like this:
traceroute -I google.com
traceroute to google.com (142.251.179.138), 30 hops max, 60 byte packets
1 pd-in-f138.1e100.net (142.251.179.138) 15.426 ms * *
I'm nearly 100% certain I'm not on the same network as google.com. I'm only using -I because using it normally looks like this:
traceroute google.com
traceroute to google.com (142.251.179.139), 30 hops max, 60 byte packets
1 [gateway IP address] ([gateway IP address]) 0.393 ms 0.378 ms 0.367 ms
2 [the exact same address] ([the exact same address again]) 15.853 ms 15.845 ms 15.835 ms
Before I set a firewall rule to allow inbound ICMPv4 packets, it looked like this (for default, -I, -U, and -T):
traceroute google.com
traceroute to google.com (142.251.179.102), 30 hops max, 60 byte packets
1 [gateway IP address] ([gateway IP address]) 5.541 ms 5.568 ms 5.549 ms
2 * * *
3 * * *
4 * * *
5 * * *
6 * * *
7 * * *
8 * * *
9 * * *
10 * * *
11 * * *
12 * * *
13 * * *
14 * * *
15 * * *
16 * * *
17 * * *
18 * * *
19 * * *
20 * * *
21 * * *
22 * * *
23 * * *
24 * * *
25 * * *
26 * * *
27 * * *
28 * * *
29 * * *
30 * * *
After also setting a rule to allow UDP, I can run it with -U and get the following:
traceroute -U google.com
traceroute to google.com (142.251.179.101), 30 hops max, 60 byte packets
1 [gateway IP] ([gateway IP]) 0.346 ms 0.392 ms 0.384 ms
2 pd-in-f101.1e100.net (142.251.179.101) 3.824 ms 4.503 ms 5.691 ms
With TCP:
sudo traceroute -T google.com
[sudo] password for kali:
traceroute to google.com (142.251.179.102), 30 hops max, 60 byte packets
1 pd-in-f102.1e100.net (142.251.179.102) 22.763 ms 28.803 ms 15.613 ms
This is the case for youtube.com and tryhackme.com as well, but if I try duolingo.com (this time EVERY line returns * * * rather than just every line after the gateway IP):
traceroute -I duolingo.com
traceroute to duolingo.com (34.205.80.233), 30 hops max, 60 byte packets
1 * * *
2 * * *
3 * * *
4 * * *
5 * * *
6 * * *
7 * * *
8 * * *
9 * * *
10 * * *
11 * * *
12 * * *
13 * * *
14 * * *
15 * * *
16 * * *
17 * * *
18 * * *
19 * * *
20 * * *
21 * * *
22 * * *
23 * * *
24 * * *
25 * * *
26 * * *
27 * * *
28 * * *
29 * * *
30 * * *
All other options (including default) give the same result as for google (but ending with Duolingo's IP address).