new sensors for siteboss OS + new sensor type: percentage (%) (#11958)

* split siteboss 530 and 550 into multiple OS

* add more sensors to siteboss550 and new Percent sensor

* fix contact closure event state values

* split os polling for siteboss to siteboss530 and siteboss550

* add test unit for siteboss550, rename test unit for siteboss to siteboss530

* refactor siteboss os polling to \Librenms\OS

* implement OSPolling to Sitebos550

* force save in pollOS() to keep custom sysName during polling

* updated unit test

* update device graphs

* remove pollOS and extra save()

* siteboss550 no longer extends OSPolling

* update siteboss550 test data

* update discoverOS() to match recent os discovery changes

* styleCI changes

* fix siteboss hardware discovery; add check to OS polling if os_group .inc file exists

* collapse siteboss to single OS, implement siteboss sensors in advanced discovery

* add siteboss unit tests

* removed unneeded OS disco defs

* styleCI changes

* more styleCI changes

* split siteboss os to siteboss530 and siteboss550

* split siteboss os to siteboss530 and siteboss550

* move php polling back into yaml

* keep original siteboss OS name

* resave snmp data for siteboss OS

* resave snmp data for siteboss550 OS
This commit is contained in:
Hayden 2020-10-20 17:11:12 -07:00 committed by GitHub
parent f822567186
commit 397a10e73f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
24 changed files with 29129 additions and 274 deletions

35
LibreNMS/OS/Siteboss.php Normal file
View File

@ -0,0 +1,35 @@
<?php
/**
* Siteboss.php
*
* Asentria Siteboss
*
* 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/>.
*
* @link http://librenms.org
*/
namespace LibreNMS\OS;
use App\Models\Device;
use LibreNMS\OS;
class Siteboss extends OS
{
public function discoverOS(Device $device): void
{
parent::discoverOS($device); // yaml
$device->sysName = snmp_get($this->getDeviceArray(), 'siteName.0', '-Osqnv', 'SITEBOSS-530-STD-MIB');
}
}

View File

@ -0,0 +1,35 @@
<?php
/**
* Siteboss.php
*
* Asentria Siteboss
*
* 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/>.
*
* @link http://librenms.org
*/
namespace LibreNMS\OS;
use App\Models\Device;
use LibreNMS\OS;
class Siteboss550 extends OS
{
public function discoverOS(Device $device): void
{
parent::discoverOS($device); // yaml
$device->sysName = snmp_get($this->getDeviceArray(), 'siteName.0', '-Osqnv', 'SITEBOSS-550-STD-MIB');
}
}

View File

@ -34,6 +34,7 @@ class Sensor extends DeviceRelatedModel
'temperature' => 'thermometer-three-quarters',
'voltage' => 'bolt',
'waterflow' => 'tint',
'percent' => 'percent',
];
// ---- Helper Functions ----

View File

@ -38,6 +38,7 @@ the values we expect to see the data in:
| temperature | C |
| voltage | V |
| waterflow | l/m |
| percent | % |
#### Simple health discovery
@ -456,6 +457,7 @@ Chromatic_dispersion:
Ber:
Eer:
Waterflow:
Percent:
>> Runtime for discovery module 'sensors': 3.9340 seconds with 190024 bytes
>> SNMP: [16/3.89s] MySQL: [36/0.03s] RRD: [0/0.00s]

View File

