diff --git a/LibreNMS/Config.php b/LibreNMS/Config.php index ed68d2dab8..9ff3d4bca2 100644 --- a/LibreNMS/Config.php +++ b/LibreNMS/Config.php @@ -458,7 +458,7 @@ class Config } // make sure we have full path to binaries in case PATH isn't set - foreach (['fping', 'fping6', 'snmpgetnext', 'rrdtool', 'traceroute', 'traceroute6'] as $bin) { + foreach (['fping', 'fping6', 'snmpgetnext', 'rrdtool', 'traceroute'] as $bin) { if (! is_executable(self::get($bin))) { self::persist($bin, self::locateBinary($bin)); } diff --git a/doc/Support/Configuration.md b/doc/Support/Configuration.md index ff58423809..2f7816c527 100644 --- a/doc/Support/Configuration.md +++ b/doc/Support/Configuration.md @@ -210,13 +210,12 @@ under Device -> Edit -> Misc -> Disable ICMP Test? On #### traceroute -LibreNMS uses traceroute / traceroute6 to record debug information +LibreNMS uses traceroute to record debug information when a device is down due to icmp AND you have `lnms config:set debug.run_trace true` set. ```bash lnms config:set traceroute /usr/bin/traceroute -lnms config:set traceroute6 /usr/bin/traceroute6 ``` #### SNMP diff --git a/misc/config_definitions.json b/misc/config_definitions.json index 4629d4e80b..aad6dcc722 100644 --- a/misc/config_definitions.json +++ b/misc/config_definitions.json @@ -5383,13 +5383,6 @@ "order": 13, "type": "executable" }, - "traceroute6": { - "default": "traceroute6", - "group": "external", - "section": "binaries", - "order": 14, - "type": "executable" - }, "transit_descr": { "default": ["transit"], "type": "array", diff --git a/resources/lang/de/settings.php b/resources/lang/de/settings.php index c3320e37d3..cdade3fe55 100644 --- a/resources/lang/de/settings.php +++ b/resources/lang/de/settings.php @@ -710,9 +710,6 @@ return [ 'traceroute' => [ 'description' => 'Pfad zu traceroute', ], - 'traceroute6' => [ - 'description' => 'Pfad zu traceroute6', - ], 'unix-agent' => [ 'connection-timeout' => [ 'description' => 'Unix-agent Verbindungstimeout', diff --git a/resources/lang/en/settings.php b/resources/lang/en/settings.php index a323461747..c385c35038 100644 --- a/resources/lang/en/settings.php +++ b/resources/lang/en/settings.php @@ -1471,9 +1471,6 @@ return [ 'traceroute' => [ 'description' => 'Path to traceroute', ], - 'traceroute6' => [ - 'description' => 'Path to traceroute6', - ], 'twofactor' => [ 'description' => 'Two-Factor', 'help' => 'Allow users to activate and use Timebased (TOTP) or Counterbased (HOTP) One-Time Passwords (OTP)', diff --git a/resources/lang/fr/settings.php b/resources/lang/fr/settings.php index be43051b1a..38d36cdbfe 100644 --- a/resources/lang/fr/settings.php +++ b/resources/lang/fr/settings.php @@ -908,9 +908,6 @@ return [ 'traceroute' => [ 'description' => 'Chemin vers `traceroute`', ], - 'traceroute6' => [ - 'description' => 'Chemin vers `traceroute6`', - ], 'unix-agent' => [ 'connection-timeout' => [ 'description' => 'Délai d\'attente de connexion Unix-agent', diff --git a/resources/lang/it/settings.php b/resources/lang/it/settings.php index ab6262a3f7..8c355285f7 100644 --- a/resources/lang/it/settings.php +++ b/resources/lang/it/settings.php @@ -1459,9 +1459,6 @@ return [ 'traceroute' => [ 'description' => 'Path to traceroute', ], - 'traceroute6' => [ - 'description' => 'Path to traceroute6', - ], 'twofactor' => [ 'description' => 'Two-Factor', 'help' => 'Allow users to activate and use Timebased (TOTP) or Counterbased (HOTP) One-Time Passwords (OTP)', diff --git a/resources/lang/uk/settings.php b/resources/lang/uk/settings.php index ba2f08f951..e5cbb0f9d2 100644 --- a/resources/lang/uk/settings.php +++ b/resources/lang/uk/settings.php @@ -1459,9 +1459,6 @@ return [ 'traceroute' => [ 'description' => 'Шлях до traceroute', ], - 'traceroute6' => [ - 'description' => 'Шлях до traceroute6', - ], 'twofactor' => [ 'description' => 'Двохфакторна автентифікація', 'help' => 'Дозволяє користувачам активувати та використовувати Timebased (TOTP) або Counterbased (HOTP) одноразові паролі (OTP)', diff --git a/resources/lang/zh-CN/settings.php b/resources/lang/zh-CN/settings.php index 5fd74e5ca3..eafed78f10 100644 --- a/resources/lang/zh-CN/settings.php +++ b/resources/lang/zh-CN/settings.php @@ -725,9 +725,6 @@ return [ 'traceroute' => [ 'description' => 'traceroute 路径', ], - 'traceroute6' => [ - 'description' => 'traceroute6 路径', - ], 'unix-agent' => [ 'connection-timeout' => [ 'description' => 'Unix-agent 联机逾时', diff --git a/resources/lang/zh-TW/settings.php b/resources/lang/zh-TW/settings.php index 509412d59d..8b9905e53d 100644 --- a/resources/lang/zh-TW/settings.php +++ b/resources/lang/zh-TW/settings.php @@ -890,9 +890,6 @@ return [ 'traceroute' => [ 'description' => 'traceroute 路徑', ], - 'traceroute6' => [ - 'description' => 'traceroute6 路徑', - ], 'twofactor' => [ 'description' => '雙因素驗證', 'help' => '允許使用者啟用基於時間 (TOTP) 或基於雜湊訊息驗證 (HOTP) 的一次性密碼 (OTP)',