Trace the path of a packet from your device to a destination on an IP network.
Traceroute is a network diagnostic tool used to track the pathway taken by a packet of information from its source to its destination. It provides a detailed view of the route that network packets take across an IP network.
Discover and execute TRACEROUTE commands to trace network routes.
The TRACEROUTE command is a network diagnostic tool used to trace the path packets take to a destination on an IP network. It shows the time taken for each hop along the way.
Shows the path packets take to google.com and the time taken for each hop. This is useful for identifying network bottlenecks or routing issues.
traceroute google.comLimits the traceroute to a maximum of 10 hops to github.com. This is helpful when you're only interested in the first part of the route or want to speed up the process.
tracert -h 10 github.comSets a 5-second timeout for each hop in the traceroute to example.com. This can be useful for slow or congested networks where responses might take longer.
traceroute -w 5 example.comLimits the traceroute to 10 hops to cloudflare.com. Windows uses 'tracert' instead of 'traceroute' and has slightly different syntax.
tracert /h 10 cloudflare.comDisplays the IP addresses instead of hostnames for each hop to github.com. This can speed up the traceroute process and is useful when DNS resolution is slow or unavailable.
tracert -d github.comProvide your own TRACEROUTE command to test.