@ -1,7 +1,7 @@
mib: SITEBOSS-530-STD-MIB
modules:
os:
sysDescr_regex: '/(?<hardware>\S+\s\S+) (?<version>.+)$/'
sysDescr_regex: '/(?<hardware>SiteBoss \S+) (?<version>.*)/'
sensors:
temperature:
data:
@ -15,3 +15,113 @@ modules:
oid: esIndexPC
op: '!='
value: 1
state:
data:
-
oid: esPointTable
value: esPointInEventState
num_oid: '.1.3.6.1.4.1.3052.12.1.1.1.1.5.{{ $index }}'
descr: esPointName
group: Contact Closures
state_name: contactClosure
states:
- { value: 1, generic: 2, graph: 1, descr: event }
- { value: 2, generic: 0, graph: 1, descr: normal }
skip_values:
-
oid: esIndexPC
op: '!='
value: 2
-
oid: esPointName
op: '='
value: unnamed
-
oid: esPointTable
value: esPointValueInt
num_oid: '.1.3.6.1.4.1.3052.12.1.1.1.1.6.{{ $index }}'
descr: esPointName
group: Relay Outputs
state_name: relayOutput
states:
- { value: 0, generic: 0, graph: 1, descr: de-energized }
- { value: 1, generic: 2, graph: 1, descr: energized }
skip_values:
-
oid: esIndexPC
op: '!='
value: 6
-
oid: esPointValueStr
op: 'not_in_array'
value: ['Active/Energized', 'Inactive/Energized', 'Active/De-energized', 'Inactive/De-energized']
-
oid: esPointName
op: '='
value: unnamed
-
oid: esPointTable
value: esPointValueStr
num_oid: '.1.3.6.1.4.1.3052.12.1.1.1.1.6.{{ $index }}'
descr: esPointName
group: Power Outputs
state_name: powerOutput
states:
- { value: 0, generic: 0, graph: 1, descr: de-energized }
- { value: 1, generic: 2, graph: 1, descr: energized }
skip_values:
-
oid: esIndexPC
op: '!='
value: 6
-
oid: esPointValueStr
op: 'not_in_array'
value: ['On/Energized', 'Off/De-energized']
-
oid: esPointName
op: '='
value: unnamed
humidity:
data:
-
oid: esPointTable
value: esPointValueInt
num_oid: '.1.3.6.1.4.1.3052.12.1.1.1.1.6.{{ $index }}'
descr: esPointName
skip_values:
-
oid: esIndexPC
op: '!='
value: 3
count:
data:
-
oid: esPointTable
value: esPointValueStr
num_oid: '.1.3.6.1.4.1.3052.12.1.1.1.1.7.{{ $index }}'
descr: esPointName
skip_values:
-
oid: esIndexPC
op: '!='
value: 5
-
oid: esPointName
op: '='
value: unnamed
percent:
data:
-
oid: fsStatusTable
value: fsStatusVolumePercentLevel
num_oid: '.1.3.6.1.4.1.3052.12.1.6.1.1.7.{{ $index }}'
descr: fsStatusName
divisor: 100
low_warn_limit: 20
low_limit: 10
skip_values:
-
oid: fsStatusVolumeValueString
op: '='
value: -999

View File

