Improved support for cambium cmm and added cmm4 (#8737)

- Added port discovery for cmm3 (not available for cmm4, not that i could find)
- Added discovery for cmm4
- Added Power port cmm4
- Removed Processor bug by disabling processor on device.

I am unable to test CMM4 and may need someone to do so or review for possible errors.

Fixes Issues #8732, #8731

DO NOT DELETE THIS TEXT

#### Please note

> Please read this information carefully. You can run `./scripts/pre-commit.php` to check your code before submitting.

- [x] Have you followed our [code guidelines?](http://docs.librenms.org/Developing/Code-Guidelines/)

#### Testers

If you would like to test this pull request then please run: `./scripts/github-apply <pr_id>`, i.e `./scripts/github-apply 5926`
This commit is contained in:
Paul Heinrichs
2018-07-07 13:56:54 +01:00
committed by Neil Lathwood
parent 37e3643679
commit f22e1a6ba6
10 changed files with 3234 additions and 0 deletions
+5
View File
@@ -5,6 +5,11 @@ icon: cambium
group: cambium
over:
- { graph: device_bits, text: 'Device Traffic' }
- { graph: device_state, text: 'Power Status' }
poller_modules:
processors: false
discovery_modules:
processors: false
discovery:
-
sysObjectID:
+20
View File
@@ -0,0 +1,20 @@
os: cmm4
text: Cambium CMM4
type: wireless
icon: cambium
group: cambium
mib_dir: cambium/cmm4
over:
- { graph: device_bits, text: 'Device Traffic' }
- { graph: device_state, text: 'Power Status' }
poller_modules:
processors: false
discovery_modules:
processors: false
discovery:
-
sysDescr_regex:
- '/Cmm4/i'
snmpget:
oid: .1.3.6.1.4.1.161.19.3.6.3.2.0
value: CMM4
+14
View File
@@ -0,0 +1,14 @@
modules:
sensors:
state:
data:
-
oid: CMM4-MIB::cmm4PortPowerStatus
value: cmm4PortPowerStatus
num_oid: .1.3.6.1.4.1.161.19.3.6.3.1.1.4.
index: cmm4PortPowerStatus.{{ $index }}
descr: Power Status {{ $index }}
states:
- { value: -1, generic: 1, graph: 1, descr: POE Fault }
- { value: 0, generic: 2, graph: 1, descr: Power Off }
- { value: 1, generic: 0, graph: 1, descr: Power On }
+4
View File
@@ -245,6 +245,10 @@ if ($device['os'] == 'procera') {
require_once 'ports/procera.inc.php';
}
if ($device['os'] == 'cmm') {
require_once 'ports/cmm.inc.php';
}
if ($config['enable_ports_adsl']) {
$device['xdsl_count'] = dbFetchCell("SELECT COUNT(*) FROM `ports` WHERE `device_id` = ? AND `ifType` in ('adsl','vdsl')", [$device['device_id']]);
}
+57
View File
@@ -0,0 +1,57 @@
<?php
/**
* cmm.inc.php
*
* LibreNMS CMM Ports include
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright 2018 Paul Heinrichs
* @author Paul Heinrichs <[email protected]>
*/
$cmm_stats = snmpwalk_group($device, 'cmmSwitchTable', 'CMM3-MIB');
$cmm_stats = snmpwalk_group($device, 'cmmPortTable', 'CMM3-MIB', 1, $cmm_stats);
$required = [
'ifInOctets' => 'rxOctets',
'ifOutOctets' => 'txOctets',
'ifInUcastPkts' => 'rxUnicastPkts',
'ifOutUcastPkts' => 'txUnicastPkts',
'ifInErrors' => 'rxDropPkts',
'ifOutErrors' => 'txDropPkts',
'ifInBroadcastPkts' => 'rxBroadcastPkts',
'ifOutBroadcastPkts' => 'txBroadcastPkts',
'ifInMulticastPkts' => 'rxMulticastPkts',
'ifOutMulticastPkts' => 'txMulticastPkts'
];
$cmm_ports = [];
foreach ($cmm_stats as $index => $port) {
$cmm_port = [];
foreach ($required as $ifEntry => $IfxStat) {
$cmm_port[$ifEntry] = $cmm_stats[$index][$IfxStat];
}
$cmm_port['ifName'] = "CMM Port ". $port['portNumber'];
$cmm_port['ifDescr'] = "CMM Port ". $port['portNumber'];
$cmm_port['ifDuplex'] = ($cmm_stats[$index]['duplexStatus'] == 1 ? 'fullDuplex' : 'halfDuplex');
$cmm_port['ifSpeed'] = ($cmm_stats[$index]['linkSpeed'] == 1 ? '100000000' : '10000000');
$cmm_port['ifOperStatus'] = ($cmm_stats[$index]['linkStatus'] == 1 ? "up" : "down");
$cmm_port['ifType'] = 'ethernetCsmacd';
array_push($cmm_ports, $cmm_port);
}
$port_stats = array_replace_recursive($cmm_ports, $port_stats);
File diff suppressed because it is too large Load Diff
+1424
View File
File diff suppressed because it is too large Load Diff
+40
View File
@@ -0,0 +1,40 @@
{
"os": {
"discovery": {
"devices": [
{
"sysName": "",
"sysObjectID": ".0.0.0.0.0.0.0.0.0.0",
"sysDescr": "CMM4 3.0",
"sysContact": null,
"version": null,
"hardware": "",
"features": null,
"location": null,
"os": "cmm4",
"type": "wireless",
"serial": null,
"icon": "cambium.svg"
}
]
},
"poller": {
"devices": [
{
"sysName": "",
"sysObjectID": ".0.0.0.0.0.0.0.0.0.0",
"sysDescr": "CMM4 3.0",
"sysContact": null,
"version": null,
"hardware": "",
"features": null,
"location": null,
"os": "cmm4",
"type": "wireless",
"serial": null,
"icon": "cambium.svg"
}
]
}
}
}
+570
View File
@@ -0,0 +1,570 @@
1.3.6.1.2.1.1.1.0|4|CMM 3.1
1.3.6.1.2.1.1.2.0|6|2.716653033.173240166.1953980786.1696612975.1869881430.1701999465.1869488186.541278542.1330665794
1.3.6.1.2.1.1.3.0|67|731264165
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.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|1
1.3.6.1.2.1.2.2.1.2.1|4|Motorola 10/100 FEC
1.3.6.1.2.1.2.2.1.2.2|4|loopback (pseudo ethernet)
1.3.6.1.2.1.2.2.1.3.1|2|6
1.3.6.1.2.1.2.2.1.3.2|2|6
1.3.6.1.2.1.2.2.1.4.1|2|0
1.3.6.1.2.1.2.2.1.4.2|2|1500
1.3.6.1.2.1.2.2.1.5.1|66|100000000
1.3.6.1.2.1.2.2.1.5.2|66|10000000
1.3.6.1.2.1.2.2.1.6.1|4x|0A003EE0132A
1.3.6.1.2.1.2.2.1.6.2|4|LPBACK
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|1
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|1
1.3.6.1.2.1.2.2.1.9.1|67|1120665
1.3.6.1.2.1.2.2.1.9.2|67|1120665
1.3.6.1.2.1.2.2.1.10.1|65|2131605277
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.11.1|65|11966028
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.12.1|65|248486904
1.3.6.1.2.1.2.2.1.12.2|65|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.14.1|65|51397
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.16.1|65|527333129
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.17.1|65|4126232
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.18.1|65|221547
1.3.6.1.2.1.2.2.1.18.2|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.20.1|65|4346763
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.4.3.0|65|5484150
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|190
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|5483959
1.3.6.1.2.1.4.10.0|65|3278310
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|190
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.5.4.201|2|1
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|2
1.3.6.1.2.1.4.20.1.3.10.5.4.201|64|255.255.0.0
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.1.10.5.2.203|4x|000456CBCFD6
1.3.6.1.2.1.4.22.1.2.1.10.5.2.204|4x|000456C9EA2A
1.3.6.1.2.1.4.22.1.2.1.10.5.4.213|4x|0A003E910D3C
1.3.6.1.2.1.4.22.1.2.1.10.5.4.221|4x|0A003E20906F
1.3.6.1.2.1.4.22.1.2.1.10.5.4.223|4x|0A003E20E79E
1.3.6.1.2.1.4.22.1.2.1.10.5.4.250|4x|000456C769EA
1.3.6.1.2.1.4.22.1.2.1.10.5.4.251|4x|000456D0C9A8
1.3.6.1.2.1.4.22.1.2.1.10.5.4.252|4x|000456CE6DFA
1.3.6.1.2.1.4.22.1.2.1.10.5.200.200|4x|00900B43F502
1.3.6.1.2.1.5.1.0|65|443208
1.3.6.1.2.1.5.2.0|65|0
1.3.6.1.2.1.5.3.0|65|19
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|443189
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|443189
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|0
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|443189
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.6.5.0|65|0
1.3.6.1.2.1.6.6.0|65|3706
1.3.6.1.2.1.6.7.0|65|0
1.3.6.1.2.1.6.8.0|65|0
1.3.6.1.2.1.6.9.0|66|0
1.3.6.1.2.1.6.10.0|65|22424
1.3.6.1.2.1.6.11.0|65|18721
1.3.6.1.2.1.6.12.0|65|50
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.1.0|65|2829213
1.3.6.1.2.1.7.2.0|65|0
1.3.6.1.2.1.7.3.0|65|2201931
1.3.6.1.2.1.7.4.0|65|2816431
1.3.6.1.2.1.11.1.0|65|1473730
1.3.6.1.2.1.11.2.0|65|2947457
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|2922109
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|730803
1.3.6.1.2.1.11.16.0|65|1564
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|1
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|1473730
1.3.6.1.2.1.11.29.0|65|0
1.3.6.1.2.1.11.30.0|2|1
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.31.1.1.1.1.255|4|1
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.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.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.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|0
1.3.6.1.2.1.31.1.1.1.6.2|70|0
1.3.6.1.2.1.31.1.1.1.7.1|70|0
1.3.6.1.2.1.31.1.1.1.7.2|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.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|0
1.3.6.1.2.1.31.1.1.1.10.2|70|0
1.3.6.1.2.1.31.1.1.1.11.1|70|0
1.3.6.1.2.1.31.1.1.1.11.2|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.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.14.1|2|0
1.3.6.1.2.1.31.1.1.1.14.2|2|0
1.3.6.1.2.1.31.1.1.1.15.1|66|0
1.3.6.1.2.1.31.1.1.1.15.2|66|0
1.3.6.1.2.1.31.1.1.1.16.1|2|0
1.3.6.1.2.1.31.1.1.1.16.2|2|0
1.3.6.1.2.1.31.1.1.1.17.1|2|0
1.3.6.1.2.1.31.1.1.1.17.2|2|0
1.3.6.1.2.1.31.1.1.1.18.1|4|None
1.3.6.1.2.1.31.1.1.1.18.2|4|None
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.2.1.3.1|2|0
1.3.6.1.2.1.31.1.2.1.3.2|2|0
1.3.6.1.4.1.161.19.3.4.2.1.1.1.1|2|1
1.3.6.1.4.1.161.19.3.4.2.1.1.1.2|2|2
1.3.6.1.4.1.161.19.3.4.2.1.1.1.3|2|3
1.3.6.1.4.1.161.19.3.4.2.1.1.1.4|2|4
1.3.6.1.4.1.161.19.3.4.2.1.1.1.5|2|5
1.3.6.1.4.1.161.19.3.4.2.1.1.1.6|2|6
1.3.6.1.4.1.161.19.3.4.2.1.1.1.7|2|7
1.3.6.1.4.1.161.19.3.4.2.1.1.1.8|2|8
1.3.6.1.4.1.161.19.3.4.2.1.1.1.9|2|9
1.3.6.1.4.1.161.19.3.4.2.1.1.2.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.2.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.2.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.2.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.2.5|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.2.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.2.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.2.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.2.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.3.1|70|0
1.3.6.1.4.1.161.19.3.4.2.1.1.3.2|70|1121193296728
1.3.6.1.4.1.161.19.3.4.2.1.1.3.3|70|58922198054
1.3.6.1.4.1.161.19.3.4.2.1.1.3.4|70|117477361354
1.3.6.1.4.1.161.19.3.4.2.1.1.3.5|70|44185642574
1.3.6.1.4.1.161.19.3.4.2.1.1.3.6|70|1122035358837
1.3.6.1.4.1.161.19.3.4.2.1.1.3.7|70|629194212142
1.3.6.1.4.1.161.19.3.4.2.1.1.3.8|70|31263940126408
1.3.6.1.4.1.161.19.3.4.2.1.1.3.9|70|549186550
1.3.6.1.4.1.161.19.3.4.2.1.1.4.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.4.2|65|7018258
1.3.6.1.4.1.161.19.3.4.2.1.1.4.3|65|41519
1.3.6.1.4.1.161.19.3.4.2.1.1.4.4|65|72967
1.3.6.1.4.1.161.19.3.4.2.1.1.4.5|65|52283
1.3.6.1.4.1.161.19.3.4.2.1.1.4.6|65|15255691
1.3.6.1.4.1.161.19.3.4.2.1.1.4.7|65|12350784
1.3.6.1.4.1.161.19.3.4.2.1.1.4.8|65|171556785
1.3.6.1.4.1.161.19.3.4.2.1.1.4.9|65|4
1.3.6.1.4.1.161.19.3.4.2.1.1.5.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.5.2|65|381515
1.3.6.1.4.1.161.19.3.4.2.1.1.5.3|65|212694
1.3.6.1.4.1.161.19.3.4.2.1.1.5.4|65|212695
1.3.6.1.4.1.161.19.3.4.2.1.1.5.5|65|212695
1.3.6.1.4.1.161.19.3.4.2.1.1.5.6|65|370324
1.3.6.1.4.1.161.19.3.4.2.1.1.5.7|65|655
1.3.6.1.4.1.161.19.3.4.2.1.1.5.8|65|8203168
1.3.6.1.4.1.161.19.3.4.2.1.1.5.9|65|221543
1.3.6.1.4.1.161.19.3.4.2.1.1.6.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.6.2|65|1832386221
1.3.6.1.4.1.161.19.3.4.2.1.1.6.3|65|26258044
1.3.6.1.4.1.161.19.3.4.2.1.1.6.4|65|80047347
1.3.6.1.4.1.161.19.3.4.2.1.1.6.5|65|23468174
1.3.6.1.4.1.161.19.3.4.2.1.1.6.6|65|1238563679
1.3.6.1.4.1.161.19.3.4.2.1.1.6.7|65|999102654
1.3.6.1.4.1.161.19.3.4.2.1.1.6.8|65|280164945
1.3.6.1.4.1.161.19.3.4.2.1.1.6.9|65|1
1.3.6.1.4.1.161.19.3.4.2.1.1.7.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.7.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.7.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.7.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.7.5|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.7.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.7.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.7.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.7.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.8.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.8.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.8.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.8.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.8.5|65|1
1.3.6.1.4.1.161.19.3.4.2.1.1.8.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.8.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.8.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.8.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.9.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.9.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.9.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.9.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.9.5|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.9.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.9.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.9.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.9.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.10.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.10.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.10.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.10.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.10.5|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.10.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.10.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.10.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.10.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.11.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.11.2|65|2302784642
1.3.6.1.4.1.161.19.3.4.2.1.1.11.3|65|400772883
1.3.6.1.4.1.161.19.3.4.2.1.1.11.4|65|631665984
1.3.6.1.4.1.161.19.3.4.2.1.1.11.5|65|379319366
1.3.6.1.4.1.161.19.3.4.2.1.1.11.6|65|3172082137
1.3.6.1.4.1.161.19.3.4.2.1.1.11.7|65|3406237178
1.3.6.1.4.1.161.19.3.4.2.1.1.11.8|65|13302034
1.3.6.1.4.1.161.19.3.4.2.1.1.11.9|65|4126245
1.3.6.1.4.1.161.19.3.4.2.1.1.12.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.12.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.12.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.12.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.12.5|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.12.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.12.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.12.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.12.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.13.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.13.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.13.3|65|5
1.3.6.1.4.1.161.19.3.4.2.1.1.13.4|65|33
1.3.6.1.4.1.161.19.3.4.2.1.1.13.5|65|1
1.3.6.1.4.1.161.19.3.4.2.1.1.13.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.13.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.13.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.13.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.14.1|70|0
1.3.6.1.4.1.161.19.3.4.2.1.1.14.2|70|1121193936410
1.3.6.1.4.1.161.19.3.4.2.1.1.14.3|70|58922199216
1.3.6.1.4.1.161.19.3.4.2.1.1.14.4|70|117477358912
1.3.6.1.4.1.161.19.3.4.2.1.1.14.5|70|44185641980
1.3.6.1.4.1.161.19.3.4.2.1.1.14.6|70|1122036419444
1.3.6.1.4.1.161.19.3.4.2.1.1.14.7|70|629194596995
1.3.6.1.4.1.161.19.3.4.2.1.1.14.8|70|31263952731323
1.3.6.1.4.1.161.19.3.4.2.1.1.14.9|70|549189821
1.3.6.1.4.1.161.19.3.4.2.1.1.15.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.15.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.15.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.15.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.15.5|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.15.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.15.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.15.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.15.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.16.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.16.2|65|2
1.3.6.1.4.1.161.19.3.4.2.1.1.16.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.16.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.16.5|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.16.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.16.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.16.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.16.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.17.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.17.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.17.3|65|5
1.3.6.1.4.1.161.19.3.4.2.1.1.17.4|65|33
1.3.6.1.4.1.161.19.3.4.2.1.1.17.5|65|1
1.3.6.1.4.1.161.19.3.4.2.1.1.17.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.17.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.17.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.17.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.18.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.18.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.18.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.18.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.18.5|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.18.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.18.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.18.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.18.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.19.1|70|29349558703
1.3.6.1.4.1.161.19.3.4.2.1.1.19.2|70|14862089565091
1.3.6.1.4.1.161.19.3.4.2.1.1.19.3|70|737911991580
1.3.6.1.4.1.161.19.3.4.2.1.1.19.4|70|1294063505662
1.3.6.1.4.1.161.19.3.4.2.1.1.19.5|70|707679247330
1.3.6.1.4.1.161.19.3.4.2.1.1.19.6|70|5953132040827
1.3.6.1.4.1.161.19.3.4.2.1.1.19.7|70|7855717001735
1.3.6.1.4.1.161.19.3.4.2.1.1.19.8|70|3093155912299
1.3.6.1.4.1.161.19.3.4.2.1.1.19.9|70|29746803733
1.3.6.1.4.1.161.19.3.4.2.1.1.20.1|65|206348598
1.3.6.1.4.1.161.19.3.4.2.1.1.20.2|65|199330334
1.3.6.1.4.1.161.19.3.4.2.1.1.20.3|65|206307080
1.3.6.1.4.1.161.19.3.4.2.1.1.20.4|65|206275632
1.3.6.1.4.1.161.19.3.4.2.1.1.20.5|65|206296316
1.3.6.1.4.1.161.19.3.4.2.1.1.20.6|65|191092652
1.3.6.1.4.1.161.19.3.4.2.1.1.20.7|65|193997602
1.3.6.1.4.1.161.19.3.4.2.1.1.20.8|65|34791492
1.3.6.1.4.1.161.19.3.4.2.1.1.20.9|65|206348597
1.3.6.1.4.1.161.19.3.4.2.1.1.21.1|65|8725689
1.3.6.1.4.1.161.19.3.4.2.1.1.21.2|65|8344171
1.3.6.1.4.1.161.19.3.4.2.1.1.21.3|65|8725689
1.3.6.1.4.1.161.19.3.4.2.1.1.21.4|65|8725689
1.3.6.1.4.1.161.19.3.4.2.1.1.21.5|65|8725689
1.3.6.1.4.1.161.19.3.4.2.1.1.21.6|65|8355360
1.3.6.1.4.1.161.19.3.4.2.1.1.21.7|65|8725031
1.3.6.1.4.1.161.19.3.4.2.1.1.21.8|65|752498
1.3.6.1.4.1.161.19.3.4.2.1.1.21.9|65|8725689
1.3.6.1.4.1.161.19.3.4.2.1.1.22.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.22.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.22.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.22.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.22.5|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.22.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.22.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.22.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.22.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.23.1|65|3777857
1.3.6.1.4.1.161.19.3.4.2.1.1.23.2|65|3780786216
1.3.6.1.4.1.161.19.3.4.2.1.1.23.3|65|609513513
1.3.6.1.4.1.161.19.3.4.2.1.1.23.4|65|935635535
1.3.6.1.4.1.161.19.3.4.2.1.1.23.5|65|507577213
1.3.6.1.4.1.161.19.3.4.2.1.1.23.6|65|551059447
1.3.6.1.4.1.161.19.3.4.2.1.1.23.7|65|2237634294
1.3.6.1.4.1.161.19.3.4.2.1.1.23.8|65|1702864078
1.3.6.1.4.1.161.19.3.4.2.1.1.23.9|65|7873705
1.3.6.1.4.1.161.19.3.4.2.1.1.24.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.24.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.24.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.24.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.24.5|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.24.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.24.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.24.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.24.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.25.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.25.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.25.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.25.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.25.5|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.25.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.25.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.25.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.25.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.26.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.26.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.26.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.26.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.26.5|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.26.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.26.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.26.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.26.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.27.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.27.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.27.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.27.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.27.5|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.27.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.27.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.27.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.27.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.28.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.28.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.28.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.28.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.28.5|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.28.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.28.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.28.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.28.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.29.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.29.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.29.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.29.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.29.5|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.29.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.29.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.29.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.29.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.30.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.30.2|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.30.3|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.30.4|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.30.5|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.30.6|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.30.7|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.30.8|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.30.9|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.31.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.31.2|65|1690411662
1.3.6.1.4.1.161.19.3.4.2.1.1.31.3|65|124742355
1.3.6.1.4.1.161.19.3.4.2.1.1.31.4|65|107048460
1.3.6.1.4.1.161.19.3.4.2.1.1.31.5|65|143552357
1.3.6.1.4.1.161.19.3.4.2.1.1.31.6|65|705032660
1.3.6.1.4.1.161.19.3.4.2.1.1.31.7|65|309498532
1.3.6.1.4.1.161.19.3.4.2.1.1.31.8|65|402849070
1.3.6.1.4.1.161.19.3.4.2.1.1.31.9|65|1080621
1.3.6.1.4.1.161.19.3.4.2.1.1.32.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.32.2|65|2899214408
1.3.6.1.4.1.161.19.3.4.2.1.1.32.3|65|197978723
1.3.6.1.4.1.161.19.3.4.2.1.1.32.4|65|445006251
1.3.6.1.4.1.161.19.3.4.2.1.1.32.5|65|207222621
1.3.6.1.4.1.161.19.3.4.2.1.1.32.6|65|1641539005
1.3.6.1.4.1.161.19.3.4.2.1.1.32.7|65|2058786527
1.3.6.1.4.1.161.19.3.4.2.1.1.32.8|65|1425824221
1.3.6.1.4.1.161.19.3.4.2.1.1.32.9|65|2232844
1.3.6.1.4.1.161.19.3.4.2.1.1.33.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.33.2|65|1395248820
1.3.6.1.4.1.161.19.3.4.2.1.1.33.3|65|43661546
1.3.6.1.4.1.161.19.3.4.2.1.1.33.4|65|8778165
1.3.6.1.4.1.161.19.3.4.2.1.1.33.5|65|10737951
1.3.6.1.4.1.161.19.3.4.2.1.1.33.6|65|100725176
1.3.6.1.4.1.161.19.3.4.2.1.1.33.7|65|652967006
1.3.6.1.4.1.161.19.3.4.2.1.1.33.8|65|601870496
1.3.6.1.4.1.161.19.3.4.2.1.1.33.9|65|415094
1.3.6.1.4.1.161.19.3.4.2.1.1.34.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.34.2|65|236906370
1.3.6.1.4.1.161.19.3.4.2.1.1.34.3|65|8851882
1.3.6.1.4.1.161.19.3.4.2.1.1.34.4|65|8124565
1.3.6.1.4.1.161.19.3.4.2.1.1.34.5|65|5429463
1.3.6.1.4.1.161.19.3.4.2.1.1.34.6|65|68444844
1.3.6.1.4.1.161.19.3.4.2.1.1.34.7|65|70753469
1.3.6.1.4.1.161.19.3.4.2.1.1.34.8|65|285206145
1.3.6.1.4.1.161.19.3.4.2.1.1.34.9|65|615470
1.3.6.1.4.1.161.19.3.4.2.1.1.35.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.35.2|65|98478516
1.3.6.1.4.1.161.19.3.4.2.1.1.35.3|65|14836387
1.3.6.1.4.1.161.19.3.4.2.1.1.35.4|65|21128285
1.3.6.1.4.1.161.19.3.4.2.1.1.35.5|65|3976413
1.3.6.1.4.1.161.19.3.4.2.1.1.35.6|65|98664167
1.3.6.1.4.1.161.19.3.4.2.1.1.35.7|65|172764009
1.3.6.1.4.1.161.19.3.4.2.1.1.35.8|65|1127006296
1.3.6.1.4.1.161.19.3.4.2.1.1.35.9|65|19
1.3.6.1.4.1.161.19.3.4.2.1.1.36.1|65|0
1.3.6.1.4.1.161.19.3.4.2.1.1.36.2|65|284899450
1.3.6.1.4.1.161.19.3.4.2.1.1.36.3|65|10956231
1.3.6.1.4.1.161.19.3.4.2.1.1.36.4|65|41865955
1.3.6.1.4.1.161.19.3.4.2.1.1.36.5|65|8665556
1.3.6.1.4.1.161.19.3.4.2.1.1.36.6|65|573305591
1.3.6.1.4.1.161.19.3.4.2.1.1.36.7|65|153821294
1.3.6.1.4.1.161.19.3.4.2.1.1.36.8|65|645296592
1.3.6.1.4.1.161.19.3.4.2.1.1.36.9|65|3769
1.3.6.1.4.1.161.19.3.4.4.1.1.1.1|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.1.2|2|2
1.3.6.1.4.1.161.19.3.4.4.1.1.1.3|2|3
1.3.6.1.4.1.161.19.3.4.4.1.1.1.4|2|4
1.3.6.1.4.1.161.19.3.4.4.1.1.1.5|2|5
1.3.6.1.4.1.161.19.3.4.4.1.1.1.6|2|6
1.3.6.1.4.1.161.19.3.4.4.1.1.1.7|2|7
1.3.6.1.4.1.161.19.3.4.4.1.1.1.8|2|8
1.3.6.1.4.1.161.19.3.4.4.1.1.2.1|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.2.2|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.2.3|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.2.4|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.2.5|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.2.6|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.2.7|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.2.8|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.3.1|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.3.2|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.3.3|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.3.4|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.3.5|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.3.6|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.3.7|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.3.8|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.4.1|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.4.2|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.4.3|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.4.4|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.4.5|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.4.6|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.4.7|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.4.8|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.5.1|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.5.2|2|0
1.3.6.1.4.1.161.19.3.4.4.1.1.5.3|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.5.4|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.5.5|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.5.6|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.5.7|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.5.8|2|0
1.3.6.1.4.1.161.19.3.4.4.1.1.6.1|2|0
1.3.6.1.4.1.161.19.3.4.4.1.1.6.2|2|0
1.3.6.1.4.1.161.19.3.4.4.1.1.6.3|2|0
1.3.6.1.4.1.161.19.3.4.4.1.1.6.4|2|0
1.3.6.1.4.1.161.19.3.4.4.1.1.6.5|2|0
1.3.6.1.4.1.161.19.3.4.4.1.1.6.6|2|0
1.3.6.1.4.1.161.19.3.4.4.1.1.6.7|2|0
1.3.6.1.4.1.161.19.3.4.4.1.1.6.8|2|0
1.3.6.1.4.1.161.19.3.4.4.1.1.7.1|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.7.2|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.7.3|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.7.4|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.7.5|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.7.6|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.7.7|2|1
1.3.6.1.4.1.161.19.3.4.4.1.1.7.8|2|1
1.3.6.1.4.1.161.19.3.4.4.2.0|4|CMM
1.3.6.1.6.3.1.1.4.1.0|6|1.3.6.1.6.3.1.1.5.1
+11
View File
@@ -0,0 +1,11 @@
1.3.6.1.2.1.1.1.0|4|CMM4 3.0
1.3.6.1.2.1.1.2.0|6|0.0.0.0.0.0.0.0.0.0
1.3.6.1.4.1.161.19.3.6.3.2.0|4|"CMM4 0a-00-3e-e8-12-20"
1.3.6.1.4.1.161.19.3.6.3.1.1.4.1|2|1
1.3.6.1.4.1.161.19.3.6.3.1.1.4.2|2|0
1.3.6.1.4.1.161.19.3.6.3.1.1.4.3|2|1
1.3.6.1.4.1.161.19.3.6.3.1.1.4.4|2|1
1.3.6.1.4.1.161.19.3.6.3.1.1.4.5|2|1
1.3.6.1.4.1.161.19.3.6.3.1.1.4.6|2|1
1.3.6.1.4.1.161.19.3.6.3.1.1.4.7|2|0
1.3.6.1.4.1.161.19.3.6.3.1.1.4.8|2|1