combines ICMP based traceroute and pings into a single live stream view + report output command line tool.
I learned about MTR when I was experiencing a noisy neighbor issue with my linode VM and needed to rule out networking and machine other resource issues.
Example mtr run from the coffee shop I'm hacking from today:
some hops have disabled responding to ICMP network traffic
overall latency range: 78.2ms - 278.8ms
average latency: 120.1ms
what are all those flags:
-w: print layout set to report mode (so that hostnames print properly)
-b: include IP addresses
-z: include autonomous system number (ASN) -- a unique routing identifer
-c: specify a count -- how much traffic you want the test to pass before kicking out the report (10 is not a very good test, but 100 is probably a better longer term view of the current state of networking)
mtr = my traceroute
combines ICMP based traceroute and pings into a single live stream view + report output command line tool.
I learned about MTR when I was experiencing a noisy neighbor issue with my linode VM and needed to rule out networking and machine other resource issues.
Example
mtr
run from the coffee shop I'm hacking from today:From this output you can see that:
78.2ms - 278.8ms
120.1ms
what are all those flags:
-w
: print layout set to report mode (so that hostnames print properly)-b
: include IP addresses-z
: include autonomous system number (ASN) -- a unique routing identifer-c
: specify a count -- how much traffic you want the test to pass before kicking out the report (10 is not a very good test, but 100 is probably a better longer term view of the current state of networking)