Expand endrun os support (#12008)

* Expanded EndRun OS Support

* Added forgotten test data

* Fixed Travis' spacing complaints

* Fixed typo

* Fixed typo 2

* Fixed spacing,again

* Split up test data

* Fixed testing data

* Fixed discovery code blunder

* Fixed yaml definitions

* Fixed broken discovery

* Updated discovery definitions
This commit is contained in:
Hans Erasmus
2020-08-17 13:27:07 +02:00
committed by GitHub
parent e9427720b2
commit 13e0da2f0f
7 changed files with 5491 additions and 77 deletions

View File

@@ -33,13 +33,25 @@ class Endrun extends OS implements OSDiscovery
public function discoverOS(): void
{
$device = $this->getDeviceModel();
$info = snmp_get_multi($this->getDevice(), ['cntpVersion.0', 'cdmaVersion.0', 'snmpSetSerialNo.0'], '-OQUs', 'TEMPUSLXUNISON-MIB:SNMPv2-MIB');
$device->features = $info[0]['cdmaVersion'] ?? null;
$device->serial = $info[0]['snmpSetSerialNo'] ?? null;
// The cntpVersion string output is rather long. Ex. Tempus LX CDMA 6010-0042-000 v 5.70 - Wed Oct 1 04:39:21 UTC 2014
preg_match('/(.+) v (.+) - /', $info[0]['cntpVersion'], $matches);
$device->hardware = $matches[1] ?? null;
$device->version = $matches[2] ?? null;
$sysDescr = snmp_get($this->getDevice(), 'sysDescr.0', '-OvQ', 'SNMPv2-MIB');
if (strpos($sysDescr, "Sonoma") !==false) {
$info = snmp_get_multi($this->getDevice(), ['gntpVersion.0', 'snmpSetSerialNo.0'], '-OQUs', 'SONOMA-MIB:SNMPv2-MIB');
// The gntpVersion string output is rather long. Ex. Sonoma_D12 GPS 6010-0065-000 v 3.04 - Sep 24 22:58:19 2019
preg_match('/(.+) v (.+) - /', $info[0]['gntpVersion'], $matches);
$device->hardware = $matches[1] ?? null;
// The EndRun Sonoma D12 does not report a system capbility (cdmaVersion) like the Tempus devices.
$device->serial = $info[0]['snmpSetSerialNo'] ?? null;
} else {
$info = snmp_get_multi($this->getDevice(), ['cntpVersion.0', 'cdmaVersion.0', 'snmpSetSerialNo.0'], '-OQUs', 'TEMPUSLXUNISON-MIB:SNMPv2-MIB');
$device->features = $info[0]['cdmaVersion'] ?? null;
$device->serial = $info[0]['snmpSetSerialNo'] ?? null;
// The cntpVersion string output is rather long. Ex. Tempus LX CDMA 6010-0042-000 v 5.70 - Wed Oct 1 04:39:21 UTC 2014
preg_match('/(.+) v (.+) - /', $info[0]['cntpVersion'], $matches);
$device->hardware = $matches[1] ?? null;
$device->version = $matches[2] ?? null;
}
}
}

View File

@@ -15,3 +15,8 @@ discovery:
oid: .1.3.6.1.4.1.13827.5.0.11.0
op: 'contains'
value: 'Tempus LX CDMA'
-
snmpget:
oid: .1.3.6.1.4.1.13827.12.1.16.0
op: 'contains'
value: 'Sonoma_D12'

