Refactored Juniper SLA to include support for TWAMP and remove ambigu… (#14787)

This commit is contained in:
GeantRA
2023-02-24 12:09:52 +00:00
committed by GitHub
parent ef1b54b265
commit 2da5d4505b
4 changed files with 106 additions and 36 deletions

View File

@@ -73,24 +73,24 @@ class Junos extends \LibreNMS\OS implements SlaDiscovery, OSPolling, SlaPolling
public function discoverSlas()
{
$slas = new Collection();
$sla_table = snmpwalk_cache_oid($this->getDeviceArray(), 'pingCtlTable', [], 'DISMAN-PING-MIB');
$sla_table = snmpwalk_group($this->getDeviceArray(), 'pingCtlTable', 'DISMAN-PING-MIB', 2, snmpFlags: '-OQUstX');
if (! empty($sla_table)) {
$sla_table = snmpwalk_cache_oid($this->getDeviceArray(), 'jnxPingResultsRttUs', $sla_table, 'JUNIPER-PING-MIB');
$sla_table = snmpwalk_group($this->getDeviceArray(), 'jnxPingResultsRttUs', 'JUNIPER-PING-MIB', 2, $sla_table, snmpFlags: '-OQUstX');
}
foreach ($sla_table as $sla_key => $sla_config) {
[$owner, $test] = explode('.', $sla_key, 2);
$slas->push(new Sla([
'sla_nr' => hexdec(hash('crc32', $owner . $test)), // indexed by owner+test, convert to int
'owner' => $owner,
'tag' => $test,
'rtt_type' => $this->retrieveJuniperType($sla_config['pingCtlType']),
'rtt' => isset($sla_config['jnxPingResultsRttUs']) ? $sla_config['jnxPingResultsRttUs'] / 1000 : null,
'status' => ($sla_config['pingCtlAdminStatus'] == 'enabled') ? 1 : 0,
'opstatus' => ($sla_config['pingCtlRowStatus'] == 'active') ? 0 : 2,
]));
foreach ($sla_config as $test_key => $test_config) {
$slas->push(new Sla([
'sla_nr' => hexdec(hash('crc32', $sla_key . $test_key)), // indexed by owner+test, convert to int
'owner' => $sla_key,
'tag' => $test_key,
'rtt_type' => $this->retrieveJuniperType($test_config['pingCtlType']),
'rtt' => isset($test_config['jnxPingResultsRttUs']) ? $test_config['jnxPingResultsRttUs'] / 1000 : null,
'status' => ($test_config['pingCtlAdminStatus'] == 'enabled') ? 1 : 0,
'opstatus' => ($test_config['pingCtlRowStatus'] == 'active') ? 0 : 2,
]));
}
}
return $slas;
@@ -103,6 +103,7 @@ class Junos extends \LibreNMS\OS implements SlaDiscovery, OSPolling, SlaPolling
// Go get some data from the device.
$data = snmpwalk_group($device, 'pingCtlRowStatus', 'DISMAN-PING-MIB', 2);
$data = snmpwalk_group($device, 'jnxPingLastTestResultTable', 'JUNIPER-PING-MIB', 2, $data);
$data = snmpwalk_group($device, 'jnxPingResultsTable', 'JUNIPER-PING-MIB', 2, $data);
// Get the needed information
foreach ($slas as $sla) {
@@ -116,8 +117,8 @@ class Junos extends \LibreNMS\OS implements SlaDiscovery, OSPolling, SlaPolling
// Use DISMAN-PING Status codes. 0=Good 2=Critical
$sla->opstatus = $data[$owner][$test]['pingCtlRowStatus'] == '1' ? 0 : 2;
$sla->rtt = ($data[$owner][$test]['jnxPingLastTestResultAvgRttUs'] ?? 0) / 1000;
$time = Carbon::parse($data[$owner][$test]['jnxPingLastTestResultTime'] ?? null)->toDateTimeString();
$sla->rtt = ($data[$owner][$test]['jnxPingResultsAvgRttUs'] ?? 0) / 1000;
$time = Carbon::parse($data[$owner][$test]['jnxPingResultsTime'] ?? null)->toDateTimeString();
echo 'SLA : ' . $rtt_type . ' ' . $owner . ' ' . $test . '... ' . $sla->rtt . 'ms at ' . $time . "\n";
$fields = [
@@ -139,9 +140,9 @@ class Junos extends \LibreNMS\OS implements SlaDiscovery, OSPolling, SlaPolling
case 'IcmpEcho':
case 'IcmpTimeStamp':
$icmp = [
'MinRttUs' => ($data[$owner][$test]['jnxPingLastTestResultMinRttUs'] ?? 0) / 1000,
'MaxRttUs' => ($data[$owner][$test]['jnxPingLastTestResultMaxRttUs'] ?? 0) / 1000,
'StdDevRttUs' => ($data[$owner][$test]['jnxPingLastTestResultStdDevRttUs'] ?? 0) / 1000,
'MinRttUs' => ($data[$owner][$test]['jnxPingResultsMinRttUs'] ?? 0) / 1000,
'MaxRttUs' => ($data[$owner][$test]['jnxPingResultsMaxRttUs'] ?? 0) / 1000,
'StdDevRttUs' => ($data[$owner][$test]['jnxPingResultsStdDevRttUs'] ?? 0) / 1000,
'ProbeResponses' => $data[$owner][$test]['jnxPingLastTestResultProbeResponses'] ?? null,
'ProbeLoss' => (int) ($data[$owner][$test]['jnxPingLastTestResultSentProbes'] ?? 0) - (int) ($data[$owner][$test]['jnxPingLastTestResultProbeResponses'] ?? 0),
];
@@ -166,17 +167,6 @@ class Junos extends \LibreNMS\OS implements SlaDiscovery, OSPolling, SlaPolling
}
}
private function calculateSlaNr($key): int
{
$sum = 0;
$length = strlen($key);
for ($i = 0; $i < $length; $i++) {
$sum += ord($key[$i]);
}
return $sum;
}
/**
* Retrieve specific Juniper PingCtlType
*/
@@ -195,6 +185,8 @@ class Junos extends \LibreNMS\OS implements SlaDiscovery, OSPolling, SlaPolling
return 'NtpQuery';
case 'enterprises.2636.3.7.2.6':
return 'UdpTimestamp';
case 'zeroDotZero':
return 'twamp';
default:
return str_replace('ping', '', $rtt_type);
}

View File

@@ -3735,11 +3735,6 @@ parameters:
count: 1
path: LibreNMS/OS/Ironware.php
-
message: "#^Method LibreNMS\\\\OS\\\\Junos\\:\\:calculateSlaNr\\(\\) has parameter \\$key with no type specified\\.$#"
count: 1
path: LibreNMS/OS/Junos.php
-
message: "#^Method LibreNMS\\\\OS\\\\Junos\\:\\:discoverSlas\\(\\) has no return type specified\\.$#"
count: 1

View File

@@ -12319,6 +12319,16 @@
"status": 1,
"opstatus": 0,
"deleted": 0
},
{
"sla_nr": 2362442542,
"owner": "test-twamp1",
"tag": "twamp",
"rtt_type": "twamp",
"rtt": 27.01,
"status": 1,
"opstatus": 0,
"deleted": 0
}
]
},
@@ -12329,7 +12339,7 @@
"owner": "test-rpm3",
"tag": "timestamp",
"rtt_type": "IcmpTimeStamp",
"rtt": 0,
"rtt": 51.32,
"status": 1,
"opstatus": 0,
"deleted": 0
@@ -12339,7 +12349,17 @@
"owner": "test-rpm",
"tag": "internet",
"rtt_type": "IcmpEcho",
"rtt": 0,
"rtt": 24.56,
"status": 1,
"opstatus": 0,
"deleted": 0
},
{
"sla_nr": 2362442542,
"owner": "test-twamp1",
"tag": "twamp",
"rtt_type": "twamp",
"rtt": 26.97,
"status": 1,
"opstatus": 0,
"deleted": 0

View File

@@ -2482,46 +2482,67 @@
1.3.6.1.2.1.55.1.8.1.3.24.254.192.0.0.0.0.0.0.0.10.0.0.0.0.0.4|2|2
1.3.6.1.2.1.80.1.2.1.3.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|1
1.3.6.1.2.1.80.1.2.1.3.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|1
1.3.6.1.2.1.80.1.2.1.3.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|2|1
1.3.6.1.2.1.80.1.2.1.4.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4|
1.3.6.1.2.1.80.1.2.1.4.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4x|B9462901
1.3.6.1.2.1.80.1.2.1.4.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|4x|0AC80300
1.3.6.1.2.1.80.1.2.1.5.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|40
1.3.6.1.2.1.80.1.2.1.5.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|40
1.3.6.1.2.1.80.1.2.1.5.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|200
1.3.6.1.2.1.80.1.2.1.6.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|2
1.3.6.1.2.1.80.1.2.1.6.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|1
1.3.6.1.2.1.80.1.2.1.6.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|1
1.3.6.1.2.1.80.1.2.1.7.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|5
1.3.6.1.2.1.80.1.2.1.7.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|3
1.3.6.1.2.1.80.1.2.1.7.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|270
1.3.6.1.2.1.80.1.2.1.8.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|1
1.3.6.1.2.1.80.1.2.1.8.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|1
1.3.6.1.2.1.80.1.2.1.8.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|2|1
1.3.6.1.2.1.80.1.2.1.9.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4x|00
1.3.6.1.2.1.80.1.2.1.9.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4x|00
1.3.6.1.2.1.80.1.2.1.9.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|4|
1.3.6.1.2.1.80.1.2.1.10.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|3
1.3.6.1.2.1.80.1.2.1.10.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|1
1.3.6.1.2.1.80.1.2.1.10.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|30
1.3.6.1.2.1.80.1.2.1.11.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|50
1.3.6.1.2.1.80.1.2.1.11.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|50
1.3.6.1.2.1.80.1.2.1.11.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|5
1.3.6.1.2.1.80.1.2.1.12.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|2
1.3.6.1.2.1.80.1.2.1.12.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|2
1.3.6.1.2.1.80.1.2.1.12.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|2|2
1.3.6.1.2.1.80.1.2.1.13.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4|00
1.3.6.1.2.1.80.1.2.1.13.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4|00
1.3.6.1.2.1.80.1.2.1.13.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|4|00
1.3.6.1.2.1.80.1.2.1.14.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|3
1.3.6.1.2.1.80.1.2.1.14.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|1
1.3.6.1.2.1.80.1.2.1.14.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|1
1.3.6.1.2.1.80.1.2.1.15.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|1
1.3.6.1.2.1.80.1.2.1.15.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|2
1.3.6.1.2.1.80.1.2.1.15.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|1
1.3.6.1.2.1.80.1.2.1.16.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|6|1.3.6.1.2.1.80.3.1
1.3.6.1.2.1.80.1.2.1.16.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|6|1.3.6.1.4.1.2636.3.7.2.1
1.3.6.1.2.1.80.1.2.1.16.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|6|0.0
1.3.6.1.2.1.80.1.2.1.17.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4x|00
1.3.6.1.2.1.80.1.2.1.17.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4x|00
1.3.6.1.2.1.80.1.2.1.17.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|4x|00
1.3.6.1.2.1.80.1.2.1.18.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|1
1.3.6.1.2.1.80.1.2.1.18.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|1
1.3.6.1.2.1.80.1.2.1.18.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|2|1
1.3.6.1.2.1.80.1.2.1.19.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4x|B9462801
1.3.6.1.2.1.80.1.2.1.19.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4x|B9462801
1.3.6.1.2.1.80.1.2.1.19.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|4|
1.3.6.1.2.1.80.1.2.1.20.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|0
1.3.6.1.2.1.80.1.2.1.20.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|0
1.3.6.1.2.1.80.1.2.1.20.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|2|0
1.3.6.1.2.1.80.1.2.1.21.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|2
1.3.6.1.2.1.80.1.2.1.21.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|2
1.3.6.1.2.1.80.1.2.1.21.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|2|1
1.3.6.1.2.1.80.1.2.1.22.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0
1.3.6.1.2.1.80.1.2.1.22.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0
1.3.6.1.2.1.80.1.2.1.22.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.2.1.80.1.2.1.23.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|1
1.3.6.1.2.1.80.1.2.1.23.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|1
1.3.6.1.2.1.80.1.2.1.23.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|2|1
1.3.6.1.2.1.80.1.3.1.1.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|1
1.3.6.1.2.1.80.1.3.1.1.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|2
1.3.6.1.2.1.80.1.3.1.2.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|1
@@ -5063,50 +5084,92 @@
1.3.6.1.4.1.2636.3.4.2.3.1.0|2|2
1.3.6.1.4.1.2636.3.7.1.3.1.1.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|22843
1.3.6.1.4.1.2636.3.7.1.3.1.1.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|47841
1.3.6.1.4.1.2636.3.7.1.3.1.1.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|27008
1.3.6.1.4.1.2636.3.7.1.3.1.2.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|98248
1.3.6.1.4.1.2636.3.7.1.3.1.2.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|102647
1.3.6.1.4.1.2636.3.7.1.3.1.2.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|3964542
1.3.6.1.4.1.2636.3.7.1.3.1.3.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|22843
1.3.6.1.4.1.2636.3.7.1.3.1.3.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|47841
1.3.6.1.4.1.2636.3.7.1.3.1.3.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|26299
1.3.6.1.4.1.2636.3.7.1.3.1.4.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|26333
1.3.6.1.4.1.2636.3.7.1.3.1.4.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|54806
1.3.6.1.4.1.2636.3.7.1.3.1.4.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|30056
1.3.6.1.4.1.2636.3.7.1.3.1.5.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|24562
1.3.6.1.4.1.2636.3.7.1.3.1.5.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|51324
1.3.6.1.4.1.2636.3.7.1.3.1.5.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|26970
1.3.6.1.4.1.2636.3.7.1.3.1.6.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|1278
1.3.6.1.4.1.2636.3.7.1.3.1.6.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|3482
1.3.6.1.4.1.2636.3.7.1.3.1.6.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|308
1.3.6.1.4.1.2636.3.7.1.3.1.7.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.7.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.7.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|26126
1.3.6.1.4.1.2636.3.7.1.3.1.8.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.8.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.8.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|25875
1.3.6.1.4.1.2636.3.7.1.3.1.9.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.9.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.9.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|26975
1.3.6.1.4.1.2636.3.7.1.3.1.10.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.10.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.10.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|26195
1.3.6.1.4.1.2636.3.7.1.3.1.11.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.11.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.11.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|219
1.3.6.1.4.1.2636.3.7.1.3.1.12.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.12.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.12.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|882
1.3.6.1.4.1.2636.3.7.1.3.1.13.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.13.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.13.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|59
1.3.6.1.4.1.2636.3.7.1.3.1.14.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.14.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.14.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|3806
1.3.6.1.4.1.2636.3.7.1.3.1.15.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.15.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.15.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|775
1.3.6.1.4.1.2636.3.7.1.3.1.16.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.16.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.16.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|330
1.3.6.1.4.1.2636.3.7.1.3.1.17.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|3490
1.3.6.1.4.1.2636.3.7.1.3.1.17.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|6965
1.3.6.1.4.1.2636.3.7.1.3.1.17.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|3757
1.3.6.1.4.1.2636.3.7.1.3.1.18.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.18.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.18.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|1100
1.3.6.1.4.1.2636.3.7.1.3.1.19.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.19.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.3.1.19.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|3747
1.3.6.1.4.1.2636.3.7.1.3.1.20.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|1
1.3.6.1.4.1.2636.3.7.1.3.1.20.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|1
1.3.6.1.4.1.2636.3.7.1.3.1.20.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|2|1
1.3.6.1.4.1.2636.3.7.1.3.1.21.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4x|07E505060A1F09002B0000
1.3.6.1.4.1.2636.3.7.1.3.1.21.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4x|07E505060A1F09002B0000
1.3.6.1.4.1.2636.3.7.1.3.1.21.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|4x|07E70203100A20002B0000
1.3.6.1.4.1.2636.3.7.1.3.1.22.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4|test-rpm
1.3.6.1.4.1.2636.3.7.1.3.1.22.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4|test-rpm3
1.3.6.1.4.1.2636.3.7.1.3.1.22.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|4|test-twamp1
1.3.6.1.4.1.2636.3.7.1.3.1.23.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4|internet
1.3.6.1.4.1.2636.3.7.1.3.1.23.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4|timestamp
1.3.6.1.4.1.2636.3.7.1.3.1.23.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|4|twamp
1.3.6.1.4.1.2636.3.7.1.5.1.1.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.2.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.3.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.4.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.5.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.6.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.7.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.8.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.9.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.10.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.11.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.12.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.13.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.14.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.15.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.16.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.17.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.18.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|66|0
1.3.6.1.4.1.2636.3.7.1.5.1.19.11.116.101.115.116.45.116.119.97.109.112.49.5.116.119.97.109.112|4x|07E70203100700002B0000
1.3.6.1.4.1.2636.3.48.1.3.1.1.2.1|4|____juniper_private1____
1.3.6.1.4.1.2636.3.48.1.3.1.1.2.2|4|GVA-Backend
1.3.6.1.4.1.2636.3.48.1.3.1.1.2.3|4|GVA-Frontend