Add traceroute -I flag (#14667)

This commit is contained in:
electrocret
2022-11-28 08:54:00 -06:00
committed by GitHub
parent cde94a77df
commit fb3c2ecb1c

View File

@@ -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';
}