3555
mibs/endrun/SONOMA-MIB Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -303,11 +303,11 @@
"pagpEthcOperationMode": null,
"pagpDeviceId": null,
"pagpGroupIfIndex": null,
"ifInUcastPkts": 1535232,
"ifInUcastPkts": 2879122,
"ifInUcastPkts_prev": 0,
"ifInUcastPkts_delta": null,
"ifInUcastPkts_rate": null,
"ifOutUcastPkts": 1535232,
"ifOutUcastPkts": 2879122,
"ifOutUcastPkts_prev": 0,
"ifOutUcastPkts_delta": null,
"ifOutUcastPkts_rate": null,
@@ -319,11 +319,11 @@
"ifOutErrors_prev": 0,
"ifOutErrors_delta": null,
"ifOutErrors_rate": null,
"ifInOctets": 238022012,
"ifInOctets": 446369280,
"ifInOctets_prev": 0,
"ifInOctets_delta": null,
"ifInOctets_rate": null,
"ifOutOctets": 238022012,
"ifOutOctets": 446369280,
"ifOutOctets_prev": 0,
"ifOutOctets_delta": null,
"ifOutOctets_rate": null,
@@ -410,11 +410,11 @@
"pagpEthcOperationMode": null,
"pagpDeviceId": null,
"pagpGroupIfIndex": null,
"ifInUcastPkts": 7261461,
"ifInUcastPkts": 13663977,
"ifInUcastPkts_prev": 0,
"ifInUcastPkts_delta": null,
"ifInUcastPkts_rate": null,
"ifOutUcastPkts": 7234148,
"ifOutUcastPkts": 13614240,
"ifOutUcastPkts_prev": 0,
"ifOutUcastPkts_delta": null,
"ifOutUcastPkts_rate": null,
@@ -426,11 +426,11 @@
"ifOutErrors_prev": 0,
"ifOutErrors_delta": null,
"ifOutErrors_rate": null,
"ifInOctets": 663199641,
"ifInOctets": 1248737938,
"ifInOctets_prev": 0,
"ifInOctets_delta": null,
"ifInOctets_rate": null,
"ifOutOctets": 791682593,
"ifOutOctets": 1516006078,
"ifOutOctets_prev": 0,
"ifOutOctets_delta": null,
"ifOutOctets_rate": null,
@@ -484,7 +484,7 @@
"processor_oid": ".1.3.6.1.4.1.2021.11.11.0",
"processor_index": "0",
"processor_type": "ucd-old",
"processor_usage": 27,
"processor_usage": 30,
"processor_descr": "CPU",
"processor_precision": -1,
"processor_perc_warn": 75
@@ -539,9 +539,9 @@
"mempool_type": "hrstorage",
"mempool_precision": 1024,
"mempool_descr": "Real Memory",
"mempool_perc": 94,
"mempool_used": 29753344,
"mempool_free": 1839104,
"mempool_perc": 95,
"mempool_used": 29982720,
"mempool_free": 1609728,
"mempool_total": 31592448,
"mempool_largestfree": null,
"mempool_lowestfree": null,
@@ -577,7 +577,7 @@
"storage_descr": "/",
"storage_size": 16243712,
"storage_units": 1024,
"storage_used": 11817984,
"storage_used": 11826176,
"storage_free": 0,
"storage_perc": 0,
"storage_perc_warn": 60,
@@ -603,7 +603,7 @@
"storage_descr": "/logs",
"storage_size": 1048576,
"storage_units": 4096,
"storage_used": 741376,
"storage_used": 782336,
"storage_free": 0,
"storage_perc": 0,
"storage_perc_warn": 60,
@@ -620,8 +620,8 @@
"storage_descr": "/",
"storage_size": 16243712,
"storage_units": 1024,
"storage_used": 11817984,
"storage_free": 4425728,
"storage_used": 11826176,
"storage_free": 4417536,
"storage_perc": 73,
"storage_perc_warn": 60,
"storage_deleted": 0
@@ -646,9 +646,9 @@
"storage_descr": "/logs",
"storage_size": 1048576,
"storage_units": 4096,
"storage_used": 741376,
"storage_free": 307200,
"storage_perc": 71,
"storage_used": 782336,
"storage_free": 266240,
"storage_perc": 75,
"storage_perc_warn": 60,
"storage_deleted": 0
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
1.3.6.1.2.1.1.1.0|4|Linux NTSCBOTNTP1 2.4.26-1 #0 Wed Aug 18 17:28:45 UTC 2004 i486
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10
1.3.6.1.2.1.1.3.0|67|297822950
1.3.6.1.2.1.1.3.0|67|557430237
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
@@ -32,8 +32,8 @@
1.3.6.1.2.1.4.20.1.3.10.3.255.254|64|255.255.255.248
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0
1.3.6.1.2.1.4.22.1.2.2.10.3.255.249|4x|F4B52FFD5030
1.3.6.1.2.1.4.31.1.1.3.1|65|8732645
1.3.6.1.2.1.4.31.1.1.4.1|70|8732645
1.3.6.1.2.1.4.31.1.1.3.1|65|16422669
1.3.6.1.2.1.4.31.1.1.4.1|70|16422669
1.3.6.1.2.1.4.31.1.1.6.1|70|0
1.3.6.1.2.1.4.31.1.1.7.1|65|0
1.3.6.1.2.1.4.31.1.1.9.1|65|0
@@ -44,10 +44,10 @@
1.3.6.1.2.1.4.31.1.1.15.1|65|0
1.3.6.1.2.1.4.31.1.1.16.1|65|0
1.3.6.1.2.1.4.31.1.1.17.1|65|0
1.3.6.1.2.1.4.31.1.1.18.1|65|8598018
1.3.6.1.2.1.4.31.1.1.19.1|70|8598018
1.3.6.1.2.1.4.31.1.1.20.1|65|8705437
1.3.6.1.2.1.4.31.1.1.21.1|70|8705437
1.3.6.1.2.1.4.31.1.1.18.1|65|16159732
1.3.6.1.2.1.4.31.1.1.19.1|70|16159732
1.3.6.1.2.1.4.31.1.1.20.1|65|16373095
1.3.6.1.2.1.4.31.1.1.21.1|70|16373095
1.3.6.1.2.1.4.31.1.1.22.1|65|0
1.3.6.1.2.1.4.31.1.1.24.1|70|0
1.3.6.1.2.1.4.31.1.1.25.1|65|0
@@ -56,20 +56,20 @@
1.3.6.1.2.1.4.31.1.1.46.1|67|0
1.3.6.1.2.1.4.31.1.1.47.1|66|30000
1.3.6.1.2.1.4.35.1.4.2.1.4.10.3.255.249|4x|F4B52FFD5030
1.3.6.1.2.1.5.1.0|65|111157
1.3.6.1.2.1.5.1.0|65|218689
1.3.6.1.2.1.5.2.0|65|0
1.3.6.1.2.1.5.3.0|65|3720
1.3.6.1.2.1.5.3.0|65|5315
1.3.6.1.2.1.5.4.0|65|0
1.3.6.1.2.1.5.5.0|65|0
1.3.6.1.2.1.5.6.0|65|0
1.3.6.1.2.1.5.7.0|65|0
1.3.6.1.2.1.5.8.0|65|107437
1.3.6.1.2.1.5.8.0|65|213374
1.3.6.1.2.1.5.9.0|65|0
1.3.6.1.2.1.5.10.0|65|0
1.3.6.1.2.1.5.11.0|65|0
1.3.6.1.2.1.5.12.0|65|0
1.3.6.1.2.1.5.13.0|65|0
1.3.6.1.2.1.5.14.0|65|107458
1.3.6.1.2.1.5.14.0|65|213395
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|21
1.3.6.1.2.1.5.17.0|65|0
@@ -77,7 +77,7 @@
1.3.6.1.2.1.5.19.0|65|0
1.3.6.1.2.1.5.20.0|65|0
1.3.6.1.2.1.5.21.0|65|0
1.3.6.1.2.1.5.22.0|65|107437
1.3.6.1.2.1.5.22.0|65|213374
1.3.6.1.2.1.5.23.0|65|0
1.3.6.1.2.1.5.24.0|65|0
1.3.6.1.2.1.5.25.0|65|0
@@ -86,8 +86,8 @@
1.3.6.1.2.1.6.14.0|65|0
1.3.6.1.2.1.6.15.0|65|0
1.3.6.1.2.1.7.5.1.1.0.0.0.0.13|64|0.0.0.0
1.3.6.1.2.1.11.1.0|65|1178797
1.3.6.1.2.1.11.2.0|65|1178784
1.3.6.1.2.1.11.1.0|65|2279091
1.3.6.1.2.1.11.2.0|65|2279078
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|12
1.3.6.1.2.1.11.5.0|65|0
@@ -97,10 +97,10 @@
1.3.6.1.2.1.11.10.0|65|0
1.3.6.1.2.1.11.11.0|65|0
1.3.6.1.2.1.11.12.0|65|0
1.3.6.1.2.1.11.13.0|65|8076480
1.3.6.1.2.1.11.13.0|65|16548360
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|419235
1.3.6.1.2.1.11.16.0|65|85283
1.3.6.1.2.1.11.15.0|65|716291
1.3.6.1.2.1.11.16.0|65|167171
1.3.6.1.2.1.11.17.0|65|0
1.3.6.1.2.1.11.18.0|65|0
1.3.6.1.2.1.11.19.0|65|0
@@ -111,15 +111,15 @@
1.3.6.1.2.1.11.25.0|65|0
1.3.6.1.2.1.11.26.0|65|0
1.3.6.1.2.1.11.27.0|65|0
1.3.6.1.2.1.11.28.0|65|1178786
1.3.6.1.2.1.11.28.0|65|2279080
1.3.6.1.2.1.11.29.0|65|0
1.3.6.1.2.1.11.30.0|2|2
1.3.6.1.2.1.11.31.0|65|0
1.3.6.1.2.1.11.32.0|65|0
1.3.6.1.2.1.25.1.1.0|67|293496037
1.3.6.1.2.1.25.1.1.0|67|553094871
1.3.6.1.2.1.25.1.4.0|4|config=10000001 initjffs=0 console=ttyS0,19200 root=/dev/mtdblock5 load_ramdisk=1 rw
1.3.6.1.2.1.25.1.5.0|66|0
1.3.6.1.2.1.25.1.6.0|66|29
1.3.6.1.2.1.25.1.6.0|66|30
1.3.6.1.2.1.25.2.2.0|2|30852
1.3.6.1.2.1.25.2.3.1.1.1|2|1
1.3.6.1.2.1.25.2.3.1.1.2|2|2
@@ -152,11 +152,11 @@
1.3.6.1.2.1.25.2.3.1.5.5|2|256
1.3.6.1.2.1.25.2.3.1.5.6|2|256
1.3.6.1.2.1.25.2.3.1.6.1|2|460
1.3.6.1.2.1.25.2.3.1.6.2|2|29056
1.3.6.1.2.1.25.2.3.1.6.2|2|29280
1.3.6.1.2.1.25.2.3.1.6.3|2|0
1.3.6.1.2.1.25.2.3.1.6.4|2|11541
1.3.6.1.2.1.25.2.3.1.6.4|2|11549
1.3.6.1.2.1.25.2.3.1.6.5|2|163
1.3.6.1.2.1.25.2.3.1.6.6|2|181
1.3.6.1.2.1.25.2.3.1.6.6|2|191
1.3.6.1.2.1.25.3.2.1.1.768|2|768
1.3.6.1.2.1.25.3.2.1.1.1025|2|1025
1.3.6.1.2.1.25.3.2.1.1.1026|2|1026
@@ -184,18 +184,18 @@
1.3.6.1.2.1.31.1.1.1.4.2|65|0
1.3.6.1.2.1.31.1.1.1.5.1|65|0
1.3.6.1.2.1.31.1.1.1.5.2|65|0
1.3.6.1.2.1.31.1.1.1.6.1|70|238022012
1.3.6.1.2.1.31.1.1.1.6.2|70|663199641
1.3.6.1.2.1.31.1.1.1.7.1|70|1535232
1.3.6.1.2.1.31.1.1.1.7.2|70|7261461
1.3.6.1.2.1.31.1.1.1.6.1|70|446369280
1.3.6.1.2.1.31.1.1.1.6.2|70|1248737938
1.3.6.1.2.1.31.1.1.1.7.1|70|2879122
1.3.6.1.2.1.31.1.1.1.7.2|70|13663977
1.3.6.1.2.1.31.1.1.1.8.1|70|0
1.3.6.1.2.1.31.1.1.1.8.2|70|0
1.3.6.1.2.1.31.1.1.1.9.1|70|0
1.3.6.1.2.1.31.1.1.1.9.2|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|238022012
1.3.6.1.2.1.31.1.1.1.10.2|70|791682593
1.3.6.1.2.1.31.1.1.1.11.1|70|1535232
1.3.6.1.2.1.31.1.1.1.11.2|70|7234148
1.3.6.1.2.1.31.1.1.1.10.1|70|446369280
1.3.6.1.2.1.31.1.1.1.10.2|70|1516006078
1.3.6.1.2.1.31.1.1.1.11.1|70|2879122
1.3.6.1.2.1.31.1.1.1.11.2|70|13614240
1.3.6.1.2.1.31.1.1.1.12.1|70|0
1.3.6.1.2.1.31.1.1.1.12.2|70|0
1.3.6.1.2.1.31.1.1.1.13.1|70|0
@@ -215,40 +215,40 @@
1.3.6.1.4.1.2021.4.3.0|2|0
1.3.6.1.4.1.2021.4.4.0|2|0
1.3.6.1.4.1.2021.4.5.0|2|30852
1.3.6.1.4.1.2021.4.6.0|2|1796
1.3.6.1.4.1.2021.4.11.0|2|1796
1.3.6.1.4.1.2021.4.6.0|2|1572
1.3.6.1.4.1.2021.4.11.0|2|1572
1.3.6.1.4.1.2021.4.13.0|2|0
1.3.6.1.4.1.2021.4.14.0|2|460
1.3.6.1.4.1.2021.4.15.0|2|22208
1.3.6.1.4.1.2021.10.1.5.1|2|51
1.3.6.1.4.1.2021.10.1.5.2|2|44
1.3.6.1.4.1.2021.10.1.5.3|2|45
1.3.6.1.4.1.2021.4.15.0|2|22496
1.3.6.1.4.1.2021.10.1.5.1|2|34
1.3.6.1.4.1.2021.10.1.5.2|2|34
1.3.6.1.4.1.2021.10.1.5.3|2|34
1.3.6.1.4.1.2021.11.1.0|2|1
1.3.6.1.4.1.2021.11.2.0|4|systemStats
1.3.6.1.4.1.2021.11.3.0|2|0
1.3.6.1.4.1.2021.11.4.0|2|0
1.3.6.1.4.1.2021.11.5.0|2|0
1.3.6.1.4.1.2021.11.6.0|2|2
1.3.6.1.4.1.2021.11.7.0|2|3
1.3.6.1.4.1.2021.11.8.0|2|3
1.3.6.1.4.1.2021.11.9.0|2|12
1.3.6.1.4.1.2021.11.10.0|2|14
1.3.6.1.4.1.2021.11.11.0|2|73
1.3.6.1.4.1.2021.11.50.0|65|22303723
1.3.6.1.4.1.2021.11.7.0|2|7
1.3.6.1.4.1.2021.11.8.0|2|4
1.3.6.1.4.1.2021.11.9.0|2|14
1.3.6.1.4.1.2021.11.10.0|2|15
1.3.6.1.4.1.2021.11.11.0|2|70
1.3.6.1.4.1.2021.11.50.0|65|42153619
1.3.6.1.4.1.2021.11.51.0|65|0
1.3.6.1.4.1.2021.11.52.0|65|34879969
1.3.6.1.4.1.2021.11.53.0|65|236312013
1.3.6.1.4.1.2021.11.52.0|65|65629266
1.3.6.1.4.1.2021.11.53.0|65|445312069
1.3.6.1.4.1.2021.11.54.0|65|0
1.3.6.1.4.1.2021.11.55.0|65|34879969
1.3.6.1.4.1.2021.11.55.0|65|65629266
1.3.6.1.4.1.2021.11.56.0|65|0
1.3.6.1.4.1.2021.11.57.0|65|10982830
1.3.6.1.4.1.2021.11.57.0|65|20704304
1.3.6.1.4.1.2021.11.58.0|65|29086
1.3.6.1.4.1.2021.11.59.0|65|1297473793
1.3.6.1.4.1.2021.11.60.0|65|309263026
1.3.6.1.4.1.2021.11.59.0|65|2444777508
1.3.6.1.4.1.2021.11.60.0|65|582649398
1.3.6.1.4.1.2021.11.61.0|65|0
1.3.6.1.4.1.2021.11.62.0|65|0
1.3.6.1.4.1.2021.11.63.0|65|0
1.3.6.1.4.1.13827.5.0.11.0|4|Tempus LX CDMA 6010-0042-000 v 5.70 - Wed Oct 1 04:39:21 UTC 2014
1.3.6.1.4.1.13827.5.1.13.0|4|F/W 5.11 FPGA 0416
1.3.6.1.6.3.1.1.6.1.0|2|1882136009
1.3.6.1.6.3.10.2.1.3.0|2|2934931
1.3.6.1.6.3.10.2.1.3.0|2|5530919