@ -0,0 +1,127 @@
mib: SITEBOSS-550-STD-MIB
modules:
os:
sysDescr_regex: '/(?<hardware>SiteBoss \S+) (?<version>.*)/'
sensors:
temperature:
data:
-
oid: esPointTable
value: esPointValueStr
num_oid: '.1.3.6.1.4.1.3052.10.1.1.1.1.7.{{ $index }}'
descr: esPointName
skip_values:
-
oid: esIndexPC
op: '!='
value: 1
state:
data:
-
oid: esPointTable
value: esPointInEventState
num_oid: '.1.3.6.1.4.1.3052.10.1.1.1.1.5.{{ $index }}'
descr: esPointName
group: Contact Closures
state_name: contactClosure
states:
- { value: 1, generic: 2, graph: 1, descr: event }
- { value: 2, generic: 0, graph: 1, descr: normal }
skip_values:
-
oid: esIndexPC
op: '!='
value: 2
-
oid: esPointName
op: '='
value: unnamed
-
oid: esPointTable
value: esPointValueInt
num_oid: '.1.3.6.1.4.1.3052.10.1.1.1.1.6.{{ $index }}'
descr: esPointName
group: Relay Outputs
state_name: relayOutput
states:
- { value: 0, generic: 0, graph: 1, descr: de-energized }
- { value: 1, generic: 2, graph: 1, descr: energized }
skip_values:
-
oid: esIndexPC
op: '!='
value: 6
-
oid: esPointValueStr
op: 'not_in_array'
value: ['Active/Energized', 'Inactive/Energized', 'Active/De-energized', 'Inactive/De-energized']
-
oid: esPointName
op: '='
value: unnamed
-
oid: esPointTable
value: esPointValueStr
num_oid: '.1.3.6.1.4.1.3052.10.1.1.1.1.6.{{ $index }}'
descr: esPointName
group: Power Outputs
state_name: powerOutput
states:
- { value: 0, generic: 0, graph: 1, descr: de-energized }
- { value: 1, generic: 2, graph: 1, descr: energized }
skip_values:
-
oid: esIndexPC
op: '!='
value: 6
-
oid: esPointValueStr
op: 'not_in_array'
value: ['On/Energized', 'Off/De-energized']
-
oid: esPointName
op: '='
value: unnamed
humidity:
data:
-
oid: esPointTable
value: esPointValueInt
num_oid: '.1.3.6.1.4.1.3052.10.1.1.1.1.6.{{ $index }}'
descr: esPointName
skip_values:
-
oid: esIndexPC
op: '!='
value: 3
count:
data:
-
oid: esPointTable
value: esPointValueStr
num_oid: '.1.3.6.1.4.1.3052.10.1.1.1.1.7.{{ $index }}'
descr: esPointName
skip_values:
-
oid: esIndexPC
op: '!='
value: 5
-
oid: esPointName
op: '='
value: unnamed
percent:
data:
-
oid: fsStatusTable
value: fsStatusVolumePercentLevel
num_oid: '.1.3.6.1.4.1.3052.10.1.6.1.1.7.{{ $index }}'
descr: fsStatusName
divisor: 100
low_warn_limit: 20
low_limit: 10
skip_values:
-
oid: fsStatusVolumeValueString
op: '='
value: -999

View File

@ -2,12 +2,13 @@ os: siteboss
text: 'Asentria SiteBoss'
type: server
icon: siteboss
group: asentria
mib_dir: asentria
over:
- { graph: device_bits, text: 'Device Traffic' }
- { graph: device_processor, text: 'CPU Usage' }
- { graph: device_mempool, text: 'Memory Usage' }
mib_dir: asentria
discovery:
-
sysObjectID:
- .1.3.6.1.4.1.3052.
- .1.3.6.1.4.1.3052.12

View File

@ -0,0 +1,14 @@
os: siteboss550
text: 'Asentria SiteBoss'
type: server
icon: siteboss
group: asentria
mib_dir: asentria
over:
- { graph: device_bits, text: 'Device Traffic' }
- { graph: device_processor, text: 'CPU Usage' }
- { graph: device_mempool, text: 'Memory Usage' }
discovery:
-
sysObjectID:
- .1.3.6.1.4.1.3052.10

View File

@ -69,6 +69,7 @@ $run_sensors = [
'ber',
'eer',
'waterflow',
'percent',
];
// filter submodules

View File

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

View File

@ -0,0 +1,23 @@
<?php
require 'includes/html/graphs/common.inc.php';
$rrd_options .= " COMMENT:' Min Last Max\\n'";
$sensor['sensor_descr_fixed'] = rrdtool_escape($sensor['sensor_descr'], 15);
$rrd_options .= " DEF:sensor=$rrd_filename:sensor:AVERAGE";
$rrd_options .= " DEF:sensor_max=$rrd_filename:sensor:MAX";
$rrd_options .= " DEF:sensor_min=$rrd_filename:sensor:MIN";
$rrd_options .= " LINE1.5:sensor#cc0000:'" . $sensor['sensor_descr_fixed'] . "'";
$rrd_options .= " GPRINT:sensor_min$current_id:MIN:%4.1lf";
$rrd_options .= ' GPRINT:sensor:LAST:%4.1lf';
$rrd_options .= ' GPRINT:sensor_max:MAX:%4.1lf\\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

