diff --git a/index.php b/index.php index 2fe9874..73ce7e0 100644 --- a/index.php +++ b/index.php @@ -293,9 +293,9 @@ $ip =$_POST['IP']; if (filter_var($ip, FILTER_VALIDATE_IP)) { echo "Pinge $ip:
";
-					echo shell_exec('ping '.$ip.' -c 3');
+					echo shell_exec('ping '.$ip.' -c 3 -W2');
 					echo "
Traceroute $ip
";
-					echo shell_exec('traceroute '.$ip.'');
+					echo shell_exec('traceroute -w2 '.$ip.'');
 					echo "
Aktuelle Route:
";
 					echo shell_exec('ip route get '.$ip.'');
 					echo "
";