View File

@@ -0,0 +1,484 @@
1.3.6.1.2.1.1.1.0|4|Linux NTSDC3NTPPTP 3.2.2-Sonoma 6010-0064-000_v2.01 #1 PREEMPT Sun Nov 13 21:31:23 UTC 2016 armv5tel
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10
1.3.6.1.2.1.1.3.0|67|1463447490
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.2.2.1.2.1|4|lo
1.3.6.1.2.1.2.2.1.2.2|4|dummy0
1.3.6.1.2.1.2.2.1.2.3|4|eth0
1.3.6.1.2.1.2.2.1.2.4|4|eth1
1.3.6.1.2.1.2.2.1.2.5|4|sit0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|6
1.3.6.1.2.1.2.2.1.3.3|2|6
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|131
1.3.6.1.2.1.2.2.1.4.1|2|16436
1.3.6.1.2.1.2.2.1.4.2|2|1500
1.3.6.1.2.1.2.2.1.4.3|2|1500
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|1480
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4x|9E0407B941A4
1.3.6.1.2.1.2.2.1.6.3|4x|000EFE0102D4
1.3.6.1.2.1.2.2.1.6.4|4x|000EFE0102D5
1.3.6.1.2.1.2.2.1.6.5|4|
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|2
1.3.6.1.2.1.2.2.1.7.3|2|1
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|2
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|2
1.3.6.1.2.1.2.2.1.8.3|2|1
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|2
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.4.3.0|65|50586836
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.5.0|65|0
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|0
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|40771618
1.3.6.1.2.1.4.10.0|65|128390038
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|0
1.3.6.1.2.1.4.14.0|65|0
1.3.6.1.2.1.4.15.0|65|0
1.3.6.1.2.1.4.16.0|65|0
1.3.6.1.2.1.4.17.0|65|0
1.3.6.1.2.1.4.18.0|65|0
1.3.6.1.2.1.4.19.0|65|0
1.3.6.1.2.1.4.20.1.2.10.1.8.21|2|4
1.3.6.1.2.1.4.20.1.2.10.1.255.254|2|3
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
1.3.6.1.2.1.4.20.1.3.10.1.8.21|64|255.255.255.252
1.3.6.1.2.1.4.20.1.3.10.1.255.254|64|255.255.255.248
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0
1.3.6.1.2.1.4.22.1.2.3.10.1.255.249|4x|100E7EC5F830
1.3.6.1.2.1.4.22.1.2.4.10.1.8.22|4x|18E728926C01
1.3.6.1.2.1.4.31.1.1.3.1|65|50586658
1.3.6.1.2.1.4.31.1.1.3.2|65|0
1.3.6.1.2.1.4.31.1.1.4.1|70|50586658
1.3.6.1.2.1.4.31.1.1.4.2|70|0
1.3.6.1.2.1.4.31.1.1.5.2|65|0
1.3.6.1.2.1.4.31.1.1.6.2|70|0
1.3.6.1.2.1.4.31.1.1.7.1|65|0
1.3.6.1.2.1.4.31.1.1.7.2|65|0
1.3.6.1.2.1.4.31.1.1.8.1|65|0
1.3.6.1.2.1.4.31.1.1.8.2|65|0
1.3.6.1.2.1.4.31.1.1.9.1|65|0
1.3.6.1.2.1.4.31.1.1.9.2|65|0
1.3.6.1.2.1.4.31.1.1.10.1|65|0
1.3.6.1.2.1.4.31.1.1.10.2|65|0
1.3.6.1.2.1.4.31.1.1.11.1|65|0
1.3.6.1.2.1.4.31.1.1.11.2|65|0
1.3.6.1.2.1.4.31.1.1.12.1|65|0
1.3.6.1.2.1.4.31.1.1.12.2|65|0
1.3.6.1.2.1.4.31.1.1.13.1|70|0
1.3.6.1.2.1.4.31.1.1.13.2|70|0
1.3.6.1.2.1.4.31.1.1.14.1|65|0
1.3.6.1.2.1.4.31.1.1.14.2|65|0
1.3.6.1.2.1.4.31.1.1.15.1|65|0
1.3.6.1.2.1.4.31.1.1.15.2|65|0
1.3.6.1.2.1.4.31.1.1.16.1|65|0
1.3.6.1.2.1.4.31.1.1.16.2|65|0
1.3.6.1.2.1.4.31.1.1.17.1|65|0
1.3.6.1.2.1.4.31.1.1.17.2|65|0
1.3.6.1.2.1.4.31.1.1.18.1|65|40771454
1.3.6.1.2.1.4.31.1.1.18.2|65|0
1.3.6.1.2.1.4.31.1.1.19.1|70|40771454
1.3.6.1.2.1.4.31.1.1.19.2|70|0
1.3.6.1.2.1.4.31.1.1.20.1|65|128389780
1.3.6.1.2.1.4.31.1.1.20.2|65|2
1.3.6.1.2.1.4.31.1.1.21.1|70|128389780
1.3.6.1.2.1.4.31.1.1.21.2|70|2
1.3.6.1.2.1.4.31.1.1.22.1|65|0
1.3.6.1.2.1.4.31.1.1.22.2|65|0
1.3.6.1.2.1.4.31.1.1.23.1|65|0
1.3.6.1.2.1.4.31.1.1.23.2|65|0
1.3.6.1.2.1.4.31.1.1.24.1|70|0
1.3.6.1.2.1.4.31.1.1.24.2|70|0
1.3.6.1.2.1.4.31.1.1.25.1|65|0
1.3.6.1.2.1.4.31.1.1.25.2|65|0
1.3.6.1.2.1.4.31.1.1.26.1|65|0
1.3.6.1.2.1.4.31.1.1.26.2|65|0
1.3.6.1.2.1.4.31.1.1.27.1|65|0
1.3.6.1.2.1.4.31.1.1.27.2|65|0
1.3.6.1.2.1.4.31.1.1.28.1|65|0
1.3.6.1.2.1.4.31.1.1.28.2|65|0
1.3.6.1.2.1.4.31.1.1.29.1|65|0
1.3.6.1.2.1.4.31.1.1.29.2|65|0
1.3.6.1.2.1.4.31.1.1.30.1|65|128389780
1.3.6.1.2.1.4.31.1.1.30.2|65|2
1.3.6.1.2.1.4.31.1.1.31.1|70|128389780
1.3.6.1.2.1.4.31.1.1.31.2|70|2
1.3.6.1.2.1.4.31.1.1.32.2|65|152
1.3.6.1.2.1.4.31.1.1.33.2|70|152
1.3.6.1.2.1.4.31.1.1.34.1|65|351240
1.3.6.1.2.1.4.31.1.1.34.2|65|0
1.3.6.1.2.1.4.31.1.1.35.1|70|351240
1.3.6.1.2.1.4.31.1.1.35.2|70|0
1.3.6.1.2.1.4.31.1.1.36.2|65|0
1.3.6.1.2.1.4.31.1.1.37.2|70|0
1.3.6.1.2.1.4.31.1.1.38.1|65|87971426
1.3.6.1.2.1.4.31.1.1.38.2|65|4
1.3.6.1.2.1.4.31.1.1.39.1|70|87971426
1.3.6.1.2.1.4.31.1.1.39.2|70|4
1.3.6.1.2.1.4.31.1.1.40.2|65|304
1.3.6.1.2.1.4.31.1.1.41.2|70|304
1.3.6.1.2.1.4.31.1.1.42.1|65|0
1.3.6.1.2.1.4.31.1.1.43.1|70|0
1.3.6.1.2.1.4.31.1.1.44.1|65|0
1.3.6.1.2.1.4.31.1.1.45.1|70|0
1.3.6.1.2.1.4.31.1.1.46.1|67|0
1.3.6.1.2.1.4.31.1.1.46.2|67|0
1.3.6.1.2.1.4.31.1.1.47.1|66|60000
1.3.6.1.2.1.4.31.1.1.47.2|66|60000
1.3.6.1.2.1.4.34.1.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1
1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|6|1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128
1.3.6.1.2.1.4.34.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|2
1.3.6.1.2.1.4.35.1.4.3.1.4.10.1.255.249|4x|100E7EC5F830
1.3.6.1.2.1.4.35.1.4.4.1.4.10.1.8.22|4x|18E728926C01
1.3.6.1.2.1.5.1.0|65|36724
1.3.6.1.2.1.5.2.0|65|0
1.3.6.1.2.1.5.3.0|65|9
1.3.6.1.2.1.5.4.0|65|0
1.3.6.1.2.1.5.5.0|65|0
1.3.6.1.2.1.5.6.0|65|0
1.3.6.1.2.1.5.7.0|65|0
1.3.6.1.2.1.5.8.0|65|36715
1.3.6.1.2.1.5.9.0|65|0
1.3.6.1.2.1.5.10.0|65|0
1.3.6.1.2.1.5.11.0|65|0
1.3.6.1.2.1.5.12.0|65|0
1.3.6.1.2.1.5.13.0|65|0
1.3.6.1.2.1.5.14.0|65|36790
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|75
1.3.6.1.2.1.5.17.0|65|0
1.3.6.1.2.1.5.18.0|65|0
1.3.6.1.2.1.5.19.0|65|0
1.3.6.1.2.1.5.20.0|65|0
1.3.6.1.2.1.5.21.0|65|0
1.3.6.1.2.1.5.22.0|65|36715
1.3.6.1.2.1.5.23.0|65|0
1.3.6.1.2.1.5.24.0|65|0
1.3.6.1.2.1.5.25.0|65|0
1.3.6.1.2.1.5.26.0|65|0
1.3.6.1.2.1.5.29.1.2.1|65|36724
1.3.6.1.2.1.5.29.1.2.2|65|0
1.3.6.1.2.1.5.29.1.3.1|65|0
1.3.6.1.2.1.5.29.1.3.2|65|0
1.3.6.1.2.1.5.29.1.4.1|65|36790
1.3.6.1.2.1.5.29.1.4.2|65|2
1.3.6.1.2.1.5.29.1.5.1|65|0
1.3.6.1.2.1.5.29.1.5.2|65|0
1.3.6.1.2.1.5.30.1.3.1.3|65|9
1.3.6.1.2.1.5.30.1.3.1.8|65|36715
1.3.6.1.2.1.5.30.1.4.1.0|65|36715
1.3.6.1.2.1.5.30.1.4.1.3|65|75
1.3.6.1.2.1.5.30.1.4.2.143|65|2
1.3.6.1.2.1.6.5.0|65|0
1.3.6.1.2.1.6.6.0|65|195
1.3.6.1.2.1.6.7.0|65|2
1.3.6.1.2.1.6.8.0|65|9
1.3.6.1.2.1.6.9.0|66|0
1.3.6.1.2.1.6.10.0|65|4404
1.3.6.1.2.1.6.11.0|65|8626
1.3.6.1.2.1.6.12.0|65|0
1.3.6.1.2.1.6.14.0|65|0
1.3.6.1.2.1.6.15.0|65|4
1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.13|66|818
1.3.6.1.2.1.7.1.0|65|40379249
1.3.6.1.2.1.7.2.0|65|74
1.3.6.1.2.1.7.3.0|65|0
1.3.6.1.2.1.7.4.0|65|128116708
1.3.6.1.2.1.11.1.0|65|392939
1.3.6.1.2.1.11.2.0|65|392938
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|0
1.3.6.1.2.1.11.5.0|65|0
1.3.6.1.2.1.11.6.0|65|0
1.3.6.1.2.1.11.8.0|65|0
1.3.6.1.2.1.11.9.0|65|0
1.3.6.1.2.1.11.10.0|65|0
1.3.6.1.2.1.11.11.0|65|0
1.3.6.1.2.1.11.12.0|65|0
1.3.6.1.2.1.11.13.0|65|2839225
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|117248
1.3.6.1.2.1.11.16.0|65|28683
1.3.6.1.2.1.11.17.0|65|0
1.3.6.1.2.1.11.18.0|65|0
1.3.6.1.2.1.11.19.0|65|0
1.3.6.1.2.1.11.20.0|65|0
1.3.6.1.2.1.11.21.0|65|0
1.3.6.1.2.1.11.22.0|65|0
1.3.6.1.2.1.11.24.0|65|0
1.3.6.1.2.1.11.25.0|65|0
1.3.6.1.2.1.11.26.0|65|0
1.3.6.1.2.1.11.27.0|65|0
1.3.6.1.2.1.11.28.0|65|392940
1.3.6.1.2.1.11.29.0|65|0
1.3.6.1.2.1.11.30.0|2|2
1.3.6.1.2.1.11.31.0|65|0
1.3.6.1.2.1.11.32.0|65|0
1.3.6.1.2.1.25.1.1.0|67|1463446547
1.3.6.1.2.1.25.1.4.0|4|console=ttyS0,19200 root=/dev/mtdblock5 rw rootfs=ext2 ramdisk_size=131072 load_ramdisk=1 kernel=1
1.3.6.1.2.1.25.1.5.0|66|0
1.3.6.1.2.1.25.1.6.0|66|73
1.3.6.1.2.1.25.2.2.0|2|514548
1.3.6.1.2.1.25.2.3.1.1.1|2|1
1.3.6.1.2.1.25.2.3.1.1.3|2|3
1.3.6.1.2.1.25.2.3.1.1.6|2|6
1.3.6.1.2.1.25.2.3.1.1.7|2|7
1.3.6.1.2.1.25.2.3.1.1.8|2|8
1.3.6.1.2.1.25.2.3.1.1.10|2|10
1.3.6.1.2.1.25.2.3.1.1.31|2|31
1.3.6.1.2.1.25.2.3.1.1.32|2|32
1.3.6.1.2.1.25.2.3.1.1.33|2|33
1.3.6.1.2.1.25.2.3.1.1.34|2|34
1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.2
1.3.6.1.2.1.25.2.3.1.2.3|6|1.3.6.1.2.1.25.2.1.3
1.3.6.1.2.1.25.2.3.1.2.6|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.8|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.10|6|1.3.6.1.2.1.25.2.1.3
1.3.6.1.2.1.25.2.3.1.2.31|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.32|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.33|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.34|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.3.1|4|Physical memory
1.3.6.1.2.1.25.2.3.1.3.3|4|Virtual memory
1.3.6.1.2.1.25.2.3.1.3.6|4|Memory buffers
1.3.6.1.2.1.25.2.3.1.3.7|4|Cached memory
1.3.6.1.2.1.25.2.3.1.3.8|4|Shared memory
1.3.6.1.2.1.25.2.3.1.3.10|4|Swap space
1.3.6.1.2.1.25.2.3.1.3.31|4|/
1.3.6.1.2.1.25.2.3.1.3.32|4|/boot
1.3.6.1.2.1.25.2.3.1.3.33|4|/logs
1.3.6.1.2.1.25.2.3.1.3.34|4|/home
1.3.6.1.2.1.25.2.3.1.4.1|2|1024
1.3.6.1.2.1.25.2.3.1.4.3|2|1024
1.3.6.1.2.1.25.2.3.1.4.6|2|1024
1.3.6.1.2.1.25.2.3.1.4.7|2|1024
1.3.6.1.2.1.25.2.3.1.4.8|2|1024
1.3.6.1.2.1.25.2.3.1.4.10|2|1024
1.3.6.1.2.1.25.2.3.1.4.31|2|1024
1.3.6.1.2.1.25.2.3.1.4.32|2|4096
1.3.6.1.2.1.25.2.3.1.4.33|2|4096
1.3.6.1.2.1.25.2.3.1.4.34|2|4096
1.3.6.1.2.1.25.2.3.1.5.1|2|514548
1.3.6.1.2.1.25.2.3.1.5.3|2|514548
1.3.6.1.2.1.25.2.3.1.5.6|2|514548
1.3.6.1.2.1.25.2.3.1.5.7|2|91148
1.3.6.1.2.1.25.2.3.1.5.8|2|0
1.3.6.1.2.1.25.2.3.1.5.10|2|0
1.3.6.1.2.1.25.2.3.1.5.31|2|126931
1.3.6.1.2.1.25.2.3.1.5.32|2|3067
1.3.6.1.2.1.25.2.3.1.5.33|2|66145
1.3.6.1.2.1.25.2.3.1.5.34|2|13991
1.3.6.1.2.1.25.2.3.1.6.1|2|297752
1.3.6.1.2.1.25.2.3.1.6.3|2|297752
1.3.6.1.2.1.25.2.3.1.6.6|2|1692
1.3.6.1.2.1.25.2.3.1.6.7|2|91148
1.3.6.1.2.1.25.2.3.1.6.10|2|0
1.3.6.1.2.1.25.2.3.1.6.31|2|78537
1.3.6.1.2.1.25.2.3.1.6.32|2|38
1.3.6.1.2.1.25.2.3.1.6.33|2|32207
1.3.6.1.2.1.25.2.3.1.6.34|2|6
1.3.6.1.2.1.25.3.2.1.1.768|2|768
1.3.6.1.2.1.25.3.2.1.1.1025|2|1025
1.3.6.1.2.1.25.3.2.1.1.1026|2|1026
1.3.6.1.2.1.25.3.2.1.1.1027|2|1027
1.3.6.1.2.1.25.3.2.1.1.1028|2|1028
1.3.6.1.2.1.25.3.2.1.1.1029|2|1029
1.3.6.1.2.1.25.3.2.1.1.3072|2|3072
1.3.6.1.2.1.25.3.2.1.2.768|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.1025|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1026|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1027|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1028|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.1029|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.3072|6|1.3.6.1.2.1.25.3.1.12
1.3.6.1.2.1.25.3.2.1.3.768|4|
1.3.6.1.2.1.25.3.2.1.3.1025|4|network interface lo
1.3.6.1.2.1.25.3.2.1.3.1026|4|network interface dummy0
1.3.6.1.2.1.25.3.2.1.3.1027|4|network interface eth0
1.3.6.1.2.1.25.3.2.1.3.1028|4|network interface eth1
1.3.6.1.2.1.25.3.2.1.3.1029|4|network interface sit0
1.3.6.1.2.1.25.3.2.1.3.3072|4|Guessing that there's a floating point co-processor
1.3.6.1.2.1.25.3.2.1.4.768|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1025|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1026|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1027|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1028|6|0.0
1.3.6.1.2.1.25.3.2.1.4.1029|6|0.0
1.3.6.1.2.1.25.3.2.1.4.3072|6|0.0
1.3.6.1.2.1.25.3.2.1.5.1025|2|2
1.3.6.1.2.1.25.3.2.1.5.1026|2|5
1.3.6.1.2.1.25.3.2.1.5.1027|2|2
1.3.6.1.2.1.25.3.2.1.5.1028|2|2
1.3.6.1.2.1.25.3.2.1.5.1029|2|5
1.3.6.1.2.1.25.3.2.1.6.1025|65|0
1.3.6.1.2.1.25.3.2.1.6.1026|65|0
1.3.6.1.2.1.25.3.2.1.6.1027|65|0
1.3.6.1.2.1.25.3.2.1.6.1028|65|0
1.3.6.1.2.1.25.3.2.1.6.1029|65|0
1.3.6.1.2.1.25.3.3.1.1.768|6|0.0
1.3.6.1.2.1.25.3.3.1.2.768|2|17
1.3.6.1.2.1.31.1.1.1.1.1|4|lo
1.3.6.1.2.1.31.1.1.1.1.2|4|dummy0
1.3.6.1.2.1.31.1.1.1.1.3|4|eth0
1.3.6.1.2.1.31.1.1.1.1.4|4|eth1
1.3.6.1.2.1.31.1.1.1.1.5|4|sit0
1.3.6.1.2.1.31.1.1.1.2.1|65|0
1.3.6.1.2.1.31.1.1.1.2.2|65|0
1.3.6.1.2.1.31.1.1.1.2.3|65|0
1.3.6.1.2.1.31.1.1.1.2.4|65|0
1.3.6.1.2.1.31.1.1.1.2.5|65|0
1.3.6.1.2.1.31.1.1.1.3.1|65|0
1.3.6.1.2.1.31.1.1.1.3.2|65|0
1.3.6.1.2.1.31.1.1.1.3.3|65|0
1.3.6.1.2.1.31.1.1.1.3.4|65|0
1.3.6.1.2.1.31.1.1.1.3.5|65|0
1.3.6.1.2.1.31.1.1.1.4.1|65|0
1.3.6.1.2.1.31.1.1.1.4.2|65|0
1.3.6.1.2.1.31.1.1.1.4.3|65|0
1.3.6.1.2.1.31.1.1.1.4.4|65|0
1.3.6.1.2.1.31.1.1.1.4.5|65|0
1.3.6.1.2.1.31.1.1.1.5.1|65|0
1.3.6.1.2.1.31.1.1.1.5.2|65|0
1.3.6.1.2.1.31.1.1.1.5.3|65|0
1.3.6.1.2.1.31.1.1.1.5.4|65|0
1.3.6.1.2.1.31.1.1.1.5.5|65|0
1.3.6.1.2.1.31.1.1.1.6.1|70|2133599550
1.3.6.1.2.1.31.1.1.1.6.2|70|0
1.3.6.1.2.1.31.1.1.1.6.3|70|2691830715
1.3.6.1.2.1.31.1.1.1.6.4|70|909026392
1.3.6.1.2.1.31.1.1.1.6.5|70|0
1.3.6.1.2.1.31.1.1.1.7.1|70|12194401
1.3.6.1.2.1.31.1.1.1.7.2|70|0
1.3.6.1.2.1.31.1.1.1.7.3|70|28774483
1.3.6.1.2.1.31.1.1.1.7.4|70|10216049
1.3.6.1.2.1.31.1.1.1.7.5|70|0
1.3.6.1.2.1.31.1.1.1.8.1|70|0
1.3.6.1.2.1.31.1.1.1.8.2|70|0
1.3.6.1.2.1.31.1.1.1.8.3|70|0
1.3.6.1.2.1.31.1.1.1.8.4|70|0
1.3.6.1.2.1.31.1.1.1.8.5|70|0
1.3.6.1.2.1.31.1.1.1.9.1|70|0
1.3.6.1.2.1.31.1.1.1.9.2|70|0
1.3.6.1.2.1.31.1.1.1.9.3|70|0
1.3.6.1.2.1.31.1.1.1.9.4|70|0
1.3.6.1.2.1.31.1.1.1.9.5|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|2133599550
1.3.6.1.2.1.31.1.1.1.10.2|70|0
1.3.6.1.2.1.31.1.1.1.10.3|70|6233919370
1.3.6.1.2.1.31.1.1.1.10.4|70|4540323383
1.3.6.1.2.1.31.1.1.1.10.5|70|0
1.3.6.1.2.1.31.1.1.1.11.1|70|12194401
1.3.6.1.2.1.31.1.1.1.11.2|70|0
1.3.6.1.2.1.31.1.1.1.11.3|70|68261934
1.3.6.1.2.1.31.1.1.1.11.4|70|48772072
1.3.6.1.2.1.31.1.1.1.11.5|70|0
1.3.6.1.2.1.31.1.1.1.12.1|70|0
1.3.6.1.2.1.31.1.1.1.12.2|70|0
1.3.6.1.2.1.31.1.1.1.12.3|70|0
1.3.6.1.2.1.31.1.1.1.12.4|70|0
1.3.6.1.2.1.31.1.1.1.12.5|70|0
1.3.6.1.2.1.31.1.1.1.13.1|70|0
1.3.6.1.2.1.31.1.1.1.13.2|70|0
1.3.6.1.2.1.31.1.1.1.13.3|70|0
1.3.6.1.2.1.31.1.1.1.13.4|70|0
1.3.6.1.2.1.31.1.1.1.13.5|70|0
1.3.6.1.2.1.31.1.1.1.15.1|66|10
1.3.6.1.2.1.31.1.1.1.15.2|66|0
1.3.6.1.2.1.31.1.1.1.15.3|66|1000
1.3.6.1.2.1.31.1.1.1.15.4|66|1000
1.3.6.1.2.1.31.1.1.1.15.5|66|0
1.3.6.1.2.1.31.1.1.1.16.1|2|2
1.3.6.1.2.1.31.1.1.1.16.2|2|2
1.3.6.1.2.1.31.1.1.1.16.3|2|2
1.3.6.1.2.1.31.1.1.1.16.4|2|2
1.3.6.1.2.1.31.1.1.1.16.5|2|2
1.3.6.1.2.1.31.1.1.1.17.2|2|1
1.3.6.1.2.1.31.1.1.1.17.3|2|1
1.3.6.1.2.1.31.1.1.1.17.4|2|1
1.3.6.1.2.1.31.1.1.1.17.5|2|1
1.3.6.1.2.1.31.1.1.1.18.1|4|
1.3.6.1.2.1.31.1.1.1.18.2|4|
1.3.6.1.2.1.31.1.1.1.18.3|4|
1.3.6.1.2.1.31.1.1.1.18.4|4|
1.3.6.1.2.1.31.1.1.1.18.5|4|
1.3.6.1.2.1.31.1.1.1.19.1|67|0
1.3.6.1.2.1.31.1.1.1.19.2|67|0
1.3.6.1.2.1.31.1.1.1.19.3|67|0
1.3.6.1.2.1.31.1.1.1.19.4|67|0
1.3.6.1.2.1.31.1.1.1.19.5|67|0
1.3.6.1.4.1.2021.4.3.0|2|0
1.3.6.1.4.1.2021.4.4.0|2|0
1.3.6.1.4.1.2021.4.5.0|2|514548
1.3.6.1.4.1.2021.4.6.0|2|216796
1.3.6.1.4.1.2021.4.11.0|2|216796
1.3.6.1.4.1.2021.4.13.0|2|0
1.3.6.1.4.1.2021.4.14.0|2|1692
1.3.6.1.4.1.2021.4.15.0|2|91148
1.3.6.1.4.1.2021.10.1.5.1|2|160
1.3.6.1.4.1.2021.10.1.5.2|2|176
1.3.6.1.4.1.2021.10.1.5.3|2|170
1.3.6.1.4.1.2021.11.1.0|2|1
1.3.6.1.4.1.2021.11.2.0|4|systemStats
1.3.6.1.4.1.2021.11.3.0|2|0
1.3.6.1.4.1.2021.11.4.0|2|0
1.3.6.1.4.1.2021.11.5.0|2|7
1.3.6.1.4.1.2021.11.6.0|2|0
1.3.6.1.4.1.2021.11.7.0|2|2942
1.3.6.1.4.1.2021.11.8.0|2|4009
1.3.6.1.4.1.2021.11.9.0|2|7
1.3.6.1.4.1.2021.11.10.0|2|8
1.3.6.1.4.1.2021.11.11.0|2|83
1.3.6.1.4.1.2021.11.50.0|65|111507215
1.3.6.1.4.1.2021.11.51.0|65|0
1.3.6.1.4.1.2021.11.52.0|65|116090924
1.3.6.1.4.1.2021.11.53.0|65|1235544698
1.3.6.1.4.1.2021.11.54.0|65|0
1.3.6.1.4.1.2021.11.55.0|65|0
1.3.6.1.4.1.2021.11.56.0|65|0
1.3.6.1.4.1.2021.11.57.0|65|138399590
1.3.6.1.4.1.2021.11.58.0|65|180376
1.3.6.1.4.1.2021.11.59.0|65|156104124
1.3.6.1.4.1.2021.11.60.0|65|3931703144
1.3.6.1.4.1.2021.11.61.0|65|302687
1.3.6.1.4.1.2021.11.62.0|65|0
1.3.6.1.4.1.2021.11.63.0|65|0
1.3.6.1.4.1.13827.12.1.16.0|4|Sonoma_D12 GPS 6010-0065-000 v 3.04 - Sep 24 22:58:19 2019
1.3.6.1.6.3.1.1.6.1.0|2|426724685
1.3.6.1.6.3.10.2.1.3.0|2|14634393