@ -43,6 +43,7 @@ $chromatic_dispersion = dbFetchCell("select count(*) from sensors WHERE sensor_c
$ber = dbFetchCell("select count(*) from sensors WHERE sensor_class='ber' AND device_id = ?", [$device['device_id']]);
$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']]);
unset($datas);
$datas[] = 'overview';
@ -174,6 +175,10 @@ if ($loss) {
$datas[] = 'loss';
}
if ($percent) {
$datas[] = 'percent';
}
$type_text['overview'] = 'Overview';
$type_text['charge'] = 'Battery Charge';
$type_text['temperature'] = 'Temperature';
@ -207,6 +212,7 @@ $type_text['eer'] = 'Energy Efficiency Ratio';
$type_text['waterflow'] = 'Water Flow Rate';
$type_text['loss'] = 'Loss';
$type_text['qfp'] = 'QFP';
$type_text['percent'] = 'Percent';
$link_array = [
'page' => 'device',

View File

@ -0,0 +1,7 @@
<?php
$class = 'percent';
$unit = '%';
$graph_type = 'sensor_percent';
require 'sensors.inc.php';

View File

@ -57,6 +57,7 @@ require 'overview/sensors/frequency.inc.php';
require 'overview/sensors/load.inc.php';
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/airflow.inc.php';
require 'overview/sensors/snr.inc.php';

View File

@ -0,0 +1,8 @@
<?php
$graph_type = 'sensor_percent';
$sensor_class = 'percent';
$sensor_unit = '%';
$sensor_type = 'Percent';
require 'includes/html/pages/device/overview/generic/sensor.inc.php';

View File

@ -59,6 +59,7 @@ $type_text = [
'ber' => 'Bit Error Rate',
'eer' => 'Energy Efficiency Ratio',
'waterflow' => 'Water Flow Rate',
'percent' => 'Percent',
];
$active_metric = basename($vars['metric'] ?? 'processor');

View File

@ -0,0 +1,7 @@
<?php
$graph_type = 'sensor_percent';
$class = 'percent';
$unit = '%';
require 'includes/html/pages/health/sensors.inc.php';

File diff suppressed because it is too large Load Diff

View File

@ -173,4 +173,10 @@ return [
'unit' => 'l/m',
'unit_long' => 'Liters Per Minute',
],
'percent' => [
'short' => 'Percent',
'long' => 'Percent',
'unit' => '%',
'unit_long' => 'Percent',
],
];

40
tests/data/siteboss.json Normal file
View File

@ -0,0 +1,40 @@
{
"os": {
"discovery": {
"devices": [
{
"sysName": "<private>",
"sysObjectID": ".1.3.6.1.4.1.3052.12.3.2",
"sysDescr": "SiteBoss 530 2.10.540 STD",
"sysContact": null,
"version": "2.10.540 STD",
"hardware": "SiteBoss 530",
"features": null,
"os": "siteboss",
"type": "server",
"serial": null,
"icon": "siteboss.png",
"location": "<private>"
}
]
},
"poller": {
"devices": [
{
"sysName": "<private>",
"sysObjectID": ".1.3.6.1.4.1.3052.12.3.2",
"sysDescr": "SiteBoss 530 2.10.540 STD",
"sysContact": "<private>",
"version": "2.10.540 STD",
"hardware": "SiteBoss 530",
"features": null,
"os": "siteboss",
"type": "server",
"serial": null,
"icon": "siteboss.png",
"location": "<private>"
}
]
}
}
}

View File

@ -4,13 +4,13 @@
"devices": [
{
"sysName": "<private>",
"sysObjectID": ".1.3.6.1.4.1.3052.12.3.2",
"sysDescr": "SiteBoss 530 2.10.540 STD",
"sysObjectID": ".1.3.6.1.4.1.3052.10.3.2",
"sysDescr": "SiteBoss 550 2.11.280 STD",
"sysContact": null,
"version": "2.10.540 STD",
"hardware": "SiteBoss 530",
"version": "2.11.280 STD",
"hardware": "SiteBoss 550",
"features": null,
"os": "siteboss",
"os": "siteboss550",
"type": "server",
"serial": null,
"icon": "siteboss.png",
@ -22,13 +22,13 @@
"devices": [
{
"sysName": "<private>",
"sysObjectID": ".1.3.6.1.4.1.3052.12.3.2",
"sysDescr": "SiteBoss 530 2.10.540 STD",
"sysObjectID": ".1.3.6.1.4.1.3052.10.3.2",
"sysDescr": "SiteBoss 550 2.11.280 STD",
"sysContact": "<private>",
"version": "2.10.540 STD",
"hardware": "SiteBoss 530",
"version": "2.11.280 STD",
"hardware": "SiteBoss 550",
"features": null,
"os": "siteboss",
"os": "siteboss550",
"type": "server",
"serial": null,
"icon": "siteboss.png",
@ -1972,5 +1972,580 @@
}
]
}
},
"sensors": {
"discovery": {
"sensors": [
{
"sensor_deleted": 0,
"sensor_class": "count",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.7.15.5.2",
"sensor_index": "15.5.2",
"sensor_type": "siteboss550",
"sensor_descr": "Engine Operating Hours",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 153,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
},
{
"sensor_deleted": 0,
"sensor_class": "count",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.7.15.5.3",
"sensor_index": "15.5.3",
"sensor_type": "siteboss550",
"sensor_descr": "Number of Crank Attempts",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 486,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
},
{
"sensor_deleted": 0,
"sensor_class": "count",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.7.15.5.4",
"sensor_index": "15.5.4",
"sensor_type": "siteboss550",
"sensor_descr": "Number of Starts",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 455,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
},
{
"sensor_deleted": 0,
"sensor_class": "humidity",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.6.7.3.1",
"sensor_index": "7.3.1",
"sensor_type": "siteboss550",
"sensor_descr": "<private>",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 41,
"sensor_limit": 70,
"sensor_limit_warn": null,
"sensor_limit_low": 30,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
},
{
"sensor_deleted": 0,
"sensor_class": "humidity",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.6.8.3.1",
"sensor_index": "8.3.1",
"sensor_type": "siteboss550",
"sensor_descr": "<private>",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 59,
"sensor_limit": 70,
"sensor_limit_warn": null,
"sensor_limit_low": 30,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
},
{
"sensor_deleted": 0,
"sensor_class": "percent",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.6.1.1.7.1",
"sensor_index": "1",
"sensor_type": "siteboss550",
"sensor_descr": "<private>",
"group": null,
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 89.99,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": 10,
"sensor_limit_low_warn": 20,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": null
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.5.1.2.1",
"sensor_index": "1.2.1",
"sensor_type": "contactClosure",
"sensor_descr": "<private>",
"group": "Contact Closures",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "contactClosure"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.5.1.2.2",
"sensor_index": "1.2.2",
"sensor_type": "contactClosure",
"sensor_descr": "<private>",
"group": "Contact Closures",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "contactClosure"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.5.1.2.3",
"sensor_index": "1.2.3",
"sensor_type": "contactClosure",
"sensor_descr": "<private>",
"group": "Contact Closures",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "contactClosure"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.5.14.2.1",
"sensor_index": "14.2.1",
"sensor_type": "contactClosure",
"sensor_descr": "<private>",
"group": "Contact Closures",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "contactClosure"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.5.5.2.1",
"sensor_index": "5.2.1",
"sensor_type": "contactClosure",
"sensor_descr": "<private>",
"group": "Contact Closures",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "contactClosure"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.5.5.2.2",
"sensor_index": "5.2.2",
"sensor_type": "contactClosure",
"sensor_descr": "<private>",
"group": "Contact Closures",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "contactClosure"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.5.5.2.3",
"sensor_index": "5.2.3",
"sensor_type": "contactClosure",
"sensor_descr": "<private>",
"group": "Contact Closures",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "contactClosure"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.5.5.2.4",
"sensor_index": "5.2.4",
"sensor_type": "contactClosure",
"sensor_descr": "<private>",
"group": "Contact Closures",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "contactClosure"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.5.5.2.5",
"sensor_index": "5.2.5",
"sensor_type": "contactClosure",
"sensor_descr": "<private>",
"group": "Contact Closures",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "contactClosure"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.5.5.2.6",
"sensor_index": "5.2.6",
"sensor_type": "contactClosure",
"sensor_descr": "<private>",
"group": "Contact Closures",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "contactClosure"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.5.5.2.7",
"sensor_index": "5.2.7",
"sensor_type": "contactClosure",
"sensor_descr": "<private>",
"group": "Contact Closures",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "contactClosure"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.5.5.2.8",
"sensor_index": "5.2.8",
"sensor_type": "contactClosure",
"sensor_descr": "<private>",
"group": "Contact Closures",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "contactClosure"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.5.6.2.1",
"sensor_index": "6.2.1",
"sensor_type": "contactClosure",
"sensor_descr": "<private>",
"group": "Contact Closures",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "contactClosure"
},
{
"sensor_deleted": 0,
"sensor_class": "state",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.5.6.2.2",
"sensor_index": "6.2.2",
"sensor_type": "contactClosure",
"sensor_descr": "<private>",
"group": "Contact Closures",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 2,
"sensor_limit": null,
"sensor_limit_warn": null,
"sensor_limit_low": null,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": null,
"state_name": "contactClosure"
},
{
"sensor_deleted": 0,
"sensor_class": "temperature",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.7.7.1.1",
"sensor_index": "7.1.1",
"sensor_type": "siteboss550",
"sensor_descr": "<private>",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 25,
"sensor_limit": 45,
"sensor_limit_warn": null,
"sensor_limit_low": 15,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": "fahrenheit_to_celsius",
"state_name": null
},
{
"sensor_deleted": 0,
"sensor_class": "temperature",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.7.8.1.1",
"sensor_index": "8.1.1",
"sensor_type": "siteboss550",
"sensor_descr": "<private>",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 18.33,
"sensor_limit": 38.33,
"sensor_limit_warn": null,
"sensor_limit_low": 8.33,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": "fahrenheit_to_celsius",
"state_name": null
},
{
"sensor_deleted": 0,
"sensor_class": "temperature",
"poller_type": "snmp",
"sensor_oid": ".1.3.6.1.4.1.3052.10.1.1.1.1.7.9.1.1",
"sensor_index": "9.1.1",
"sensor_type": "siteboss550",
"sensor_descr": "<private>",
"group": null,
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 27.78,
"sensor_limit": 47.78,
"sensor_limit_warn": null,
"sensor_limit_low": 17.78,
"sensor_limit_low_warn": null,
"sensor_alert": 1,
"sensor_custom": "No",
"entPhysicalIndex": null,
"entPhysicalIndex_measured": null,
"sensor_prev": null,
"user_func": "fahrenheit_to_celsius",
"state_name": null
}
],
"state_indexes": [
{
"state_name": "contactClosure",
"state_descr": "event",
"state_draw_graph": 1,
"state_value": 1,
"state_generic_value": 2
},
{
"state_name": "contactClosure",
"state_descr": "normal",
"state_draw_graph": 1,
"state_value": 2,
"state_generic_value": 0
}
]
},
"poller": "matches discovery"
}
}

