mtr 0.65_2 Diagnostics: mtr true yes mtr mtr mtr combines the functionality of the "traceroute" and "ping" programs into a single network diagnostic tool
Diagnostics
mtr-nox11.xml
IP or Hostname hostname Enter the IP address or hostname that you would like to traceroute to. input Count count This is the number of pings to send, each one takes 1 second input Defaults to 10 No DNS Lookup nodns Use this option to force mtr to display numeric IP numbers and not try to resolve the host names checkbox $mtr_options = " -r"; if($_POST['count']) $mtr_options .= " -c " . $_POST['count']; if($_POST['nodns']) $mtr_options .= " -n"; $mtr_options .= " " . $_POST['hostname']; system("/usr/local/sbin/mtr" . $mtr_options);