Added support for Motorola and Thomson DOCSIS Cable Modems. (#12386)

* Added tv_signal sensor class (TV signal in dBmV (decibells to millivolt))

* Added OS motorola-cm (Motorolla DOCSIS Cable Modem)

* Added OS thomson-cm (Thomson DOCSIS Cable Modem)
This commit is contained in:
Ramūnas Lukoševičius 2021-01-03 23:35:32 +02:00 committed by GitHub
parent 503b507629
commit 10eb7b2c2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
22 changed files with 3642 additions and 0 deletions

View File

@ -36,6 +36,7 @@ class Sensor extends DeviceRelatedModel
'snr' => 'signal',
'state' => 'bullseye',
'temperature' => 'thermometer-three-quarters',
'tv_signal' => 'signal',
'voltage' => 'bolt',
'waterflow' => 'tint',
'percent' => 'percent',

View File

@ -36,6 +36,7 @@ the values we expect to see the data in:
| snr | SNR |
| state | # |
| temperature | C |
| tv_signal | dBmV |
| voltage | V |
| waterflow | l/m |
| percent | % |

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,30 @@
mib: DOCS-IF-MIB
modules:
os:
sysDescr_regex: '/<<.* SW_REV: (?<version>.*); MODEL: (?<hardware>.*)>>/'
sensors:
tv_signal:
data:
-
oid: docsIfDownstreamChannelTable
value: docsIfDownChannelPower
divisor: 10
num_oid: '.1.3.6.1.2.1.10.127.1.1.1.1.6.{{ $index }}'
descr: RX Power
index: 1
-
oid: docsIfCmStatusTable
value: docsIfCmStatusTxPower
divisor: 10
num_oid: '.1.3.6.1.2.1.10.127.1.2.2.1.3.{{ $index }}'
descr: TX Power
index: 2
snr:
data:
-
oid: docsIfSignalQualityTable
value: docsIfSigQSignalNoise
divisor: 10
num_oid: '.1.3.6.1.2.1.10.127.1.1.4.1.5.{{ $index }}'
descr: SNR
index: 1

View File

@ -0,0 +1,30 @@
mib: DOCS-IF-MIB
modules:
os:
sysDescr_regex: '/Thomson DOCSIS Cable Modem .* SW_REV: (?<version>.*); MODEL: (?<hardware>.*)>>/'
sensors:
tv_signal:
data:
-
oid: docsIfDownstreamChannelTable
value: docsIfDownChannelPower
divisor: 10
num_oid: '.1.3.6.1.2.1.10.127.1.1.1.1.6.{{ $index }}'
descr: RX Power
index: 1
-
oid: docsIfCmStatusTable
value: docsIfCmStatusTxPower
divisor: 10
num_oid: '.1.3.6.1.2.1.10.127.1.2.2.1.3.{{ $index }}'
descr: TX Power
index: 2
snr:
data:
-
oid: docsIfSignalQualityTable
value: docsIfSigQSignalNoise
divisor: 10
num_oid: '.1.3.6.1.2.1.10.127.1.1.4.1.5.{{ $index }}'
descr: SNR
index: 1

View File

@ -0,0 +1,10 @@
os: motorola-cm
text: 'Motorola DOCSIS Cable Modem'
icon: motorola-cm
type: network
over:
- { graph: device_bits, text: 'Device Traffic' }
discovery:
-
sysObjectID:
- .1.3.6.1.4.1.1166.1.450.12.2

View File

@ -0,0 +1,10 @@
os: thomson-cm
text: 'Thomson DOCSIS Cable Modem'
icon: thomson-cm
type: network
over:
- { graph: device_bits, text: 'Device Traffic' }
discovery:
-
sysObjectID:
- .1.3.6.1.4.1.2863.205.43014.420.4.0.82.4.5

View File

@ -63,6 +63,7 @@ $run_sensors = [
'state',
'count',
'temperature',
'tv_signal',
'voltage',
'snr',
'pressure',

View File

@ -0,0 +1,7 @@
<?php
$class = 'tv_signal';
$unit = 'dBmV';
$unit_long = 'dBmV';
require 'includes/html/graphs/device/sensor.inc.php';

View File

@ -0,0 +1,23 @@
<?php
$scale_min = '-50';
$scale_max = '80';
require 'includes/html/graphs/common.inc.php';
$rrd_options .= " COMMENT:' Min Last Max\\n'";
$sensor['sensor_descr_fixed'] = rrdtool_escape($sensor['sensor_descr'], 18);
$rrd_options .= " DEF:sensor=$rrd_filename:sensor:AVERAGE";
$rrd_options .= " LINE1.5:sensor#cc0000:'" . $sensor['sensor_descr_fixed'] . "'";
$rrd_options .= " GPRINT:sensor$current_id:MIN:%5.2lfdBm";
$rrd_options .= ' GPRINT:sensor:LAST:%5.2lfdBm';
$rrd_options .= ' GPRINT:sensor:MAX:%5.2lfdBm\l';
if (is_numeric($sensor['sensor_limit'])) {
$rrd_options .= ' HRULE:' . $sensor['sensor_limit'] . '#999999::dashes';
}
if (is_numeric($sensor['sensor_limit_low'])) {
$rrd_options .= ' HRULE:' . $sensor['sensor_limit_low'] . '#999999::dashes';
}

View File

@ -44,6 +44,7 @@ $ber = dbFetchCell("select count(*) from sensors WHERE sensor_class='ber' AND de
$eer = dbFetchCell("select count(*) from sensors WHERE sensor_class='eer' AND device_id = ?", [$device['device_id']]);
$waterflow = dbFetchCell("select count(*) from sensors WHERE sensor_class='waterflow' AND device_id = ?", [$device['device_id']]);
$percent = dbFetchCell("select count(*) from sensors WHERE sensor_class='percent' AND device_id = ?", [$device['device_id']]);
$tv_signal = dbFetchCell("select count(*) from sensors WHERE sensor_class='tv_signal' AND device_id = ?", [$device['device_id']]);
unset($datas);
$datas[] = 'overview';
@ -131,6 +132,10 @@ if ($signal) {
$datas[] = 'signal';
}
if ($tv_signal) {
$datas[] = 'tv_signal';
}
if ($airflow) {
$datas[] = 'airflow';
}
@ -200,6 +205,7 @@ $type_text['state'] = 'State';
$type_text['count'] = 'Count';
$type_text['load'] = 'Load';
$type_text['signal'] = 'Signal';
$type_text['tv_signal'] = 'TV signal';
$type_text['airflow'] = 'Airflow';
$type_text['snr'] = 'SNR';
$type_text['pressure'] = 'Pressure';

View File

@ -0,0 +1,7 @@
<?php
$class = 'tv_signal';
$unit = 'dBmV';
$graph_type = 'sensor_signal';
require 'sensors.inc.php';

View File

@ -59,6 +59,7 @@ require 'overview/sensors/state.inc.php';
require 'overview/sensors/count.inc.php';
require 'overview/sensors/percent.inc.php';
require 'overview/sensors/signal.inc.php';
require 'overview/sensors/tv_signal.inc.php';
require 'overview/sensors/airflow.inc.php';
require 'overview/sensors/snr.inc.php';
require 'overview/sensors/pressure.inc.php';

View File

@ -0,0 +1,8 @@
<?php
$graph_type = 'sensor_signal';
$sensor_class = 'tv_signal';
$sensor_unit = 'dBmV';
$sensor_type = 'TV signal';
require 'includes/html/pages/device/overview/generic/sensor.inc.php';

View File

@ -49,6 +49,7 @@ $type_text = [
'state' => 'State',
'count' => 'Count',
'signal' => 'Signal',
'tv_signal' => 'TV signal',
'snr' => 'SNR',
'pressure' => 'Pressure',
'cooling' => 'Cooling',

View File

@ -0,0 +1,22 @@
<?php
/*
* LibreNMS
*
* 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. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*
* @package LibreNMS
* @subpackage webui
* @link http://librenms.org
* @copyright 2017 LibreNMS
* @author LibreNMS Contributors
*/
$graph_type = 'sensor_signal';
$class = 'tv_signal';
$unit = 'dBmV';
require 'includes/html/pages/health/sensors.inc.php';

View File

@ -144,6 +144,12 @@ return [
'unit' => 'dBm',
'unit_long' => 'Decibal-Milliwatts',
],
'tv_signal' => [
'short' => 'Signal',
'long' => 'TV signal',
'unit' => 'dBmV',
'unit_long' => 'Decibel-Millivolts',
],
'snr' => [
'short' => 'SNR',
'long' => 'Signal to Noise Ratio',

1414
tests/data/motorola-cm.json Normal file

File diff suppressed because it is too large Load Diff

1414
tests/data/thomson-cm.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,323 @@
1.3.6.1.2.1.1.1.0|4|<<HW_REV: 1; VENDOR: Motorola Corporation; BOOTR: 2164; SW_REV: SB5101E-2.6.2.0-SCM00-NOSH; MODEL: SB5101E>>
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.1166.1.450.12.2
1.3.6.1.2.1.1.3.0|67|1847201000
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|Broadcom BCM3349 Rev. a0, Ethernet NI
1.3.6.1.2.1.2.2.1.2.2|4|Broadcom BCM3349 r.A0 CM CATV-MAC IF
1.3.6.1.2.1.2.2.1.2.3|4|Broadcom BCM3349 r.A0 CM CATV-DS IF
1.3.6.1.2.1.2.2.1.2.4|4|Broadcom BCM3349 r.A0 CM CATV-US IF
1.3.6.1.2.1.2.2.1.2.5|4|Broadcom BCM3349 Rev. a0, USB NI
1.3.6.1.2.1.2.2.1.2.6|4|Software Loopback
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|127
1.3.6.1.2.1.2.2.1.3.3|2|128
1.3.6.1.2.1.2.2.1.3.4|2|129
1.3.6.1.2.1.2.2.1.3.5|2|160
1.3.6.1.2.1.2.2.1.3.6|2|24
1.3.6.1.2.1.2.2.1.4.1|2|1500
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|1764
1.3.6.1.2.1.2.2.1.4.4|2|1764
1.3.6.1.2.1.2.2.1.4.5|2|1500
1.3.6.1.2.1.2.2.1.4.6|2|1500
1.3.6.1.2.1.2.2.1.6.1|4x|000F9FBAC30E
1.3.6.1.2.1.2.2.1.6.2|4x|000F9FBAC30E
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|4|
1.3.6.1.2.1.2.2.1.6.5|4x|000F9FBAC30E
1.3.6.1.2.1.2.2.1.6.6|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|1
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|1
1.3.6.1.2.1.2.2.1.7.6|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.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|5
1.3.6.1.2.1.2.2.1.8.6|2|1
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.9.6|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|8
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.13.6|65|0
1.3.6.1.2.1.2.2.1.14.1|65|198
1.3.6.1.2.1.2.2.1.14.2|65|21
1.3.6.1.2.1.2.2.1.14.3|65|7753
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.14.6|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|13423590
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|13423590
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.19.6|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|297
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.20.6|65|0
1.3.6.1.2.1.4.3.0|65|3538050
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.5.0|65|426845
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|185129
1.3.6.1.2.1.4.8.0|65|185147
1.3.6.1.2.1.4.9.0|65|2926057
1.3.6.1.2.1.4.10.0|65|2681681
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.0.0.48|2|2
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|6
1.3.6.1.2.1.4.20.1.2.192.168.100.1|2|1
1.3.6.1.2.1.4.20.1.3.10.0.0.48|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.20.1.3.192.168.100.1|64|255.255.255.0
1.3.6.1.2.1.4.22.1.2.2.10.0.0.1|4x|D4CA6D73BB50
1.3.6.1.2.1.4.22.1.2.2.10.0.120.250|4x|D4CA6D73BB50
1.3.6.1.2.1.4.22.1.2.2.10.0.120.254|4x|001311E9C8D3
1.3.6.1.2.1.5.1.0|65|381892
1.3.6.1.2.1.5.2.0|65|0
1.3.6.1.2.1.5.3.0|65|185129
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|196763
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|381551
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|184788
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|196763
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.7.1.0|65|2729267
1.3.6.1.2.1.7.2.0|65|799862
1.3.6.1.2.1.7.3.0|65|0
1.3.6.1.2.1.7.4.0|65|2300110
1.3.6.1.2.1.10.7.2.1.19.1|2|3
1.3.6.1.2.1.10.127.1.1.1.1.1.3|2|1
1.3.6.1.2.1.10.127.1.1.1.1.2.3|2|386000000
1.3.6.1.2.1.10.127.1.1.1.1.3.3|2|8000000
1.3.6.1.2.1.10.127.1.1.1.1.4.3|2|4
1.3.6.1.2.1.10.127.1.1.1.1.5.3|2|8
1.3.6.1.2.1.10.127.1.1.1.1.6.3|2|-73
1.3.6.1.2.1.10.127.1.1.1.1.7.3|2|3
1.3.6.1.2.1.10.127.1.1.4.1.1.3|2|2
1.3.6.1.2.1.10.127.1.1.4.1.2.3|65|2004900768
1.3.6.1.2.1.10.127.1.1.4.1.3.3|65|1
1.3.6.1.2.1.10.127.1.1.4.1.4.3|65|0
1.3.6.1.2.1.10.127.1.1.4.1.5.3|2|400
1.3.6.1.2.1.10.127.1.1.4.1.6.3|2|30
1.3.6.1.2.1.10.127.1.1.4.1.7.3|4x|0B011000FFF3FFF000230010FFB300030a4646204143203030203643203030203142204646204338203030203230203030203842204646204633204646203442200a3030203242203030204330204646204343204645204533203030204646203032203637204642203530204642204131200a3243204545203030203030204646204646203030203030203030203030203030203030203030203030204646204646200a303020303020303020303020
1.3.6.1.2.1.10.127.1.1.4.1.8.3|70|14889803357
1.3.6.1.2.1.10.127.1.1.4.1.9.3|70|1
1.3.6.1.2.1.10.127.1.1.4.1.10.3|70|0
1.3.6.1.2.1.10.127.1.2.2.1.1.2|2|12
1.3.6.1.2.1.10.127.1.2.2.1.2.2|4|R5.0
1.3.6.1.2.1.10.127.1.2.2.1.3.2|2|524
1.3.6.1.2.1.10.127.1.2.2.1.4.2|65|101
1.3.6.1.2.1.10.127.1.2.2.1.5.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.6.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.7.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.8.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.9.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.10.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.11.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.12.2|65|2759
1.3.6.1.2.1.10.127.1.2.2.1.13.2|65|24
1.3.6.1.2.1.10.127.1.2.2.1.14.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.15.2|2|1
1.3.6.1.2.1.10.127.1.2.2.1.16.2|2|2
1.3.6.1.2.1.10.127.1.2.2.1.17.2|4x|0101180007FF000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030
1.3.6.1.2.1.11.1.0|65|1929276
1.3.6.1.2.1.11.2.0|65|1929275
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|3148252
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|1884984
1.3.6.1.2.1.11.16.0|65|9825
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|1929277
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.17.1.1.0|4x|000F9FBAC30E
1.3.6.1.2.1.17.1.4.1.2.1|2|1
1.3.6.1.2.1.17.1.4.1.2.2|2|2
1.3.6.1.2.1.17.1.4.1.2.5|2|5
1.3.6.1.2.1.17.4.3.1.2.0.11.106.83.212.172|2|1
1.3.6.1.2.1.17.4.3.1.2.0.15.159.186.195.14|2|1
1.3.6.1.2.1.31.1.1.1.1.1|4|eth0
1.3.6.1.2.1.31.1.1.1.1.2|4|cbl0
1.3.6.1.2.1.31.1.1.1.1.3|4|cbl0
1.3.6.1.2.1.31.1.1.1.1.4|4|cbl0
1.3.6.1.2.1.31.1.1.1.1.5|4|usb0
1.3.6.1.2.1.31.1.1.1.1.6|4|lo 0
1.3.6.1.2.1.31.1.1.1.2.1|65|124302
1.3.6.1.2.1.31.1.1.1.2.2|65|1192
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.2.6|65|0
1.3.6.1.2.1.31.1.1.1.3.1|65|2261
1.3.6.1.2.1.31.1.1.1.3.2|65|93003215
1.3.6.1.2.1.31.1.1.1.3.3|65|218066534
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.3.6|65|0
1.3.6.1.2.1.31.1.1.1.4.1|65|1192
1.3.6.1.2.1.31.1.1.1.4.2|65|124027
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.4.6|65|0
1.3.6.1.2.1.31.1.1.1.5.1|65|74029983
1.3.6.1.2.1.31.1.1.1.5.2|65|16087
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.5.6|65|0
1.3.6.1.2.1.31.1.1.1.6.1|70|7447902842
1.3.6.1.2.1.31.1.1.1.6.2|70|154775061534
1.3.6.1.2.1.31.1.1.1.6.3|70|156163255535
1.3.6.1.2.1.31.1.1.1.6.4|70|0
1.3.6.1.2.1.31.1.1.1.6.5|70|0
1.3.6.1.2.1.31.1.1.1.6.6|70|0
1.3.6.1.2.1.31.1.1.1.7.1|70|51187657
1.3.6.1.2.1.31.1.1.1.7.2|70|123213334
1.3.6.1.2.1.31.1.1.1.7.3|70|0
1.3.6.1.2.1.31.1.1.1.7.4|70|0
1.3.6.1.2.1.31.1.1.1.7.5|70|0
1.3.6.1.2.1.31.1.1.1.7.6|70|0
1.3.6.1.2.1.31.1.1.1.8.1|70|124302
1.3.6.1.2.1.31.1.1.1.8.2|70|1192
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.8.6|70|0
1.3.6.1.2.1.31.1.1.1.9.1|70|2261
1.3.6.1.2.1.31.1.1.1.9.2|70|93003215
1.3.6.1.2.1.31.1.1.1.9.3|70|218066539
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.9.6|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|153267369865
1.3.6.1.2.1.31.1.1.1.10.2|70|6840360290
1.3.6.1.2.1.31.1.1.1.10.3|70|0
1.3.6.1.2.1.31.1.1.1.10.4|70|7312431634
1.3.6.1.2.1.31.1.1.1.10.5|70|0
1.3.6.1.2.1.31.1.1.1.10.6|70|0
1.3.6.1.2.1.31.1.1.1.11.1|70|120393704
1.3.6.1.2.1.31.1.1.1.11.2|70|40772642
1.3.6.1.2.1.31.1.1.1.11.3|70|0
1.3.6.1.2.1.31.1.1.1.11.4|70|42763579
1.3.6.1.2.1.31.1.1.1.11.5|70|0
1.3.6.1.2.1.31.1.1.1.11.6|70|0
1.3.6.1.2.1.31.1.1.1.12.1|70|1192
1.3.6.1.2.1.31.1.1.1.12.2|70|124027
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.12.6|70|0
1.3.6.1.2.1.31.1.1.1.13.1|70|74029984
1.3.6.1.2.1.31.1.1.1.13.2|70|16087
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.13.6|70|0
1.3.6.1.2.1.31.1.1.1.14.1|2|1
1.3.6.1.2.1.31.1.1.1.14.2|2|1
1.3.6.1.2.1.31.1.1.1.14.3|2|2
1.3.6.1.2.1.31.1.1.1.14.4|2|2
1.3.6.1.2.1.31.1.1.1.14.5|2|1
1.3.6.1.2.1.31.1.1.1.14.6|2|1
1.3.6.1.2.1.31.1.1.1.15.1|66|100
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|56
1.3.6.1.2.1.31.1.1.1.15.4|66|10
1.3.6.1.2.1.31.1.1.1.15.5|66|12
1.3.6.1.2.1.31.1.1.1.15.6|66|0
1.3.6.1.2.1.31.1.1.1.16.1|2|1
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|1
1.3.6.1.2.1.31.1.1.1.16.5|2|1
1.3.6.1.2.1.31.1.1.1.16.6|2|1
1.3.6.1.2.1.31.1.1.1.17.1|2|1
1.3.6.1.2.1.31.1.1.1.17.2|2|2
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.17.6|2|2
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.18.6|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.2.1.31.1.1.1.19.6|67|0
1.3.6.1.2.1.31.1.2.1.3.0.1|2|1
1.3.6.1.2.1.31.1.2.1.3.0.2|2|1
1.3.6.1.2.1.31.1.2.1.3.0.5|2|1
1.3.6.1.2.1.31.1.2.1.3.0.6|2|1
1.3.6.1.2.1.31.1.2.1.3.1.0|2|1
1.3.6.1.2.1.31.1.2.1.3.2.3|2|1
1.3.6.1.2.1.31.1.2.1.3.2.4|2|1
1.3.6.1.2.1.31.1.2.1.3.3.0|2|1
1.3.6.1.2.1.31.1.2.1.3.4.0|2|1
1.3.6.1.2.1.31.1.2.1.3.5.0|2|1
1.3.6.1.2.1.31.1.2.1.3.6.0|2|1

View File

@ -0,0 +1,327 @@
1.3.6.1.2.1.1.1.0|4|Thomson DOCSIS Cable Modem <<HW_REV: 4.0; VENDOR: Thomson; BOOTR: 2.1.6d; SW_REV: ST52.04.05; MODEL: TCM420>>
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2863.205.43014.420.4.0.82.4.5
1.3.6.1.2.1.1.3.0|67|95886400
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|Broadcom BCM3349 Rev. a0, Ethernet NI
1.3.6.1.2.1.2.2.1.2.2|4|Broadcom BCM3349 r.A0 CM CATV-MAC IF
1.3.6.1.2.1.2.2.1.2.3|4|Broadcom BCM3349 r.A0 CM CATV-DS IF
1.3.6.1.2.1.2.2.1.2.4|4|Broadcom BCM3349 r.A0 CM CATV-US IF
1.3.6.1.2.1.2.2.1.2.5|4|Broadcom BCM3349 Rev. a0, USB NI
1.3.6.1.2.1.2.2.1.2.6|4|Software Loopback
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|127
1.3.6.1.2.1.2.2.1.3.3|2|128
1.3.6.1.2.1.2.2.1.3.4|2|129
1.3.6.1.2.1.2.2.1.3.5|2|160
1.3.6.1.2.1.2.2.1.3.6|2|24
1.3.6.1.2.1.2.2.1.4.1|2|1500
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|1764
1.3.6.1.2.1.2.2.1.4.4|2|1764
1.3.6.1.2.1.2.2.1.4.5|2|1500
1.3.6.1.2.1.2.2.1.4.6|2|1500
1.3.6.1.2.1.2.2.1.6.1|4x|00189B371E07
1.3.6.1.2.1.2.2.1.6.2|4x|00189B371E07
1.3.6.1.2.1.2.2.1.6.3|4|
1.3.6.1.2.1.2.2.1.6.4|4|
1.3.6.1.2.1.2.2.1.6.5|4x|00189B371E07
1.3.6.1.2.1.2.2.1.6.6|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|1
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|1
1.3.6.1.2.1.2.2.1.7.6|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.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|5
1.3.6.1.2.1.2.2.1.8.6|2|1
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.9.6|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.13.6|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|2
1.3.6.1.2.1.2.2.1.14.3|65|153
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.14.6|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|565119
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|565119
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.19.6|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|7
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.20.6|65|0
1.3.6.1.2.1.4.3.0|65|73377
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.5.0|65|17757
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|8880
1.3.6.1.2.1.4.8.0|65|8880
1.3.6.1.2.1.4.9.0|65|46739
1.3.6.1.2.1.4.10.0|65|33971
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.0.1.49|2|2
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|6
1.3.6.1.2.1.4.20.1.2.192.168.100.1|2|1
1.3.6.1.2.1.4.20.1.3.10.0.1.49|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.20.1.3.192.168.100.1|64|255.255.255.0
1.3.6.1.2.1.4.22.1.2.2.10.0.0.1|4x|D4CA6D73BB50
1.3.6.1.2.1.4.22.1.2.2.10.0.120.250|4x|D4CA6D73BB50
1.3.6.1.2.1.4.22.1.2.2.10.0.120.254|4x|001311E9C8D3
1.3.6.1.2.1.5.1.0|65|10812
1.3.6.1.2.1.5.2.0|65|0
1.3.6.1.2.1.5.3.0|65|8880
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|1932
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|11294
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|9362
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|1932
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.7.1.0|65|44839
1.3.6.1.2.1.7.2.0|65|41315
1.3.6.1.2.1.7.3.0|65|0
1.3.6.1.2.1.7.4.0|65|22708
1.3.6.1.2.1.10.7.2.1.19.1|2|3
1.3.6.1.2.1.10.127.1.1.1.1.1.3|2|1
1.3.6.1.2.1.10.127.1.1.1.1.2.3|2|386000000
1.3.6.1.2.1.10.127.1.1.1.1.3.3|2|8000000
1.3.6.1.2.1.10.127.1.1.1.1.4.3|2|4
1.3.6.1.2.1.10.127.1.1.1.1.5.3|2|8
1.3.6.1.2.1.10.127.1.1.1.1.6.3|2|128
1.3.6.1.2.1.10.127.1.1.1.1.7.3|2|3
1.3.6.1.2.1.10.127.1.1.4.1.1.3|2|2
1.3.6.1.2.1.10.127.1.1.4.1.2.3|65|2613708976
1.3.6.1.2.1.10.127.1.1.4.1.3.3|65|28
1.3.6.1.2.1.10.127.1.1.4.1.4.3|65|12
1.3.6.1.2.1.10.127.1.1.4.1.5.3|2|418
1.3.6.1.2.1.10.127.1.1.4.1.6.3|2|31
1.3.6.1.2.1.10.127.1.1.4.1.7.3|4x|0B011000FFF0FFF0002B0010FFAB00020a4646204234203030203642203030203046204646204342203030203333203030203838204646204442204646203530200a3030203443203030204238204646203945204645204546203031203530203032203530204641204141204642204444200a3243204533203030203030204646204646204646204646203030203030204646204646203030203030204646204646200a303020303020303020303020
1.3.6.1.2.1.10.127.1.1.4.1.8.3|70|2613709678
1.3.6.1.2.1.10.127.1.1.4.1.9.3|70|28
1.3.6.1.2.1.10.127.1.1.4.1.10.3|70|12
1.3.6.1.2.1.10.127.1.2.2.1.1.2|2|12
1.3.6.1.2.1.10.127.1.2.2.1.2.2|4|R5.0
1.3.6.1.2.1.10.127.1.2.2.1.3.2|2|312
1.3.6.1.2.1.10.127.1.2.2.1.4.2|65|953
1.3.6.1.2.1.10.127.1.2.2.1.5.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.6.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.7.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.8.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.9.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.10.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.11.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.12.2|65|19
1.3.6.1.2.1.10.127.1.2.2.1.13.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.14.2|65|0
1.3.6.1.2.1.10.127.1.2.2.1.15.2|2|1
1.3.6.1.2.1.10.127.1.2.2.1.16.2|2|2
1.3.6.1.2.1.10.127.1.2.2.1.17.2|4x|0101180007FF000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030200a3030203030203030203030
1.3.6.1.2.1.11.1.0|65|3506
1.3.6.1.2.1.11.2.0|65|3505
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|26059
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|1728
1.3.6.1.2.1.11.16.0|65|326
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|3507
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.17.1.1.0|4x|00189B371E07
1.3.6.1.2.1.17.1.4.1.2.1|2|1
1.3.6.1.2.1.17.1.4.1.2.2|2|2
1.3.6.1.2.1.17.1.4.1.2.5|2|5
1.3.6.1.2.1.17.4.3.1.2.0.24.155.55.30.7|2|1
1.3.6.1.2.1.17.4.3.1.2.200.58.53.46.169.136|2|1
1.3.6.1.2.1.17.7.1.1.1.0|2|1
1.3.6.1.2.1.17.7.1.4.5.1.1.1|66|1
1.3.6.1.2.1.17.7.1.4.5.1.1.2|66|1
1.3.6.1.2.1.17.7.1.4.5.1.1.5|66|1
1.3.6.1.2.1.31.1.1.1.1.1|4|eth0
1.3.6.1.2.1.31.1.1.1.1.2|4|cbl0
1.3.6.1.2.1.31.1.1.1.1.3|4|cbl0
1.3.6.1.2.1.31.1.1.1.1.4|4|cbl0
1.3.6.1.2.1.31.1.1.1.1.5|4|usb0
1.3.6.1.2.1.31.1.1.1.1.6|4|lo 0
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|17
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.2.6|65|0
1.3.6.1.2.1.31.1.1.1.3.1|65|283
1.3.6.1.2.1.31.1.1.1.3.2|65|3647500
1.3.6.1.2.1.31.1.1.1.3.3|65|34210432
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.3.6|65|0
1.3.6.1.2.1.31.1.1.1.4.1|65|17
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.4.6|65|0
1.3.6.1.2.1.31.1.1.1.5.1|65|3646726
1.3.6.1.2.1.31.1.1.1.5.2|65|1090
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.5.6|65|0
1.3.6.1.2.1.31.1.1.1.6.1|70|3070017346
1.3.6.1.2.1.31.1.1.1.6.2|70|41322215381
1.3.6.1.2.1.31.1.1.1.6.3|70|41531606321
1.3.6.1.2.1.31.1.1.1.6.4|70|0
1.3.6.1.2.1.31.1.1.1.6.5|70|0
1.3.6.1.2.1.31.1.1.1.6.6|70|0
1.3.6.1.2.1.31.1.1.1.7.1|70|8817105
1.3.6.1.2.1.31.1.1.1.7.2|70|30466977
1.3.6.1.2.1.31.1.1.1.7.3|70|0
1.3.6.1.2.1.31.1.1.1.7.4|70|0
1.3.6.1.2.1.31.1.1.1.7.5|70|0
1.3.6.1.2.1.31.1.1.1.7.6|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|17
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.8.6|70|0
1.3.6.1.2.1.31.1.1.1.9.1|70|283
1.3.6.1.2.1.31.1.1.1.9.2|70|3647500
1.3.6.1.2.1.31.1.1.1.9.3|70|34210436
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.9.6|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|41319386999
1.3.6.1.2.1.31.1.1.1.10.2|70|3036441288
1.3.6.1.2.1.31.1.1.1.10.3|70|0
1.3.6.1.2.1.31.1.1.1.10.4|70|3122624578
1.3.6.1.2.1.31.1.1.1.10.5|70|0
1.3.6.1.2.1.31.1.1.1.10.6|70|0
1.3.6.1.2.1.31.1.1.1.11.1|70|30441297
1.3.6.1.2.1.31.1.1.1.11.2|70|8290978
1.3.6.1.2.1.31.1.1.1.11.3|70|0
1.3.6.1.2.1.31.1.1.1.11.4|70|8388021
1.3.6.1.2.1.31.1.1.1.11.5|70|0
1.3.6.1.2.1.31.1.1.1.11.6|70|0
1.3.6.1.2.1.31.1.1.1.12.1|70|17
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.12.6|70|0
1.3.6.1.2.1.31.1.1.1.13.1|70|3646726
1.3.6.1.2.1.31.1.1.1.13.2|70|1090
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.13.6|70|0
1.3.6.1.2.1.31.1.1.1.14.1|2|1
1.3.6.1.2.1.31.1.1.1.14.2|2|1
1.3.6.1.2.1.31.1.1.1.14.3|2|2
1.3.6.1.2.1.31.1.1.1.14.4|2|2
1.3.6.1.2.1.31.1.1.1.14.5|2|1
1.3.6.1.2.1.31.1.1.1.14.6|2|1
1.3.6.1.2.1.31.1.1.1.15.1|66|100
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|56
1.3.6.1.2.1.31.1.1.1.15.4|66|20
1.3.6.1.2.1.31.1.1.1.15.5|66|12
1.3.6.1.2.1.31.1.1.1.15.6|66|0
1.3.6.1.2.1.31.1.1.1.16.1|2|1
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|1
1.3.6.1.2.1.31.1.1.1.16.5|2|1
1.3.6.1.2.1.31.1.1.1.16.6|2|1
1.3.6.1.2.1.31.1.1.1.17.1|2|1
1.3.6.1.2.1.31.1.1.1.17.2|2|2
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.17.6|2|2
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.18.6|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.2.1.31.1.1.1.19.6|67|0
1.3.6.1.2.1.31.1.2.1.3.0.1|2|1
1.3.6.1.2.1.31.1.2.1.3.0.2|2|1
1.3.6.1.2.1.31.1.2.1.3.0.5|2|1
1.3.6.1.2.1.31.1.2.1.3.0.6|2|1
1.3.6.1.2.1.31.1.2.1.3.1.0|2|1
1.3.6.1.2.1.31.1.2.1.3.2.3|2|1
1.3.6.1.2.1.31.1.2.1.3.2.4|2|1
1.3.6.1.2.1.31.1.2.1.3.3.0|2|1
1.3.6.1.2.1.31.1.2.1.3.4.0|2|1
1.3.6.1.2.1.31.1.2.1.3.5.0|2|1
1.3.6.1.2.1.31.1.2.1.3.6.0|2|1