To get the number of "hops" you can use a: tracert [host]
To get the largest non-fragmented MTU(packet size), you can use: ping -f -l [packetsize] [host] (where -L is the MTU -28).
For example: ping -f -l 1472 speedguide.net
This means that 1472 bytes packet can travel to that host. You have to add 28 to get the MTU size (20-byte IP and 8-byte ICMP headers), so 1472+28 means 1500 MTU can travel to that host.
Bookmarks