Traceroute provides a route that takes longer than 100 hops

latencynetworking

I have a server that I configured using zoneedit. Upon running "traceroute" on it I notice that it takes more than 100 hops.

  • How do I lower the number of hops?
  • Is this really that bad or am I too paranoid?
  • Would the nameserver play a role in the number of hops.

Best Answer

Over 100 hops indicates that there is a problem somewhere, or that you don't have access to a segment of the path.

Do you get * * * or repeated IP addresses?
Try with the -m option to limit the number of hops to a number < 100

  traceroute -m 90 mydomain.tld

thus you should get at least some indications about what is going wrong.

Related Topic