View File

@ -1,2 +1,6 @@
1.3.6.1.2.1.1.1.0|4|SiteBoss 530 2.10.540 STD
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.3052.12.3.2
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.4.1.3052.12.3.1.0|4|<private>

File diff suppressed because it is too large Load Diff

View File

@ -1,261 +0,0 @@
1.3.6.1.2.1.1.1.0|4|SiteBoss 530 2.10.540 STD
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.3052.12.3.2
1.3.6.1.2.1.1.3.0|67|2756715357
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|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.1.6|2|6
1.3.6.1.2.1.2.2.1.1.7|2|7
1.3.6.1.2.1.2.2.1.1.8|2|8
1.3.6.1.2.1.2.2.1.1.9|2|9
1.3.6.1.2.1.2.2.1.2.1|4|ipsec0
1.3.6.1.2.1.2.2.1.2.2|4|ipsec1
1.3.6.1.2.1.2.2.1.2.3|4|ipsec2
1.3.6.1.2.1.2.2.1.2.4|4|ipsec3
1.3.6.1.2.1.2.2.1.2.5|4|lo
1.3.6.1.2.1.2.2.1.2.6|4|tunl0
1.3.6.1.2.1.2.2.1.2.7|4|sit0
1.3.6.1.2.1.2.2.1.2.8|4|ixp0
1.3.6.1.2.1.2.2.1.2.9|4|ixp1
1.3.6.1.2.1.2.2.1.3.1|2|1
1.3.6.1.2.1.2.2.1.3.2|2|1
1.3.6.1.2.1.2.2.1.3.3|2|1
1.3.6.1.2.1.2.2.1.3.4|2|1
1.3.6.1.2.1.2.2.1.3.5|2|24
1.3.6.1.2.1.2.2.1.3.6|2|131
1.3.6.1.2.1.2.2.1.3.7|2|131
1.3.6.1.2.1.2.2.1.3.8|2|6
1.3.6.1.2.1.2.2.1.3.9|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|0
1.3.6.1.2.1.2.2.1.4.3|2|0
1.3.6.1.2.1.2.2.1.4.4|2|0
1.3.6.1.2.1.2.2.1.4.5|2|16436
1.3.6.1.2.1.2.2.1.4.6|2|1480
1.3.6.1.2.1.2.2.1.4.7|2|1480
1.3.6.1.2.1.2.2.1.4.8|2|1500
1.3.6.1.2.1.2.2.1.4.9|2|1500
1.3.6.1.2.1.2.2.1.5.1|66|0
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|0
1.3.6.1.2.1.2.2.1.5.4|66|0
1.3.6.1.2.1.2.2.1.5.5|66|10000000
1.3.6.1.2.1.2.2.1.5.6|66|0
1.3.6.1.2.1.2.2.1.5.7|66|0
1.3.6.1.2.1.2.2.1.5.8|66|100000000
1.3.6.1.2.1.2.2.1.5.9|66|100000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
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|4|
1.3.6.1.2.1.2.2.1.6.6|4|
1.3.6.1.2.1.2.2.1.6.7|4|
1.3.6.1.2.1.2.2.1.6.8|4x|0010A3XXYYZ1
1.3.6.1.2.1.2.2.1.6.9|4x|0010A3XXYYZ2
1.3.6.1.2.1.2.2.1.7.1|2|2
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|2
1.3.6.1.2.1.2.2.1.7.4|2|2
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|2
1.3.6.1.2.1.2.2.1.7.7|2|2
1.3.6.1.2.1.2.2.1.7.8|2|1
1.3.6.1.2.1.2.2.1.7.9|2|1
1.3.6.1.2.1.2.2.1.8.1|2|2
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|2
1.3.6.1.2.1.2.2.1.8.4|2|2
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.8.6|2|2
1.3.6.1.2.1.2.2.1.8.7|2|2
1.3.6.1.2.1.2.2.1.8.8|2|1
1.3.6.1.2.1.2.2.1.8.9|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.9.7|67|0
1.3.6.1.2.1.2.2.1.9.8|67|0
1.3.6.1.2.1.2.2.1.9.9|67|0
1.3.6.1.2.1.2.2.1.10.1|65|0
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|0
1.3.6.1.2.1.2.2.1.10.4|65|0
1.3.6.1.2.1.2.2.1.10.5|65|418110050
1.3.6.1.2.1.2.2.1.10.6|65|0
1.3.6.1.2.1.2.2.1.10.7|65|0
1.3.6.1.2.1.2.2.1.10.8|65|1638982179
1.3.6.1.2.1.2.2.1.10.9|65|1760143210
1.3.6.1.2.1.2.2.1.11.1|65|0
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|0
1.3.6.1.2.1.2.2.1.11.4|65|0
1.3.6.1.2.1.2.2.1.11.5|65|4950382
1.3.6.1.2.1.2.2.1.11.6|65|0
1.3.6.1.2.1.2.2.1.11.7|65|0
1.3.6.1.2.1.2.2.1.11.8|65|16448411
1.3.6.1.2.1.2.2.1.11.9|65|4352218
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.12.5|65|0
1.3.6.1.2.1.2.2.1.12.6|65|0
1.3.6.1.2.1.2.2.1.12.7|65|0
1.3.6.1.2.1.2.2.1.12.8|65|0
1.3.6.1.2.1.2.2.1.12.9|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.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.13.7|65|0
1.3.6.1.2.1.2.2.1.13.8|65|0
1.3.6.1.2.1.2.2.1.13.9|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.14.6|65|0
1.3.6.1.2.1.2.2.1.14.7|65|0
1.3.6.1.2.1.2.2.1.14.8|65|0
1.3.6.1.2.1.2.2.1.14.9|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.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.15.6|65|0
1.3.6.1.2.1.2.2.1.15.7|65|0
1.3.6.1.2.1.2.2.1.15.8|65|0
1.3.6.1.2.1.2.2.1.15.9|65|0
1.3.6.1.2.1.2.2.1.16.1|65|0
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|0
1.3.6.1.2.1.2.2.1.16.4|65|0
1.3.6.1.2.1.2.2.1.16.5|65|418110050
1.3.6.1.2.1.2.2.1.16.6|65|0
1.3.6.1.2.1.2.2.1.16.7|65|0
1.3.6.1.2.1.2.2.1.16.8|65|3018603868
1.3.6.1.2.1.2.2.1.16.9|65|328
1.3.6.1.2.1.2.2.1.17.1|65|0
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|0
1.3.6.1.2.1.2.2.1.17.4|65|0
1.3.6.1.2.1.2.2.1.17.5|65|4950382
1.3.6.1.2.1.2.2.1.17.6|65|0
1.3.6.1.2.1.2.2.1.17.7|65|0
1.3.6.1.2.1.2.2.1.17.8|65|14526409
1.3.6.1.2.1.2.2.1.17.9|65|4
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.18.6|65|0
1.3.6.1.2.1.2.2.1.18.7|65|0
1.3.6.1.2.1.2.2.1.18.8|65|0
1.3.6.1.2.1.2.2.1.18.9|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.19.6|65|0
1.3.6.1.2.1.2.2.1.19.7|65|0
1.3.6.1.2.1.2.2.1.19.8|65|0
1.3.6.1.2.1.2.2.1.19.9|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.2.2.1.20.6|65|0
1.3.6.1.2.1.2.2.1.20.7|65|0
1.3.6.1.2.1.2.2.1.20.8|65|0
1.3.6.1.2.1.2.2.1.20.9|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.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.21.6|66|0
1.3.6.1.2.1.2.2.1.21.7|66|0
1.3.6.1.2.1.2.2.1.21.8|66|0
1.3.6.1.2.1.2.2.1.21.9|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.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0
1.3.6.1.2.1.2.2.1.22.6|6|0.0
1.3.6.1.2.1.2.2.1.22.7|6|0.0
1.3.6.1.2.1.2.2.1.22.8|6|0.0
1.3.6.1.2.1.2.2.1.22.9|6|0.0
1.3.6.1.2.1.4.3.0|65|23532040
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.5.0|65|296
1.3.6.1.2.1.4.6.0|65|4571
1.3.6.1.2.1.4.7.0|65|2
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|23527170
1.3.6.1.2.1.4.10.0|65|19207334
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.127.0.0.1|2|5
1.3.6.1.2.1.4.20.1.2.192.168.0.1|2|9
1.3.6.1.2.1.4.20.1.2.192.168.100.120|2|8
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.0.1|64|0.0.0.0
1.3.6.1.2.1.4.20.1.3.192.168.100.120|64|255.255.255.0
1.3.6.1.2.1.4.22.1.2.8.192.168.100.1|4x|005056XXYYZ3
1.3.6.1.2.1.4.22.1.2.8.192.168.100.127|4x|005056XXYYZ4
1.3.6.1.2.1.4.22.1.2.8.192.168.100.252|4x|005056XXYYZ5
1.3.6.1.2.1.11.1.0|65|13232382
1.3.6.1.2.1.11.2.0|65|13232344
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|18
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|87714572
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|5412245
1.3.6.1.2.1.11.16.0|65|524657
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|13232346
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.31.1.5.0|67|0
1.3.6.1.6.3.10.2.1.3.0|2|27566535