diff --git a/LibreNMS/Polling/ConnectivityHelper.php b/LibreNMS/Polling/ConnectivityHelper.php index 51445d8133..d6eb3fa3d1 100644 --- a/LibreNMS/Polling/ConnectivityHelper.php +++ b/LibreNMS/Polling/ConnectivityHelper.php @@ -140,7 +140,7 @@ class ConnectivityHelper public function traceroute(): array { - $command = [Config::get('traceroute', 'traceroute'), '-q', '1', '-w', '1', $this->target]; + $command = [Config::get('traceroute', 'traceroute'), '-q', '1', '-w', '1', '-I', $this->target]; if ($this->ipFamily() == 'ipv6') { $command[] = '-6'; }