mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Printer paper tray status and error states (#9859)
* adding paper tray status and error states * adding paper tray test data * Create jetdirect_papertray.json * Store printer supply type * Update json data * fix style
This commit is contained in:
@@ -78,4 +78,14 @@ class StringHelpers
|
||||
|
||||
return isset($replacements[$string]) ? $replacements[$string] : ucwords(str_replace(['_', '-'], ' ', $string));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert a camel or studly case string to Title case (with spaces)
|
||||
* @param $string
|
||||
* @return string
|
||||
*/
|
||||
public static function camelToTitle($string)
|
||||
{
|
||||
return ucwords(implode(' ', preg_split('/(?=[A-Z])/', $string)));
|
||||
}
|
||||
}
|
||||
|
10
app/Models/Toner.php
Normal file
10
app/Models/Toner.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
class Toner extends DeviceRelatedModel
|
||||
{
|
||||
protected $table = 'toner';
|
||||
protected $primaryKey = 'toner_id';
|
||||
public $timestamps = false;
|
||||
}
|
@@ -16,6 +16,7 @@
|
||||
*/
|
||||
|
||||
use LibreNMS\Authentication\LegacyAuth;
|
||||
use LibreNMS\Util\StringHelpers;
|
||||
|
||||
$graph_type = 'toner_usage';
|
||||
|
||||
@@ -25,7 +26,7 @@ if (!empty($searchPhrase)) {
|
||||
$sql .= " AND (`D`.`hostname` LIKE '%$searchPhrase%' OR `toner_descr` LIKE '%$searchPhrase%')";
|
||||
}
|
||||
|
||||
$count_sql = "SELECT COUNT(`toner_id`) FROM `toner`";
|
||||
$count_sql = "SELECT COUNT(*) FROM `toner`";
|
||||
$param[] = LegacyAuth::id();
|
||||
|
||||
$count = dbFetchCell($count_sql, $param);
|
||||
@@ -54,6 +55,7 @@ if ($rowCount != -1) {
|
||||
foreach (dbFetchRows($sql, $param) as $toner) {
|
||||
if (device_permitted($toner['device_id'])) {
|
||||
$perc = $toner['toner_current'];
|
||||
$type = $toner['toner_type'];
|
||||
|
||||
$graph_array['type'] = $graph_type;
|
||||
$graph_array['id'] = $toner['toner_id'];
|
||||
@@ -74,6 +76,7 @@ foreach (dbFetchRows($sql, $param) as $toner) {
|
||||
'toner_descr' => $toner['toner_descr'],
|
||||
'graph' => $mini_graph,
|
||||
'toner_used' => $bar_link,
|
||||
'toner_type' => StringHelpers::camelToTitle($type == 'opc' ? 'organicPhotoConductor' : $type),
|
||||
'toner_current' => $perc.'%',
|
||||
);
|
||||
|
||||
|
@@ -1,62 +1,68 @@
|
||||
<?php
|
||||
|
||||
use LibreNMS\Util\StringHelpers;
|
||||
|
||||
$graph_type = 'toner_usage';
|
||||
|
||||
$toners = dbFetchRows('SELECT * FROM `toner` WHERE device_id = ?', array($device['device_id']));
|
||||
$supplies = \App\Models\Toner::query()->where('device_id', $device['device_id'])->get()->groupBy('toner_type');
|
||||
|
||||
if (count($toners)) {
|
||||
echo '
|
||||
foreach ($supplies as $type => $supply) {
|
||||
if (!empty($supply)) {
|
||||
echo '
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="panel panel-default panel-condensed">
|
||||
<div class="panel-heading">';
|
||||
echo '<a href="device/device='.$device['device_id'].'/tab=toner/">';
|
||||
echo '<i class="fa fa-print fa-lg icon-theme" aria-hidden="true"></i> <strong>Toner</strong></a>';
|
||||
echo '</div>
|
||||
echo '<a href="device/device=' . $device['device_id'] . '/tab=toner/">';
|
||||
$title = StringHelpers::camelToTitle($type == 'opc' ? 'organicPhotoConductor' : $type);
|
||||
echo '<i class="fa fa-print fa-lg icon-theme" aria-hidden="true"></i> <strong>' . $title . '</strong></a>';
|
||||
echo '</div>
|
||||
<table class="table table-hover table-condensed table-striped">';
|
||||
|
||||
foreach ($toners as $toner) {
|
||||
$percent = round($toner['toner_current'], 0);
|
||||
$total = formatStorage($toner['toner_size']);
|
||||
$free = formatStorage($toner['toner_free']);
|
||||
$used = formatStorage($toner['toner_used']);
|
||||
foreach ($supply as $toner) {
|
||||
$percent = round($toner['toner_current'], 0);
|
||||
$total = formatStorage($toner['toner_size']);
|
||||
$free = formatStorage($toner['toner_free']);
|
||||
$used = formatStorage($toner['toner_used']);
|
||||
|
||||
$background = toner2colour($toner['toner_descr'], $percent);
|
||||
$background = toner2colour($toner['toner_descr'], $percent);
|
||||
|
||||
$graph_array = array();
|
||||
$graph_array['height'] = '100';
|
||||
$graph_array['width'] = '210';
|
||||
$graph_array['to'] = $config['time']['now'];
|
||||
$graph_array['id'] = $toner['toner_id'];
|
||||
$graph_array['type'] = $graph_type;
|
||||
$graph_array['from'] = $config['time']['day'];
|
||||
$graph_array['legend'] = 'no';
|
||||
$graph_array = [
|
||||
'height' => 100,
|
||||
'width' => 210,
|
||||
'to' => $config['time']['now'],
|
||||
'id' => $toner['toner_id'],
|
||||
'type' => $graph_type,
|
||||
'from' => $config['time']['day'],
|
||||
'legend' => 'no',
|
||||
];
|
||||
|
||||
$link_array = $graph_array;
|
||||
$link_array['page'] = 'graphs';
|
||||
unset($link_array['height'], $link_array['width'], $link_array['legend']);
|
||||
$link = generate_url($link_array);
|
||||
$link_array = $graph_array;
|
||||
$link_array['page'] = 'graphs';
|
||||
unset($link_array['height'], $link_array['width'], $link_array['legend']);
|
||||
$link = generate_url($link_array);
|
||||
|
||||
$overlib_content = generate_overlib_content($graph_array, $device['hostname'].' - '.$toner['toner_descr']);
|
||||
$overlib_content = generate_overlib_content($graph_array, $device['hostname'] . ' - ' . $toner['toner_descr']);
|
||||
|
||||
$graph_array['width'] = 80;
|
||||
$graph_array['height'] = 20;
|
||||
$graph_array['bg'] = 'ffffff00';
|
||||
// the 00 at the end makes the area transparent.
|
||||
$minigraph = generate_lazy_graph_tag($graph_array);
|
||||
$graph_array['width'] = 80;
|
||||
$graph_array['height'] = 20;
|
||||
$graph_array['bg'] = 'ffffff00';
|
||||
// the 00 at the end makes the area transparent.
|
||||
$minigraph = generate_lazy_graph_tag($graph_array);
|
||||
|
||||
echo '<tr>
|
||||
<td>'.overlib_link($link, $toner['toner_descr'], $overlib_content).'</td>
|
||||
<td>'.overlib_link($link, $minigraph, $overlib_content).'</td>
|
||||
<td>'.overlib_link($link, print_percentage_bar(200, 20, $percent, null, 'ffffff', $background['left'], $percent.'%', 'ffffff', $background['right']), $overlib_content).'
|
||||
echo '<tr>
|
||||
<td class="col-md-4">' . overlib_link($link, $toner['toner_descr'], $overlib_content) . '</td>
|
||||
<td class="col-md-4">' . overlib_link($link, $minigraph, $overlib_content) . '</td>
|
||||
<td class="col-md-4">' . overlib_link($link, print_percentage_bar(200, 20, $percent, null, 'ffffff', $background['left'], $percent . '%', 'ffffff', $background['right']), $overlib_content) . '
|
||||
</a></td>
|
||||
</tr>';
|
||||
}//end foreach
|
||||
}//end foreach
|
||||
|
||||
echo '</table>';
|
||||
echo '</div>';
|
||||
echo '</div>';
|
||||
echo '</div>';
|
||||
}//end if
|
||||
echo '</table>';
|
||||
echo '</div>';
|
||||
echo '</div>';
|
||||
echo '</div>';
|
||||
}//end if
|
||||
}
|
||||
|
||||
unset($toner_rows);
|
||||
|
@@ -30,11 +30,12 @@ $pagetitle[] = "Health :: Toner";
|
||||
</div>
|
||||
</div>
|
||||
<div class="table-responsive">
|
||||
<table id="mempool" class="table table-hover table-condensed mempool">
|
||||
<table id="toner" class="table table-hover table-condensed mempool">
|
||||
<thead>
|
||||
<tr>
|
||||
<th data-column-id="hostname">Device</th>
|
||||
<th data-column-id="toner_descr">Toner</th>
|
||||
<th data-column-id="toner_type" data-searchable="false">Type</th>
|
||||
<th data-column-id="graph" data-sortable="false" data-searchable="false"></th>
|
||||
<th data-column-id="toner_used" data-searchable="false">Used</th>
|
||||
<th data-column-id="toner_current" data-searchable="false">Usage</th>
|
||||
@@ -44,7 +45,7 @@ $pagetitle[] = "Health :: Toner";
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
var grid = $("#mempool").bootgrid({
|
||||
var grid = $("#toner").bootgrid({
|
||||
ajax: true,
|
||||
rowCount: [50, 100, 250, -1],
|
||||
post: function ()
|
||||
|
@@ -38,6 +38,10 @@ if ($device['os'] == 'gw-eydfa') {
|
||||
include 'includes/discovery/sensors/gw-eydfa.inc.php';
|
||||
}
|
||||
|
||||
if ($device['os_group'] == 'printer') {
|
||||
include 'includes/discovery/sensors/state/printer.inc.php';
|
||||
}
|
||||
|
||||
$run_sensors = array(
|
||||
'airflow',
|
||||
'current',
|
||||
|
106
includes/discovery/sensors/state/printer.inc.php
Normal file
106
includes/discovery/sensors/state/printer.inc.php
Normal file
@@ -0,0 +1,106 @@
|
||||
<?php
|
||||
echo 'Printer Status and Error State ';
|
||||
$state = snmp_get($device, "hrDeviceStatus.1", "-Ovqe", 'HOST-RESOURCES-MIB');
|
||||
if (is_numeric($state)) {
|
||||
//Create State Index
|
||||
$state_name = 'hrDeviceStatus';
|
||||
create_state_index(
|
||||
$state_name,
|
||||
[
|
||||
['value' => 1, 'generic' => 3, 'graph' => 0, 'descr' => 'Unknown'],
|
||||
['value' => 2, 'generic' => 0, 'graph' => 0, 'descr' => 'Running'],
|
||||
['value' => 3, 'generic' => 1, 'graph' => 0, 'descr' => 'Warning'],
|
||||
['value' => 4, 'generic' => 0, 'graph' => 0, 'descr' => 'Testing'],
|
||||
['value' => 5, 'generic' => 2, 'graph' => 0, 'descr' => 'Down'],
|
||||
]
|
||||
);
|
||||
$sensor_index = 0;
|
||||
discover_sensor(
|
||||
$valid['sensor'],
|
||||
'state',
|
||||
$device,
|
||||
'.1.3.6.1.2.1.25.3.2.1.5.1',
|
||||
$sensor_index,
|
||||
$state_name,
|
||||
'Printer Device Status',
|
||||
1,
|
||||
1,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
$state,
|
||||
'snmp',
|
||||
0
|
||||
);
|
||||
//Create Sensor To State Index
|
||||
create_sensor_to_state_index($device, $state_name, $sensor_index);
|
||||
}
|
||||
|
||||
$state = snmp_get($device, "hrPrinterDetectedErrorState.1", "-Ovqe", 'HOST-RESOURCES-MIB');
|
||||
if ($state) {
|
||||
// https://www.ietf.org/rfc/rfc1759.txt hrPrinterDetectedErrorState
|
||||
//Create State Index
|
||||
$printer_states =
|
||||
[
|
||||
['value' => 0, 'generic' => 0, 'graph' => 0, 'descr' => 'Normal'],
|
||||
['value' => 1, 'generic' => 1, 'graph' => 0, 'descr' => 'Paper Low'],
|
||||
['value' => 2, 'generic' => 2, 'graph' => 0, 'descr' => 'No Paper'],
|
||||
['value' => 3, 'generic' => 1, 'graph' => 0, 'descr' => 'Toner Low'],
|
||||
['value' => 4, 'generic' => 2, 'graph' => 0, 'descr' => 'No Toner'],
|
||||
['value' => 5, 'generic' => 2, 'graph' => 0, 'descr' => 'Door Open'],
|
||||
['value' => 6, 'generic' => 2, 'graph' => 0, 'descr' => 'Jammed'],
|
||||
['value' => 7, 'generic' => 2, 'graph' => 0, 'descr' => 'Offline'],
|
||||
['value' => 8, 'generic' => 2, 'graph' => 0, 'descr' => 'Service Needed'],
|
||||
['value' => 9, 'generic' => 1, 'graph' => 0, 'descr' => 'Warning, multiple issues'],
|
||||
['value' => 10, 'generic' => 2, 'graph' => 0, 'descr' => 'Critical, multiple issues'],
|
||||
];
|
||||
$bit_flags = q_bridge_bits2indices($state);
|
||||
$is_critical = false;
|
||||
if (count($bit_flags) == 0) {
|
||||
$state = 0;
|
||||
} else {
|
||||
for ($i = 0; $i < count($bit_flags); $i++) {
|
||||
// second octet of error flags not reliable, skipping
|
||||
if ($bit_flags[$i] > 8) {
|
||||
continue;
|
||||
}
|
||||
$state = $printer_states[$bit_flags[$i]]['value'];
|
||||
if ($printer_states[$bit_flags[$i]]['generic'] == 2) {
|
||||
$is_critical = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
// cannot create an index for each bit combination, instead warning or critical
|
||||
if (count($bit_flags) > 1) {
|
||||
$state = $is_critical?10:9;
|
||||
}
|
||||
}
|
||||
|
||||
$state_name = 'hrPrinterDetectedErrorState';
|
||||
create_state_index($state_name, $printer_states);
|
||||
|
||||
d_echo('Printer error state: '.$state_name.': '.$state);
|
||||
$sensor_index = 0;
|
||||
discover_sensor(
|
||||
$valid['sensor'],
|
||||
'state',
|
||||
$device,
|
||||
'.1.3.6.1.2.1.25.3.5.1.2.1',
|
||||
$sensor_index,
|
||||
$state_name,
|
||||
'Printer Error Status',
|
||||
1,
|
||||
1,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
$state,
|
||||
'snmp',
|
||||
0
|
||||
);
|
||||
|
||||
//Create Sensor To State Index
|
||||
create_sensor_to_state_index($device, $state_name, $sensor_index);
|
||||
}
|
@@ -7,6 +7,7 @@ if ($device['os_group'] == 'printer') {
|
||||
|
||||
$oids = snmpwalk_cache_oid($device, 'prtMarkerSuppliesLevel', [], 'Printer-MIB');
|
||||
if (!empty($oids)) {
|
||||
$oids = snmpwalk_cache_oid($device, 'prtMarkerSuppliesType', $oids, 'Printer-MIB');
|
||||
$oids = snmpwalk_cache_oid($device, 'prtMarkerSuppliesMaxCapacity', $oids, 'Printer-MIB');
|
||||
$oids = snmpwalk_cache_oid($device, 'prtMarkerSuppliesDescription', $oids, 'Printer-MIB', null, '-OQUsa');
|
||||
}
|
||||
@@ -40,7 +41,6 @@ if ($device['os_group'] == 'printer') {
|
||||
$descr = explode(', PN', $descr)[0];
|
||||
}
|
||||
|
||||
$type = 'jetdirect';
|
||||
$capacity = get_toner_capacity($data['prtMarkerSuppliesMaxCapacity']);
|
||||
$current = get_toner_levels($device, $raw_toner, $capacity);
|
||||
|
||||
@@ -50,7 +50,7 @@ if ($device['os_group'] == 'printer') {
|
||||
$device,
|
||||
$toner_oid,
|
||||
$last_index,
|
||||
$type,
|
||||
$data['prtMarkerSuppliesType'] ?: 'markerSupply',
|
||||
$descr,
|
||||
$capacity_oid,
|
||||
$capacity,
|
||||
@@ -58,14 +58,52 @@ if ($device['os_group'] == 'printer') {
|
||||
);
|
||||
}
|
||||
}
|
||||
echo PHP_EOL;
|
||||
|
||||
echo 'Tray Paper Level: ';
|
||||
$tray_oids = snmpwalk_cache_oid($device, 'prtInputName', [], 'Printer-MIB');
|
||||
if (!empty($tray_oids)) {
|
||||
$tray_oids = snmpwalk_cache_oid($device, 'prtInputCurrentLevel', $tray_oids, 'Printer-MIB');
|
||||
$tray_oids = snmpwalk_cache_oid($device, 'prtInputMaxCapacity', $tray_oids, 'Printer-MIB');
|
||||
}
|
||||
|
||||
d_echo($tray_oids);
|
||||
foreach ($tray_oids as $index => $data) {
|
||||
$last_index = substr($index, strrpos($index, '.') + 1);
|
||||
|
||||
$capacity = $data['prtInputMaxCapacity'];
|
||||
$current = $data['prtInputCurrentLevel'];
|
||||
if (!is_numeric($current) || $current == -2) {
|
||||
// capacity unsupported
|
||||
d_echo('Input Capacity unsupported', 'X');
|
||||
continue;
|
||||
} elseif ($current == -3) {
|
||||
// at least one piece of paper in tray
|
||||
$current = $capacity;
|
||||
} else {
|
||||
$current = $current / $capacity * 100;
|
||||
}
|
||||
|
||||
discover_toner(
|
||||
$valid_toner,
|
||||
$device,
|
||||
".1.3.6.1.2.1.43.8.2.1.10.$index",
|
||||
$last_index,
|
||||
'input',
|
||||
$data['prtInputName'],
|
||||
".1.3.6.1.2.1.43.8.2.1.9.$index",
|
||||
$capacity,
|
||||
$current
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// Delete removed toners
|
||||
d_echo("\n Checking valid toner ... \n");
|
||||
d_echo($valid_toner);
|
||||
|
||||
$toners = dbFetchRows("SELECT * FROM toner WHERE device_id = '" . $device['device_id'] . "'");
|
||||
d_echo($toners);
|
||||
$toners = dbFetchRows("SELECT * FROM toner WHERE device_id = ?", [$device['device_id']]);
|
||||
//d_echo($toners);
|
||||
foreach ($toners as $test_toner) {
|
||||
$toner_oid = $test_toner['toner_oid'];
|
||||
$toner_type = $test_toner['toner_type'];
|
||||
|
@@ -72,6 +72,8 @@ function poll_sensor($device, $class)
|
||||
|
||||
if (file_exists('includes/polling/sensors/'. $class .'/'. $device['os'] .'.inc.php')) {
|
||||
require 'includes/polling/sensors/'. $class .'/'. $device['os'] .'.inc.php';
|
||||
} elseif (file_exists('includes/polling/sensors/'. $class .'/'. $device['os_group'] .'.inc.php')) {
|
||||
require 'includes/polling/sensors/'. $class .'/'. $device['os_group'] .'.inc.php';
|
||||
}
|
||||
|
||||
if ($class == 'temperature') {
|
||||
|
41
includes/polling/sensors/state/printer.inc.php
Normal file
41
includes/polling/sensors/state/printer.inc.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
if ($device['os_group'] == 'printer') {
|
||||
if ($sensor['sensor_type'] === 'hrPrinterDetectedErrorState') {
|
||||
$printer_states =
|
||||
[
|
||||
['value' => 0, 'generic' => 0, 'graph' => 0, 'descr' => 'No issues'],
|
||||
['value' => 1, 'generic' => 1, 'graph' => 0, 'descr' => 'Paper Low'],
|
||||
['value' => 2, 'generic' => 2, 'graph' => 0, 'descr' => 'No Paper'],
|
||||
['value' => 3, 'generic' => 1, 'graph' => 0, 'descr' => 'Toner Low'],
|
||||
['value' => 4, 'generic' => 2, 'graph' => 0, 'descr' => 'No Toner'],
|
||||
['value' => 5, 'generic' => 2, 'graph' => 0, 'descr' => 'Door Open'],
|
||||
['value' => 6, 'generic' => 2, 'graph' => 0, 'descr' => 'Jammed'],
|
||||
['value' => 7, 'generic' => 2, 'graph' => 0, 'descr' => 'Offline'],
|
||||
['value' => 8, 'generic' => 2, 'graph' => 0, 'descr' => 'Service Needed'],
|
||||
['value' => 9, 'generic' => 1, 'graph' => 0, 'descr' => 'Warning, multiple issues'],
|
||||
['value' => 10, 'generic' => 2, 'graph' => 0, 'descr' => 'Critical, multiple issues'],
|
||||
];
|
||||
$bit_flags = q_bridge_bits2indices($sensor_value);
|
||||
$is_critical = false;
|
||||
if (count($bit_flags) == 0) {
|
||||
$sensor_value = 0;
|
||||
} else {
|
||||
for ($i = 0; $i < count($bit_flags); $i++) {
|
||||
if ($bit_flags[$i] > 8) {
|
||||
continue;
|
||||
}
|
||||
$sensor_value = $printer_states[$bit_flags[$i]]['value'];
|
||||
if ($printer_states[$bit_flags[$i]]['generic'] == 2) {
|
||||
$is_critical = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
// cannot create an index for each bit combination, instead warning or critical
|
||||
if (count($bit_flags) > 1) {
|
||||
// multiple issues, check above list
|
||||
$sensor_value = $is_critical?10:9;
|
||||
}
|
||||
}
|
||||
d_echo('Polling hrPrinterDetectedErrorState: '.$sensor_value);
|
||||
}
|
||||
}
|
@@ -513,12 +513,12 @@
|
||||
"discovery": {
|
||||
"toner": [
|
||||
{
|
||||
"toner_index": "1",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 1,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.1",
|
||||
"toner_descr": "Canon Cartridge 719/719H",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "70",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 70,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.1"
|
||||
}
|
||||
]
|
||||
|
@@ -42,7 +42,7 @@
|
||||
"toner": [
|
||||
{
|
||||
"toner_index": 1,
|
||||
"toner_type": "jetdirect",
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.1",
|
||||
"toner_descr": "Black Cartridge HP CF410A",
|
||||
"toner_capacity": 100,
|
||||
@@ -51,7 +51,7 @@
|
||||
},
|
||||
{
|
||||
"toner_index": 2,
|
||||
"toner_type": "jetdirect",
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.2",
|
||||
"toner_descr": "Cyan Cartridge HP CF411A",
|
||||
"toner_capacity": 100,
|
||||
@@ -60,7 +60,7 @@
|
||||
},
|
||||
{
|
||||
"toner_index": 3,
|
||||
"toner_type": "jetdirect",
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.3",
|
||||
"toner_descr": "Magenta Cartridge HP CF413A This",
|
||||
"toner_capacity": 100,
|
||||
@@ -69,7 +69,7 @@
|
||||
},
|
||||
{
|
||||
"toner_index": 4,
|
||||
"toner_type": "jetdirect",
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.4",
|
||||
"toner_descr": "Yellow Cartridge HP CF412A",
|
||||
"toner_capacity": 100,
|
||||
|
1201
tests/data/jetdirect_m252dw.json
Normal file
1201
tests/data/jetdirect_m252dw.json
Normal file
File diff suppressed because it is too large
Load Diff
826
tests/data/jetdirect_m880.json
Normal file
826
tests/data/jetdirect_m880.json
Normal file
@@ -0,0 +1,826 @@
|
||||
{
|
||||
"os": {
|
||||
"discovery": {
|
||||
"devices": [
|
||||
{
|
||||
"sysName": "<private>",
|
||||
"sysObjectID": ".1.3.6.1.4.1.11.2.3.9.1",
|
||||
"sysDescr": "HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999,CIDATE 05/28/2018",
|
||||
"sysContact": null,
|
||||
"version": null,
|
||||
"hardware": null,
|
||||
"features": null,
|
||||
"os": "jetdirect",
|
||||
"type": "printer",
|
||||
"serial": null,
|
||||
"icon": "hp.svg",
|
||||
"location": null
|
||||
}
|
||||
]
|
||||
},
|
||||
"poller": {
|
||||
"devices": [
|
||||
{
|
||||
"sysName": "<private>",
|
||||
"sysObjectID": ".1.3.6.1.4.1.11.2.3.9.1",
|
||||
"sysDescr": "HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999,CIDATE 05/28/2018",
|
||||
"sysContact": "<private>",
|
||||
"version": null,
|
||||
"hardware": "Color LaserJet flow MFP M880",
|
||||
"features": null,
|
||||
"os": "jetdirect",
|
||||
"type": "printer",
|
||||
"serial": null,
|
||||
"icon": "hp.svg",
|
||||
"location": "<private>"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"ports": {
|
||||
"discovery": {
|
||||
"ports": [
|
||||
{
|
||||
"port_descr_type": null,
|
||||
"port_descr_descr": null,
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999",
|
||||
"ifName": "HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999",
|
||||
"portName": null,
|
||||
"ifIndex": 1,
|
||||
"ifSpeed": null,
|
||||
"ifConnectorPresent": null,
|
||||
"ifPromiscuousMode": null,
|
||||
"ifHighSpeed": null,
|
||||
"ifOperStatus": null,
|
||||
"ifOperStatus_prev": null,
|
||||
"ifAdminStatus": null,
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifMtu": null,
|
||||
"ifType": "softwareLoopback",
|
||||
"ifAlias": "HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999",
|
||||
"ifPhysAddress": null,
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "",
|
||||
"ifTrunk": null,
|
||||
"counter_in": null,
|
||||
"counter_out": null,
|
||||
"ignore": 0,
|
||||
"disabled": 0,
|
||||
"detailed": 0,
|
||||
"deleted": 0,
|
||||
"pagpOperationMode": null,
|
||||
"pagpPortState": null,
|
||||
"pagpPartnerDeviceId": null,
|
||||
"pagpPartnerLearnMethod": null,
|
||||
"pagpPartnerIfIndex": null,
|
||||
"pagpPartnerGroupIfIndex": null,
|
||||
"pagpPartnerDeviceName": null,
|
||||
"pagpEthcOperationMode": null,
|
||||
"pagpDeviceId": null,
|
||||
"pagpGroupIfIndex": null,
|
||||
"ifInUcastPkts": null,
|
||||
"ifInUcastPkts_prev": null,
|
||||
"ifInUcastPkts_delta": null,
|
||||
"ifInUcastPkts_rate": null,
|
||||
"ifOutUcastPkts": null,
|
||||
"ifOutUcastPkts_prev": null,
|
||||
"ifOutUcastPkts_delta": null,
|
||||
"ifOutUcastPkts_rate": null,
|
||||
"ifInErrors": null,
|
||||
"ifInErrors_prev": null,
|
||||
"ifInErrors_delta": null,
|
||||
"ifInErrors_rate": null,
|
||||
"ifOutErrors": null,
|
||||
"ifOutErrors_prev": null,
|
||||
"ifOutErrors_delta": null,
|
||||
"ifOutErrors_rate": null,
|
||||
"ifInOctets": null,
|
||||
"ifInOctets_prev": null,
|
||||
"ifInOctets_delta": null,
|
||||
"ifInOctets_rate": null,
|
||||
"ifOutOctets": null,
|
||||
"ifOutOctets_prev": null,
|
||||
"ifOutOctets_delta": null,
|
||||
"ifOutOctets_rate": null,
|
||||
"poll_prev": null,
|
||||
"ifInNUcastPkts": null,
|
||||
"ifInNUcastPkts_prev": null,
|
||||
"ifInNUcastPkts_delta": null,
|
||||
"ifInNUcastPkts_rate": null,
|
||||
"ifOutNUcastPkts": null,
|
||||
"ifOutNUcastPkts_prev": null,
|
||||
"ifOutNUcastPkts_delta": null,
|
||||
"ifOutNUcastPkts_rate": null,
|
||||
"ifInDiscards": null,
|
||||
"ifInDiscards_prev": null,
|
||||
"ifInDiscards_delta": null,
|
||||
"ifInDiscards_rate": null,
|
||||
"ifOutDiscards": null,
|
||||
"ifOutDiscards_prev": null,
|
||||
"ifOutDiscards_delta": null,
|
||||
"ifOutDiscards_rate": null,
|
||||
"ifInUnknownProtos": null,
|
||||
"ifInUnknownProtos_prev": null,
|
||||
"ifInUnknownProtos_delta": null,
|
||||
"ifInUnknownProtos_rate": null,
|
||||
"ifInBroadcastPkts": null,
|
||||
"ifInBroadcastPkts_prev": null,
|
||||
"ifInBroadcastPkts_delta": null,
|
||||
"ifInBroadcastPkts_rate": null,
|
||||
"ifOutBroadcastPkts": null,
|
||||
"ifOutBroadcastPkts_prev": null,
|
||||
"ifOutBroadcastPkts_delta": null,
|
||||
"ifOutBroadcastPkts_rate": null,
|
||||
"ifInMulticastPkts": null,
|
||||
"ifInMulticastPkts_prev": null,
|
||||
"ifInMulticastPkts_delta": null,
|
||||
"ifInMulticastPkts_rate": null,
|
||||
"ifOutMulticastPkts": null,
|
||||
"ifOutMulticastPkts_prev": null,
|
||||
"ifOutMulticastPkts_delta": null,
|
||||
"ifOutMulticastPkts_rate": null
|
||||
},
|
||||
{
|
||||
"port_descr_type": null,
|
||||
"port_descr_descr": null,
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999",
|
||||
"ifName": "HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999",
|
||||
"portName": null,
|
||||
"ifIndex": 2,
|
||||
"ifSpeed": null,
|
||||
"ifConnectorPresent": null,
|
||||
"ifPromiscuousMode": null,
|
||||
"ifHighSpeed": null,
|
||||
"ifOperStatus": null,
|
||||
"ifOperStatus_prev": null,
|
||||
"ifAdminStatus": null,
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifMtu": null,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999",
|
||||
"ifPhysAddress": null,
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "",
|
||||
"ifTrunk": null,
|
||||
"counter_in": null,
|
||||
"counter_out": null,
|
||||
"ignore": 0,
|
||||
"disabled": 0,
|
||||
"detailed": 0,
|
||||
"deleted": 0,
|
||||
"pagpOperationMode": null,
|
||||
"pagpPortState": null,
|
||||
"pagpPartnerDeviceId": null,
|
||||
"pagpPartnerLearnMethod": null,
|
||||
"pagpPartnerIfIndex": null,
|
||||
"pagpPartnerGroupIfIndex": null,
|
||||
"pagpPartnerDeviceName": null,
|
||||
"pagpEthcOperationMode": null,
|
||||
"pagpDeviceId": null,
|
||||
"pagpGroupIfIndex": null,
|
||||
"ifInUcastPkts": null,
|
||||
"ifInUcastPkts_prev": null,
|
||||
"ifInUcastPkts_delta": null,
|
||||
"ifInUcastPkts_rate": null,
|
||||
"ifOutUcastPkts": null,
|
||||
"ifOutUcastPkts_prev": null,
|
||||
"ifOutUcastPkts_delta": null,
|
||||
"ifOutUcastPkts_rate": null,
|
||||
"ifInErrors": null,
|
||||
"ifInErrors_prev": null,
|
||||
"ifInErrors_delta": null,
|
||||
"ifInErrors_rate": null,
|
||||
"ifOutErrors": null,
|
||||
"ifOutErrors_prev": null,
|
||||
"ifOutErrors_delta": null,
|
||||
"ifOutErrors_rate": null,
|
||||
"ifInOctets": null,
|
||||
"ifInOctets_prev": null,
|
||||
"ifInOctets_delta": null,
|
||||
"ifInOctets_rate": null,
|
||||
"ifOutOctets": null,
|
||||
"ifOutOctets_prev": null,
|
||||
"ifOutOctets_delta": null,
|
||||
"ifOutOctets_rate": null,
|
||||
"poll_prev": null,
|
||||
"ifInNUcastPkts": null,
|
||||
"ifInNUcastPkts_prev": null,
|
||||
"ifInNUcastPkts_delta": null,
|
||||
"ifInNUcastPkts_rate": null,
|
||||
"ifOutNUcastPkts": null,
|
||||
"ifOutNUcastPkts_prev": null,
|
||||
"ifOutNUcastPkts_delta": null,
|
||||
"ifOutNUcastPkts_rate": null,
|
||||
"ifInDiscards": null,
|
||||
"ifInDiscards_prev": null,
|
||||
"ifInDiscards_delta": null,
|
||||
"ifInDiscards_rate": null,
|
||||
"ifOutDiscards": null,
|
||||
"ifOutDiscards_prev": null,
|
||||
"ifOutDiscards_delta": null,
|
||||
"ifOutDiscards_rate": null,
|
||||
"ifInUnknownProtos": null,
|
||||
"ifInUnknownProtos_prev": null,
|
||||
"ifInUnknownProtos_delta": null,
|
||||
"ifInUnknownProtos_rate": null,
|
||||
"ifInBroadcastPkts": null,
|
||||
"ifInBroadcastPkts_prev": null,
|
||||
"ifInBroadcastPkts_delta": null,
|
||||
"ifInBroadcastPkts_rate": null,
|
||||
"ifOutBroadcastPkts": null,
|
||||
"ifOutBroadcastPkts_prev": null,
|
||||
"ifOutBroadcastPkts_delta": null,
|
||||
"ifOutBroadcastPkts_rate": null,
|
||||
"ifInMulticastPkts": null,
|
||||
"ifInMulticastPkts_prev": null,
|
||||
"ifInMulticastPkts_delta": null,
|
||||
"ifInMulticastPkts_rate": null,
|
||||
"ifOutMulticastPkts": null,
|
||||
"ifOutMulticastPkts_prev": null,
|
||||
"ifOutMulticastPkts_delta": null,
|
||||
"ifOutMulticastPkts_rate": null
|
||||
}
|
||||
]
|
||||
},
|
||||
"poller": {
|
||||
"ports": [
|
||||
{
|
||||
"port_descr_type": null,
|
||||
"port_descr_descr": null,
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999",
|
||||
"ifName": "HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999",
|
||||
"portName": null,
|
||||
"ifIndex": 1,
|
||||
"ifSpeed": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifPromiscuousMode": null,
|
||||
"ifHighSpeed": null,
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": null,
|
||||
"ifAdminStatus": "up",
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifMtu": 1536,
|
||||
"ifType": "softwareLoopback",
|
||||
"ifAlias": "HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999",
|
||||
"ifPhysAddress": null,
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "",
|
||||
"ifTrunk": null,
|
||||
"counter_in": null,
|
||||
"counter_out": null,
|
||||
"ignore": 0,
|
||||
"disabled": 0,
|
||||
"detailed": 0,
|
||||
"deleted": 0,
|
||||
"pagpOperationMode": null,
|
||||
"pagpPortState": null,
|
||||
"pagpPartnerDeviceId": null,
|
||||
"pagpPartnerLearnMethod": null,
|
||||
"pagpPartnerIfIndex": null,
|
||||
"pagpPartnerGroupIfIndex": null,
|
||||
"pagpPartnerDeviceName": null,
|
||||
"pagpEthcOperationMode": null,
|
||||
"pagpDeviceId": null,
|
||||
"pagpGroupIfIndex": null,
|
||||
"ifInUcastPkts": 0,
|
||||
"ifInUcastPkts_prev": 0,
|
||||
"ifInUcastPkts_delta": null,
|
||||
"ifInUcastPkts_rate": null,
|
||||
"ifOutUcastPkts": 31702,
|
||||
"ifOutUcastPkts_prev": 0,
|
||||
"ifOutUcastPkts_delta": null,
|
||||
"ifOutUcastPkts_rate": null,
|
||||
"ifInErrors": 0,
|
||||
"ifInErrors_prev": 0,
|
||||
"ifInErrors_delta": null,
|
||||
"ifInErrors_rate": null,
|
||||
"ifOutErrors": 0,
|
||||
"ifOutErrors_prev": 0,
|
||||
"ifOutErrors_delta": null,
|
||||
"ifOutErrors_rate": null,
|
||||
"ifInOctets": 0,
|
||||
"ifInOctets_prev": 0,
|
||||
"ifInOctets_delta": null,
|
||||
"ifInOctets_rate": null,
|
||||
"ifOutOctets": 0,
|
||||
"ifOutOctets_prev": 0,
|
||||
"ifOutOctets_delta": null,
|
||||
"ifOutOctets_rate": null,
|
||||
"poll_prev": null,
|
||||
"ifInNUcastPkts": 0,
|
||||
"ifInNUcastPkts_prev": 0,
|
||||
"ifInNUcastPkts_delta": null,
|
||||
"ifInNUcastPkts_rate": null,
|
||||
"ifOutNUcastPkts": 0,
|
||||
"ifOutNUcastPkts_prev": 0,
|
||||
"ifOutNUcastPkts_delta": null,
|
||||
"ifOutNUcastPkts_rate": null,
|
||||
"ifInDiscards": 0,
|
||||
"ifInDiscards_prev": 0,
|
||||
"ifInDiscards_delta": null,
|
||||
"ifInDiscards_rate": null,
|
||||
"ifOutDiscards": 0,
|
||||
"ifOutDiscards_prev": 0,
|
||||
"ifOutDiscards_delta": null,
|
||||
"ifOutDiscards_rate": null,
|
||||
"ifInUnknownProtos": 0,
|
||||
"ifInUnknownProtos_prev": 0,
|
||||
"ifInUnknownProtos_delta": null,
|
||||
"ifInUnknownProtos_rate": null,
|
||||
"ifInBroadcastPkts": 0,
|
||||
"ifInBroadcastPkts_prev": 0,
|
||||
"ifInBroadcastPkts_delta": null,
|
||||
"ifInBroadcastPkts_rate": null,
|
||||
"ifOutBroadcastPkts": 0,
|
||||
"ifOutBroadcastPkts_prev": 0,
|
||||
"ifOutBroadcastPkts_delta": null,
|
||||
"ifOutBroadcastPkts_rate": null,
|
||||
"ifInMulticastPkts": 0,
|
||||
"ifInMulticastPkts_prev": 0,
|
||||
"ifInMulticastPkts_delta": null,
|
||||
"ifInMulticastPkts_rate": null,
|
||||
"ifOutMulticastPkts": 0,
|
||||
"ifOutMulticastPkts_prev": 0,
|
||||
"ifOutMulticastPkts_delta": null,
|
||||
"ifOutMulticastPkts_rate": null
|
||||
},
|
||||
{
|
||||
"port_descr_type": null,
|
||||
"port_descr_descr": null,
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999",
|
||||
"ifName": "HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999",
|
||||
"portName": null,
|
||||
"ifIndex": 2,
|
||||
"ifSpeed": 1000000000,
|
||||
"ifConnectorPresent": null,
|
||||
"ifPromiscuousMode": null,
|
||||
"ifHighSpeed": null,
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": null,
|
||||
"ifAdminStatus": "up",
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999",
|
||||
"ifPhysAddress": "10e7c662708e",
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "",
|
||||
"ifTrunk": null,
|
||||
"counter_in": null,
|
||||
"counter_out": null,
|
||||
"ignore": 0,
|
||||
"disabled": 0,
|
||||
"detailed": 0,
|
||||
"deleted": 0,
|
||||
"pagpOperationMode": null,
|
||||
"pagpPortState": null,
|
||||
"pagpPartnerDeviceId": null,
|
||||
"pagpPartnerLearnMethod": null,
|
||||
"pagpPartnerIfIndex": null,
|
||||
"pagpPartnerGroupIfIndex": null,
|
||||
"pagpPartnerDeviceName": null,
|
||||
"pagpEthcOperationMode": null,
|
||||
"pagpDeviceId": null,
|
||||
"pagpGroupIfIndex": null,
|
||||
"ifInUcastPkts": 0,
|
||||
"ifInUcastPkts_prev": 0,
|
||||
"ifInUcastPkts_delta": null,
|
||||
"ifInUcastPkts_rate": null,
|
||||
"ifOutUcastPkts": 1423600,
|
||||
"ifOutUcastPkts_prev": 0,
|
||||
"ifOutUcastPkts_delta": null,
|
||||
"ifOutUcastPkts_rate": null,
|
||||
"ifInErrors": 0,
|
||||
"ifInErrors_prev": 0,
|
||||
"ifInErrors_delta": null,
|
||||
"ifInErrors_rate": null,
|
||||
"ifOutErrors": 0,
|
||||
"ifOutErrors_prev": 0,
|
||||
"ifOutErrors_delta": null,
|
||||
"ifOutErrors_rate": null,
|
||||
"ifInOctets": 3891030065,
|
||||
"ifInOctets_prev": 0,
|
||||
"ifInOctets_delta": null,
|
||||
"ifInOctets_rate": null,
|
||||
"ifOutOctets": 127908410,
|
||||
"ifOutOctets_prev": 0,
|
||||
"ifOutOctets_delta": null,
|
||||
"ifOutOctets_rate": null,
|
||||
"poll_prev": null,
|
||||
"ifInNUcastPkts": 0,
|
||||
"ifInNUcastPkts_prev": 0,
|
||||
"ifInNUcastPkts_delta": null,
|
||||
"ifInNUcastPkts_rate": null,
|
||||
"ifOutNUcastPkts": 7265,
|
||||
"ifOutNUcastPkts_prev": 0,
|
||||
"ifOutNUcastPkts_delta": null,
|
||||
"ifOutNUcastPkts_rate": null,
|
||||
"ifInDiscards": 0,
|
||||
"ifInDiscards_prev": 0,
|
||||
"ifInDiscards_delta": null,
|
||||
"ifInDiscards_rate": null,
|
||||
"ifOutDiscards": 0,
|
||||
"ifOutDiscards_prev": 0,
|
||||
"ifOutDiscards_delta": null,
|
||||
"ifOutDiscards_rate": null,
|
||||
"ifInUnknownProtos": 5301,
|
||||
"ifInUnknownProtos_prev": 0,
|
||||
"ifInUnknownProtos_delta": null,
|
||||
"ifInUnknownProtos_rate": null,
|
||||
"ifInBroadcastPkts": 0,
|
||||
"ifInBroadcastPkts_prev": 0,
|
||||
"ifInBroadcastPkts_delta": null,
|
||||
"ifInBroadcastPkts_rate": null,
|
||||
"ifOutBroadcastPkts": 0,
|
||||
"ifOutBroadcastPkts_prev": 0,
|
||||
"ifOutBroadcastPkts_delta": null,
|
||||
"ifOutBroadcastPkts_rate": null,
|
||||
"ifInMulticastPkts": 0,
|
||||
"ifInMulticastPkts_prev": 0,
|
||||
"ifInMulticastPkts_delta": null,
|
||||
"ifInMulticastPkts_rate": null,
|
||||
"ifOutMulticastPkts": 0,
|
||||
"ifOutMulticastPkts_prev": 0,
|
||||
"ifOutMulticastPkts_delta": null,
|
||||
"ifOutMulticastPkts_rate": null
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"sensors": {
|
||||
"discovery": {
|
||||
"sensors": [
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.2.1.25.3.2.1.5.1",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "hrDeviceStatus",
|
||||
"sensor_descr": "Printer Device Status",
|
||||
"group": null,
|
||||
"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": "0",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "hrDeviceStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.2.1.25.3.5.1.2.1",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "hrPrinterDetectedErrorState",
|
||||
"sensor_descr": "Printer Error Status",
|
||||
"group": null,
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 0,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "0",
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"state_name": "hrPrinterDetectedErrorState"
|
||||
}
|
||||
],
|
||||
"state_indexes": [
|
||||
{
|
||||
"state_name": "hrDeviceStatus",
|
||||
"state_descr": "Unknown",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 1,
|
||||
"state_generic_value": 3
|
||||
},
|
||||
{
|
||||
"state_name": "hrDeviceStatus",
|
||||
"state_descr": "Running",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 0
|
||||
},
|
||||
{
|
||||
"state_name": "hrDeviceStatus",
|
||||
"state_descr": "Warning",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 3,
|
||||
"state_generic_value": 1
|
||||
},
|
||||
{
|
||||
"state_name": "hrDeviceStatus",
|
||||
"state_descr": "Testing",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 4,
|
||||
"state_generic_value": 0
|
||||
},
|
||||
{
|
||||
"state_name": "hrDeviceStatus",
|
||||
"state_descr": "Down",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 5,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "hrPrinterDetectedErrorState",
|
||||
"state_descr": "Normal",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 0,
|
||||
"state_generic_value": 0
|
||||
},
|
||||
{
|
||||
"state_name": "hrPrinterDetectedErrorState",
|
||||
"state_descr": "Paper Low",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 1,
|
||||
"state_generic_value": 1
|
||||
},
|
||||
{
|
||||
"state_name": "hrPrinterDetectedErrorState",
|
||||
"state_descr": "No Paper",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "hrPrinterDetectedErrorState",
|
||||
"state_descr": "Toner Low",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 3,
|
||||
"state_generic_value": 1
|
||||
},
|
||||
{
|
||||
"state_name": "hrPrinterDetectedErrorState",
|
||||
"state_descr": "No Toner",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 4,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "hrPrinterDetectedErrorState",
|
||||
"state_descr": "Door Open",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 5,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "hrPrinterDetectedErrorState",
|
||||
"state_descr": "Jammed",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 6,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "hrPrinterDetectedErrorState",
|
||||
"state_descr": "Offline",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 7,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "hrPrinterDetectedErrorState",
|
||||
"state_descr": "Service Needed",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 8,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "hrPrinterDetectedErrorState",
|
||||
"state_descr": "Warning, multiple issues",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 9,
|
||||
"state_generic_value": 1
|
||||
},
|
||||
{
|
||||
"state_name": "hrPrinterDetectedErrorState",
|
||||
"state_descr": "Critical, multiple issues",
|
||||
"state_draw_graph": 0,
|
||||
"state_value": 10,
|
||||
"state_generic_value": 2
|
||||
}
|
||||
]
|
||||
},
|
||||
"poller": "matches discovery"
|
||||
},
|
||||
"toner": {
|
||||
"discovery": {
|
||||
"toner": [
|
||||
{
|
||||
"toner_index": 1,
|
||||
"toner_type": "tonerCartridge",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.1",
|
||||
"toner_descr": "Black Cartridge",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 92,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.1"
|
||||
},
|
||||
{
|
||||
"toner_index": 10,
|
||||
"toner_type": "fuser",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.10",
|
||||
"toner_descr": "Fuser Kit HP 110",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 84,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.10"
|
||||
},
|
||||
{
|
||||
"toner_index": 11,
|
||||
"toner_type": "other",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.11",
|
||||
"toner_descr": "Document Feeder",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 99,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.11"
|
||||
},
|
||||
{
|
||||
"toner_index": 12,
|
||||
"toner_type": "other",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.12",
|
||||
"toner_descr": "Clean Rollers HP",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 97,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.12"
|
||||
},
|
||||
{
|
||||
"toner_index": 13,
|
||||
"toner_type": "staples",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.13",
|
||||
"toner_descr": "Stapler 1 HP C80",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 50,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.13"
|
||||
},
|
||||
{
|
||||
"toner_index": 14,
|
||||
"toner_type": "staples",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.14",
|
||||
"toner_descr": "Stapler 2 HP CC3",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 50,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.14"
|
||||
},
|
||||
{
|
||||
"toner_index": 15,
|
||||
"toner_type": "staples",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.15",
|
||||
"toner_descr": "Stapler 3 HP CC3",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 50,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.15"
|
||||
},
|
||||
{
|
||||
"toner_index": 2,
|
||||
"toner_type": "tonerCartridge",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.2",
|
||||
"toner_descr": "Cyan Cartridge 8",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 16,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.2"
|
||||
},
|
||||
{
|
||||
"toner_index": 3,
|
||||
"toner_type": "tonerCartridge",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.3",
|
||||
"toner_descr": "Magenta Cartridg",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 100,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.3"
|
||||
},
|
||||
{
|
||||
"toner_index": 4,
|
||||
"toner_type": "tonerCartridge",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.4",
|
||||
"toner_descr": "Yellow Cartridge",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 70,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.4"
|
||||
},
|
||||
{
|
||||
"toner_index": 5,
|
||||
"toner_type": "opc",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.5",
|
||||
"toner_descr": "Black Drum 828A",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 53,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.5"
|
||||
},
|
||||
{
|
||||
"toner_index": 6,
|
||||
"toner_type": "opc",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.6",
|
||||
"toner_descr": "Cyan Drum 828A H",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 58,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.6"
|
||||
},
|
||||
{
|
||||
"toner_index": 7,
|
||||
"toner_type": "opc",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.7",
|
||||
"toner_descr": "Magenta Drum 828",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 58,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.7"
|
||||
},
|
||||
{
|
||||
"toner_index": 8,
|
||||
"toner_type": "opc",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.8",
|
||||
"toner_descr": "Yellow Drum 828A",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 58,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.8"
|
||||
},
|
||||
{
|
||||
"toner_index": 9,
|
||||
"toner_type": "transferUnit",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.9",
|
||||
"toner_descr": "Transfer Kit HP",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 89,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.9"
|
||||
},
|
||||
{
|
||||
"toner_index": 1,
|
||||
"toner_type": "input",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.8.2.1.10.1.1",
|
||||
"toner_descr": "Tray 1",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 0,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.8.2.1.9.1.1"
|
||||
},
|
||||
{
|
||||
"toner_index": 2,
|
||||
"toner_type": "input",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.8.2.1.10.1.2",
|
||||
"toner_descr": "Tray 2",
|
||||
"toner_capacity": 500,
|
||||
"toner_current": 40,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.8.2.1.9.1.2"
|
||||
},
|
||||
{
|
||||
"toner_index": 3,
|
||||
"toner_type": "input",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.8.2.1.10.1.3",
|
||||
"toner_descr": "Tray 3",
|
||||
"toner_capacity": 1500,
|
||||
"toner_current": 20,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.8.2.1.9.1.3"
|
||||
},
|
||||
{
|
||||
"toner_index": 5,
|
||||
"toner_type": "input",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.8.2.1.10.1.5",
|
||||
"toner_descr": "Tray 4",
|
||||
"toner_capacity": 2000,
|
||||
"toner_current": 20,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.8.2.1.9.1.5"
|
||||
},
|
||||
{
|
||||
"toner_index": 0,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.4.1.367.3.2.1.2.24.1.1.5.",
|
||||
"toner_descr": "0",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 0,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8."
|
||||
}
|
||||
]
|
||||
},
|
||||
"poller": "matches discovery"
|
||||
}
|
||||
}
|
@@ -581,156 +581,156 @@
|
||||
"discovery": {
|
||||
"toner": [
|
||||
{
|
||||
"toner_index": "1",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 1,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.1",
|
||||
"toner_descr": "Toner (Cyan)",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "29",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 29,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.1"
|
||||
},
|
||||
{
|
||||
"toner_index": "10",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 10,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.10",
|
||||
"toner_descr": "Developer Cartridge (Yellow)",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "78",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 78,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.10"
|
||||
},
|
||||
{
|
||||
"toner_index": "11",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 11,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.11",
|
||||
"toner_descr": "Drum Cartridge (Black)",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "20",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 20,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.11"
|
||||
},
|
||||
{
|
||||
"toner_index": "12",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 12,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.12",
|
||||
"toner_descr": "Developer Cartridge (Black)",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "71",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 71,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.12"
|
||||
},
|
||||
{
|
||||
"toner_index": "13",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 13,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.13",
|
||||
"toner_descr": "Waste Toner Box",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "50",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 50,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.13"
|
||||
},
|
||||
{
|
||||
"toner_index": "14",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 14,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.14",
|
||||
"toner_descr": "Fusing Unit",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "68",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 68,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.14"
|
||||
},
|
||||
{
|
||||
"toner_index": "15",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 15,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.15",
|
||||
"toner_descr": "Image Transfer Belt Unit",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "41",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 41,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.15"
|
||||
},
|
||||
{
|
||||
"toner_index": "16",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 16,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.16",
|
||||
"toner_descr": "Transfer Roller Unit",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "45",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 45,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.16"
|
||||
},
|
||||
{
|
||||
"toner_index": "17",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 17,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.17",
|
||||
"toner_descr": "Ozone Filter",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "45",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 45,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.17"
|
||||
},
|
||||
{
|
||||
"toner_index": "2",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 2,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.2",
|
||||
"toner_descr": "Toner (Magenta)",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "31",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 31,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.2"
|
||||
},
|
||||
{
|
||||
"toner_index": "3",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 3,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.3",
|
||||
"toner_descr": "Toner (Yellow)",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "58",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 58,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.3"
|
||||
},
|
||||
{
|
||||
"toner_index": "4",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 4,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.4",
|
||||
"toner_descr": "Toner (Black)",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "83",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 83,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.4"
|
||||
},
|
||||
{
|
||||
"toner_index": "5",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 5,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.5",
|
||||
"toner_descr": "Drum Cartridge (Cyan)",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "59",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 59,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.5"
|
||||
},
|
||||
{
|
||||
"toner_index": "6",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 6,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.6",
|
||||
"toner_descr": "Developer Cartridge (Cyan)",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "79",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 79,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.6"
|
||||
},
|
||||
{
|
||||
"toner_index": "7",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 7,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.7",
|
||||
"toner_descr": "Drum Cartridge (Magenta)",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "97",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 97,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.7"
|
||||
},
|
||||
{
|
||||
"toner_index": "8",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 8,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.8",
|
||||
"toner_descr": "Developer Cartridge (Magenta)",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "78",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 78,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.8"
|
||||
},
|
||||
{
|
||||
"toner_index": "9",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 9,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.9",
|
||||
"toner_descr": "Drum Cartridge (Yellow)",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "59",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 59,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.9"
|
||||
}
|
||||
]
|
||||
|
@@ -41,111 +41,111 @@
|
||||
"discovery": {
|
||||
"toner": [
|
||||
{
|
||||
"toner_index": "1",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 1,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.1",
|
||||
"toner_descr": "Black Toner",
|
||||
"toner_capacity": "5300",
|
||||
"toner_current": "20",
|
||||
"toner_capacity": 5300,
|
||||
"toner_current": 20,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.1"
|
||||
},
|
||||
{
|
||||
"toner_index": "10",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 10,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.10",
|
||||
"toner_descr": "Waste Toner Container",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "5",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 5,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.10"
|
||||
},
|
||||
{
|
||||
"toner_index": "11",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 11,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.11",
|
||||
"toner_descr": "Transfer Belt Cleaner",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "65",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 65,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.11"
|
||||
},
|
||||
{
|
||||
"toner_index": "12",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 12,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.12",
|
||||
"toner_descr": "Second Bias Transfer Roll",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "86",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 86,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.12"
|
||||
},
|
||||
{
|
||||
"toner_index": "2",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 2,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.2",
|
||||
"toner_descr": "Cyan Toner",
|
||||
"toner_capacity": "3000",
|
||||
"toner_current": "66",
|
||||
"toner_capacity": 3000,
|
||||
"toner_current": 66,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.2"
|
||||
},
|
||||
{
|
||||
"toner_index": "3",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 3,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.3",
|
||||
"toner_descr": "Magenta Toner",
|
||||
"toner_capacity": "3000",
|
||||
"toner_current": "72",
|
||||
"toner_capacity": 3000,
|
||||
"toner_current": 72,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.3"
|
||||
},
|
||||
{
|
||||
"toner_index": "4",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 4,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.4",
|
||||
"toner_descr": "Yellow Toner",
|
||||
"toner_capacity": "3050",
|
||||
"toner_current": "60",
|
||||
"toner_capacity": 3050,
|
||||
"toner_current": 60,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.4"
|
||||
},
|
||||
{
|
||||
"toner_index": "5",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 5,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.5",
|
||||
"toner_descr": "Drum Cartridge (R1)",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "50",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 50,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.5"
|
||||
},
|
||||
{
|
||||
"toner_index": "6",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 6,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.6",
|
||||
"toner_descr": "Drum Cartridge (R2)",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "92",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 92,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.6"
|
||||
},
|
||||
{
|
||||
"toner_index": "7",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 7,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.7",
|
||||
"toner_descr": "Drum Cartridge (R3)",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "93",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 93,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.7"
|
||||
},
|
||||
{
|
||||
"toner_index": "8",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 8,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.8",
|
||||
"toner_descr": "Drum Cartridge (R4)",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "93",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 93,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.8"
|
||||
},
|
||||
{
|
||||
"toner_index": "9",
|
||||
"toner_type": "jetdirect",
|
||||
"toner_index": 9,
|
||||
"toner_type": "markerSupply",
|
||||
"toner_oid": ".1.3.6.1.2.1.43.11.1.1.9.1.9",
|
||||
"toner_descr": "Fuser",
|
||||
"toner_capacity": "100",
|
||||
"toner_current": "90",
|
||||
"toner_capacity": 100,
|
||||
"toner_current": 90,
|
||||
"toner_capacity_oid": ".1.3.6.1.2.1.43.11.1.1.8.1.9"
|
||||
}
|
||||
]
|
||||
|
397
tests/snmpsim/jetdirect_m252dw.snmprec
Normal file
397
tests/snmpsim/jetdirect_m252dw.snmprec
Normal file
@@ -0,0 +1,397 @@
|
||||
1.3.6.1.2.1.1.1.0|4|HP ETHERNET MULTI-ENVIRONMENT,SN:VNB3J99999,FN:1F31B6C,SVCID:99999,PID:HP Color LaserJet Pro M252dw
|
||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.11.2.3.9.1
|
||||
1.3.6.1.2.1.1.3.0|67|220329339
|
||||
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.2.1|4|LOOPBACK
|
||||
1.3.6.1.2.1.2.2.1.2.2|4|Ethernet
|
||||
1.3.6.1.2.1.2.2.1.2.3|4|wifi0
|
||||
1.3.6.1.2.1.2.2.1.2.4|4|wifiUAP
|
||||
1.3.6.1.2.1.2.2.1.3.1|2|24
|
||||
1.3.6.1.2.1.2.2.1.3.2|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.3|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.4|2|6
|
||||
1.3.6.1.2.1.2.2.1.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|1500
|
||||
1.3.6.1.2.1.2.2.1.4.4|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|10000000
|
||||
1.3.6.1.2.1.2.2.1.5.3|66|10000000
|
||||
1.3.6.1.2.1.2.2.1.5.4|66|10000000
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|3CA82AF638AC
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|C48E8FA24549
|
||||
1.3.6.1.2.1.2.2.1.6.4|4x|C48E8FA24549
|
||||
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|2
|
||||
1.3.6.1.2.1.2.2.1.7.4|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.1|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.2|2|1
|
||||
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.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|648
|
||||
1.3.6.1.2.1.2.2.1.9.4|67|0
|
||||
1.3.6.1.2.1.2.2.1.10.1|65|672885167
|
||||
1.3.6.1.2.1.2.2.1.10.2|65|2522647815
|
||||
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.11.1|65|7739035
|
||||
1.3.6.1.2.1.2.2.1.11.2|65|1304693
|
||||
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.12.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.12.2|65|6388911
|
||||
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.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.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.15.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.15.2|65|466434
|
||||
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.16.1|65|672885167
|
||||
1.3.6.1.2.1.2.2.1.16.2|65|201356576
|
||||
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.17.1|65|7739035
|
||||
1.3.6.1.2.1.2.2.1.17.2|65|755981
|
||||
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.18.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.18.2|65|208365
|
||||
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.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.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.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.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.4.20.1.2.192.168.1.25|2|2
|
||||
1.3.6.1.2.1.4.20.1.3.192.168.1.25|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.1.124|4x|40A8F040E496
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.1.251|4x|00907FD28A60
|
||||
1.3.6.1.2.1.4.31.1.1.3.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.3.2|65|9374566
|
||||
1.3.6.1.2.1.4.31.1.1.4.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.4.2|70|9374566
|
||||
1.3.6.1.2.1.4.31.1.1.5.1|65|3195530198
|
||||
1.3.6.1.2.1.4.31.1.1.5.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.6.1|70|3195530198
|
||||
1.3.6.1.2.1.4.31.1.1.6.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.7.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.7.2|65|23
|
||||
1.3.6.1.2.1.4.31.1.1.8.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.8.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.9.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.9.2|65|241
|
||||
1.3.6.1.2.1.4.31.1.1.10.1|65|466434
|
||||
1.3.6.1.2.1.4.31.1.1.10.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.11.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.11.2|65|5520
|
||||
1.3.6.1.2.1.4.31.1.1.12.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.12.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.13.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.13.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.14.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.14.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.15.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.15.2|65|17440
|
||||
1.3.6.1.2.1.4.31.1.1.16.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.16.2|65|255
|
||||
1.3.6.1.2.1.4.31.1.1.17.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.17.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.18.1|65|7150253
|
||||
1.3.6.1.2.1.4.31.1.1.18.2|65|9250880
|
||||
1.3.6.1.2.1.4.31.1.1.19.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.19.2|70|9374568
|
||||
1.3.6.1.2.1.4.31.1.1.20.1|65|737841
|
||||
1.3.6.1.2.1.4.31.1.1.20.2|65|7747156
|
||||
1.3.6.1.2.1.4.31.1.1.21.1|70|737841
|
||||
1.3.6.1.2.1.4.31.1.1.21.2|70|7747156
|
||||
1.3.6.1.2.1.4.31.1.1.22.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.22.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.23.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.23.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.24.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.24.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.25.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.25.2|65|43
|
||||
1.3.6.1.2.1.4.31.1.1.26.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.26.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.27.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.27.2|65|324
|
||||
1.3.6.1.2.1.4.31.1.1.28.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.28.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.29.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.29.2|65|648
|
||||
1.3.6.1.2.1.4.31.1.1.30.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.30.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.31.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.31.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.32.1|65|874237387
|
||||
1.3.6.1.2.1.4.31.1.1.32.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.33.1|70|874237645
|
||||
1.3.6.1.2.1.4.31.1.1.33.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.34.1|65|3981240
|
||||
1.3.6.1.2.1.4.31.1.1.34.2|65|1546247
|
||||
1.3.6.1.2.1.4.31.1.1.35.1|70|3981240
|
||||
1.3.6.1.2.1.4.31.1.1.35.2|70|1546247
|
||||
1.3.6.1.2.1.4.31.1.1.36.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.36.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.37.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.37.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.38.1|65|6121
|
||||
1.3.6.1.2.1.4.31.1.1.38.2|65|6249
|
||||
1.3.6.1.2.1.4.31.1.1.39.1|70|6121
|
||||
1.3.6.1.2.1.4.31.1.1.39.2|70|6249
|
||||
1.3.6.1.2.1.4.31.1.1.40.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.40.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.41.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.41.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.42.1|65|2407671
|
||||
1.3.6.1.2.1.4.31.1.1.42.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.43.1|70|2407671
|
||||
1.3.6.1.2.1.4.31.1.1.43.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.44.1|65|202244
|
||||
1.3.6.1.2.1.4.31.1.1.44.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.45.1|70|202244
|
||||
1.3.6.1.2.1.4.31.1.1.45.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.46.1|67|0
|
||||
1.3.6.1.2.1.4.31.1.1.46.2|67|0
|
||||
1.3.6.1.2.1.4.31.1.1.47.1|66|0
|
||||
1.3.6.1.2.1.4.31.1.1.47.2|66|0
|
||||
1.3.6.1.2.1.4.35.1.4.2.1.4.192.168.1.124|4x|40A8F040E496
|
||||
1.3.6.1.2.1.4.35.1.4.2.1.4.192.168.1.251|4x|00907FD28A60
|
||||
1.3.6.1.2.1.5.1.0|65|40662
|
||||
1.3.6.1.2.1.5.2.0|65|0
|
||||
1.3.6.1.2.1.5.3.0|65|17216
|
||||
1.3.6.1.2.1.5.4.0|65|8
|
||||
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|23438
|
||||
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|23476
|
||||
1.3.6.1.2.1.5.15.0|65|0
|
||||
1.3.6.1.2.1.5.16.0|65|38
|
||||
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|23438
|
||||
1.3.6.1.2.1.5.23.0|65|0
|
||||
1.3.6.1.2.1.5.24.0|65|0
|
||||
1.3.6.1.2.1.5.25.0|65|0
|
||||
1.3.6.1.2.1.5.26.0|65|0
|
||||
1.3.6.1.2.1.5.29.1.2.1|65|40662
|
||||
1.3.6.1.2.1.5.29.1.2.2|65|9162
|
||||
1.3.6.1.2.1.5.29.1.3.1|65|0
|
||||
1.3.6.1.2.1.5.29.1.3.2|65|17
|
||||
1.3.6.1.2.1.5.29.1.4.1|65|23476
|
||||
1.3.6.1.2.1.5.29.1.4.2|65|15
|
||||
1.3.6.1.2.1.5.29.1.5.1|65|0
|
||||
1.3.6.1.2.1.5.29.1.5.2|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.0|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.3|65|17216
|
||||
1.3.6.1.2.1.5.30.1.3.1.4|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.5|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.8|65|23438
|
||||
1.3.6.1.2.1.5.30.1.3.1.9|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.10|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.11|65|8
|
||||
1.3.6.1.2.1.5.30.1.3.1.12|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.13|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.14|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.15|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.16|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.17|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.18|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.1|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.2|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.3|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.4|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.128|65|3
|
||||
1.3.6.1.2.1.5.30.1.3.2.129|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.130|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.131|65|28
|
||||
1.3.6.1.2.1.5.30.1.3.2.132|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.133|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.134|65|6674
|
||||
1.3.6.1.2.1.5.30.1.3.2.135|65|60
|
||||
1.3.6.1.2.1.5.30.1.3.2.136|65|2380
|
||||
1.3.6.1.2.1.5.30.1.3.2.137|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.0|65|23438
|
||||
1.3.6.1.2.1.5.30.1.4.1.3|65|38
|
||||
1.3.6.1.2.1.5.30.1.4.1.4|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.5|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.8|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.9|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.10|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.11|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.12|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.13|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.14|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.15|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.16|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.17|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.18|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.1|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.2|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.3|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.4|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.128|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.129|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.130|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.131|65|12
|
||||
1.3.6.1.2.1.5.30.1.4.2.132|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.133|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.134|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.135|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.136|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.137|65|0
|
||||
1.3.6.1.2.1.11.1.0|65|959262796
|
||||
1.3.6.1.2.1.11.2.0|65|994919279
|
||||
1.3.6.1.2.1.11.3.0|65|978342459
|
||||
1.3.6.1.2.1.11.4.0|65|1296256058
|
||||
1.3.6.1.2.1.11.5.0|65|1145846606
|
||||
1.3.6.1.2.1.11.6.0|65|1129724466
|
||||
1.3.6.1.2.1.11.8.0|65|774912768
|
||||
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|643770
|
||||
1.3.6.1.2.1.11.14.0|65|0
|
||||
1.3.6.1.2.1.11.15.0|65|214556
|
||||
1.3.6.1.2.1.11.16.0|65|38333
|
||||
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|30726
|
||||
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|560857
|
||||
1.3.6.1.2.1.11.29.0|65|0
|
||||
1.3.6.1.2.1.11.30.0|2|0
|
||||
1.3.6.1.2.1.11.31.0|65|5
|
||||
1.3.6.1.2.1.11.32.0|65|0
|
||||
1.3.6.1.2.1.25.2.2.0|2|262144
|
||||
1.3.6.1.2.1.25.2.3.1.1.1|2|1
|
||||
1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.2
|
||||
1.3.6.1.2.1.25.2.3.1.3.1|4|Random Access Memory
|
||||
1.3.6.1.2.1.25.2.3.1.4.1|2|1
|
||||
1.3.6.1.2.1.25.2.3.1.5.1|2|268435456
|
||||
1.3.6.1.2.1.25.2.3.1.6.1|2|59902715
|
||||
1.3.6.1.2.1.25.2.3.1.7.1|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.1.1|2|1
|
||||
1.3.6.1.2.1.25.3.2.1.2.1|6|1.3.6.1.2.1.25.3.1.5
|
||||
1.3.6.1.2.1.25.3.2.1.3.1|4|HP Color LaserJet Pro M252dw
|
||||
1.3.6.1.2.1.25.3.2.1.4.1|6|1.3.6.1.4.1.11.2.3.9.1.2.67.11
|
||||
1.3.6.1.2.1.25.3.2.1.5.1|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.6.1|65|8
|
||||
1.3.6.1.2.1.25.3.5.1.2.1|4x|00
|
||||
1.3.6.1.2.1.43.8.2.1.2.1.1|2|4
|
||||
1.3.6.1.2.1.43.8.2.1.2.1.2|2|4
|
||||
1.3.6.1.2.1.43.8.2.1.3.1.1|2|3
|
||||
1.3.6.1.2.1.43.8.2.1.3.1.2|2|3
|
||||
1.3.6.1.2.1.43.8.2.1.4.1.1|2|110000
|
||||
1.3.6.1.2.1.43.8.2.1.4.1.2|2|110000
|
||||
1.3.6.1.2.1.43.8.2.1.5.1.1|2|85000
|
||||
1.3.6.1.2.1.43.8.2.1.5.1.2|2|85000
|
||||
1.3.6.1.2.1.43.8.2.1.6.1.1|2|110000
|
||||
1.3.6.1.2.1.43.8.2.1.6.1.2|2|110000
|
||||
1.3.6.1.2.1.43.8.2.1.7.1.1|2|85000
|
||||
1.3.6.1.2.1.43.8.2.1.7.1.2|2|85000
|
||||
1.3.6.1.2.1.43.8.2.1.8.1.1|2|8
|
||||
1.3.6.1.2.1.43.8.2.1.8.1.2|2|8
|
||||
1.3.6.1.2.1.43.8.2.1.9.1.1|2|1
|
||||
1.3.6.1.2.1.43.8.2.1.9.1.2|2|150
|
||||
1.3.6.1.2.1.43.8.2.1.10.1.1|2|-2
|
||||
1.3.6.1.2.1.43.8.2.1.10.1.2|2|-3
|
||||
1.3.6.1.2.1.43.8.2.1.11.1.1|2|9
|
||||
1.3.6.1.2.1.43.8.2.1.11.1.2|2|0
|
||||
1.3.6.1.2.1.43.8.2.1.12.1.1|4|Any
|
||||
1.3.6.1.2.1.43.8.2.1.12.1.2|4|Any
|
||||
1.3.6.1.2.1.43.8.2.1.13.1.1|4|Tray 1
|
||||
1.3.6.1.2.1.43.8.2.1.13.1.2|4|Tray 2
|
||||
1.3.6.1.2.1.43.8.2.1.14.1.1|4|Hewlett-Packard
|
||||
1.3.6.1.2.1.43.8.2.1.14.1.2|4|Hewlett-Packard
|
||||
1.3.6.1.2.1.43.8.2.1.15.1.1|4|
|
||||
1.3.6.1.2.1.43.8.2.1.15.1.2|4|
|
||||
1.3.6.1.2.1.43.8.2.1.16.1.1|4|
|
||||
1.3.6.1.2.1.43.8.2.1.16.1.2|4|
|
||||
1.3.6.1.2.1.43.8.2.1.17.1.1|4|
|
||||
1.3.6.1.2.1.43.8.2.1.17.1.2|4|
|
||||
1.3.6.1.2.1.43.8.2.1.18.1.1|4|Tray 1
|
||||
1.3.6.1.2.1.43.8.2.1.18.1.2|4|Tray 2
|
||||
1.3.6.1.2.1.43.8.2.1.19.1.1|2|5
|
||||
1.3.6.1.2.1.43.8.2.1.19.1.2|2|5
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.1|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.2|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.3|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.4|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.1|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.2|2|2
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.3|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.4|2|4
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.1|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.2|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.3|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.4|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.1|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.2|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.3|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.4|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.1|4|Black Cartridge HP CF400X
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.2|4|Cyan Cartridge HP CF401X
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.3|4|Magenta Cartridge HP CF403X
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.4|4|Yellow Cartridge HP CF402X
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.1|2|19
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.2|2|19
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.3|2|19
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.4|2|19
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.1|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.2|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.3|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.4|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.1|2|63
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.2|2|63
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.3|2|88
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.4|2|36
|
||||
1.3.6.1.4.1.11.2.3.9.1.1.7.0|4|MFG:Hewlett-Packard;CMD:PJL,PML,PCLXL,URP,PCL,PDF,POSTSCRIPT;MDL:HP Color LaserJet Pro M252dw;CLS:PRINTER;DES:Hewlett-Packard Color LaserJet Pro M252dw;MEM:MEM=219MB;COMMENT:RES=600x8;LEDMDIS:USB#ff#04#01;CID:HPLJPDLV1;IPP-E:FF-04-01,FF-04-01,FF-09-01,FF-09-01;MCT:PR;MCL:DL;MCV:2.0;
|
||||
1.3.6.1.6.3.10.2.1.3.0|2|2203293
|
330
tests/snmpsim/jetdirect_m880.snmprec
Normal file
330
tests/snmpsim/jetdirect_m880.snmprec
Normal file
@@ -0,0 +1,330 @@
|
||||
1.3.6.1.2.1.1.1.0|4|HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999,CIDATE 05/28/2018
|
||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.11.2.3.9.1
|
||||
1.3.6.1.2.1.1.3.0|67|52860963
|
||||
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.2.1|4|HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999
|
||||
1.3.6.1.2.1.2.2.1.2.2|4|HP ETHERNET MULTI-ENVIRONMENT,ROM none,JETDIRECT,JD149,EEPROM JDI99999999
|
||||
1.3.6.1.2.1.2.2.1.3.1|2|24
|
||||
1.3.6.1.2.1.2.2.1.3.2|2|6
|
||||
1.3.6.1.2.1.2.2.1.4.1|2|1536
|
||||
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|0
|
||||
1.3.6.1.2.1.2.2.1.5.2|66|1000000000
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|10E7C662708E
|
||||
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|0
|
||||
1.3.6.1.2.1.2.2.1.9.2|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|3891030065
|
||||
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.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.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|0
|
||||
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|5301
|
||||
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|127908410
|
||||
1.3.6.1.2.1.2.2.1.17.1|65|31702
|
||||
1.3.6.1.2.1.2.2.1.17.2|65|1423600
|
||||
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|7265
|
||||
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|0
|
||||
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|2.594390768
|
||||
1.3.6.1.2.1.4.20.1.2.192.168.1.183|2|2
|
||||
1.3.6.1.2.1.4.20.1.3.192.168.1.183|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.1.13|4x|0050568956A8
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.1.19|4x|005056A9E017
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.1.79|4x|00242BBD57D9
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.1.120|4x|5CE0C5E66644
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.1.136|4x|98E7F4BBC709
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.1.157|4x|082E5F27CF12
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.1.172|4x|805A04A773A2
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.1.228|4x|005056A9BD3B
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.1.251|4x|00907FD28A60
|
||||
1.3.6.1.2.1.5.1.0|65|13299
|
||||
1.3.6.1.2.1.5.2.0|65|0
|
||||
1.3.6.1.2.1.5.3.0|65|4
|
||||
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|13295
|
||||
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|13298
|
||||
1.3.6.1.2.1.5.15.0|65|3
|
||||
1.3.6.1.2.1.5.16.0|65|3
|
||||
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|13295
|
||||
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.11.1.0|65|15042
|
||||
1.3.6.1.2.1.11.2.0|65|14943
|
||||
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|88706
|
||||
1.3.6.1.2.1.11.14.0|65|0
|
||||
1.3.6.1.2.1.11.15.0|65|9454
|
||||
1.3.6.1.2.1.11.16.0|65|4691
|
||||
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|404
|
||||
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|14945
|
||||
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.25.2.2.0|2|2621440
|
||||
1.3.6.1.2.1.25.3.2.1.1.1|2|1
|
||||
1.3.6.1.2.1.25.3.2.1.1.2|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.2.1|6|1.3.6.1.2.1.25.3.1.5
|
||||
1.3.6.1.2.1.25.3.2.1.2.2|6|1.3.6.1.2.1.25.3.1.6
|
||||
1.3.6.1.2.1.25.3.2.1.3.1|4|HP Color LaserJet flow MFP M880
|
||||
1.3.6.1.2.1.25.3.2.1.3.2|4|HP Secure Hard Disk
|
||||
1.3.6.1.2.1.25.3.2.1.4.1|6|1.3.6.1.4.1.11.2.3.9.1.2.76.5
|
||||
1.3.6.1.2.1.25.3.2.1.4.2|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.5.1|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.2|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.6.1|65|26
|
||||
1.3.6.1.2.1.25.3.2.1.6.2|65|0
|
||||
1.3.6.1.2.1.25.3.5.1.2.1|4x|00
|
||||
1.3.6.1.2.1.43.8.2.1.2.1.1|2|4
|
||||
1.3.6.1.2.1.43.8.2.1.2.1.2|2|4
|
||||
1.3.6.1.2.1.43.8.2.1.2.1.3|2|3
|
||||
1.3.6.1.2.1.43.8.2.1.2.1.5|2|3
|
||||
1.3.6.1.2.1.43.8.2.1.3.1.1|2|3
|
||||
1.3.6.1.2.1.43.8.2.1.3.1.2|2|3
|
||||
1.3.6.1.2.1.43.8.2.1.3.1.3|2|3
|
||||
1.3.6.1.2.1.43.8.2.1.3.1.5|2|3
|
||||
1.3.6.1.2.1.43.8.2.1.4.1.1|2|-2
|
||||
1.3.6.1.2.1.43.8.2.1.4.1.2|2|170000
|
||||
1.3.6.1.2.1.43.8.2.1.4.1.3|2|85000
|
||||
1.3.6.1.2.1.43.8.2.1.4.1.5|2|85000
|
||||
1.3.6.1.2.1.43.8.2.1.5.1.1|2|-2
|
||||
1.3.6.1.2.1.43.8.2.1.5.1.2|2|110000
|
||||
1.3.6.1.2.1.43.8.2.1.5.1.3|2|110000
|
||||
1.3.6.1.2.1.43.8.2.1.5.1.5|2|110000
|
||||
1.3.6.1.2.1.43.8.2.1.6.1.1|2|-2
|
||||
1.3.6.1.2.1.43.8.2.1.6.1.2|2|170000
|
||||
1.3.6.1.2.1.43.8.2.1.6.1.3|2|85000
|
||||
1.3.6.1.2.1.43.8.2.1.6.1.5|2|85000
|
||||
1.3.6.1.2.1.43.8.2.1.7.1.1|2|-2
|
||||
1.3.6.1.2.1.43.8.2.1.7.1.2|2|110000
|
||||
1.3.6.1.2.1.43.8.2.1.7.1.3|2|110000
|
||||
1.3.6.1.2.1.43.8.2.1.7.1.5|2|110000
|
||||
1.3.6.1.2.1.43.8.2.1.8.1.1|2|8
|
||||
1.3.6.1.2.1.43.8.2.1.8.1.2|2|8
|
||||
1.3.6.1.2.1.43.8.2.1.8.1.3|2|8
|
||||
1.3.6.1.2.1.43.8.2.1.8.1.5|2|8
|
||||
1.3.6.1.2.1.43.8.2.1.9.1.1|2|100
|
||||
1.3.6.1.2.1.43.8.2.1.9.1.2|2|500
|
||||
1.3.6.1.2.1.43.8.2.1.9.1.3|2|1500
|
||||
1.3.6.1.2.1.43.8.2.1.9.1.5|2|2000
|
||||
1.3.6.1.2.1.43.8.2.1.10.1.1|2|0
|
||||
1.3.6.1.2.1.43.8.2.1.10.1.2|2|200
|
||||
1.3.6.1.2.1.43.8.2.1.10.1.3|2|300
|
||||
1.3.6.1.2.1.43.8.2.1.10.1.5|2|400
|
||||
1.3.6.1.2.1.43.8.2.1.11.1.1|2|9
|
||||
1.3.6.1.2.1.43.8.2.1.11.1.2|2|0
|
||||
1.3.6.1.2.1.43.8.2.1.11.1.3|2|0
|
||||
1.3.6.1.2.1.43.8.2.1.11.1.5|2|0
|
||||
1.3.6.1.2.1.43.8.2.1.12.1.1|4|Any
|
||||
1.3.6.1.2.1.43.8.2.1.12.1.2|4|Plain
|
||||
1.3.6.1.2.1.43.8.2.1.12.1.3|4|Mid Weight
|
||||
1.3.6.1.2.1.43.8.2.1.12.1.5|4|Plain
|
||||
1.3.6.1.2.1.43.8.2.1.13.1.1|4|Tray 1
|
||||
1.3.6.1.2.1.43.8.2.1.13.1.2|4|Tray 2
|
||||
1.3.6.1.2.1.43.8.2.1.13.1.3|4|Tray 3
|
||||
1.3.6.1.2.1.43.8.2.1.13.1.5|4|Tray 4
|
||||
1.3.6.1.2.1.43.8.2.1.14.1.1|4|Hewlett-Packard
|
||||
1.3.6.1.2.1.43.8.2.1.14.1.2|4|Hewlett-Packard
|
||||
1.3.6.1.2.1.43.8.2.1.14.1.3|4|Hewlett-Packard
|
||||
1.3.6.1.2.1.43.8.2.1.14.1.5|4|Hewlett-Packard
|
||||
1.3.6.1.2.1.43.8.2.1.15.1.1|4|
|
||||
1.3.6.1.2.1.43.8.2.1.15.1.2|4|
|
||||
1.3.6.1.2.1.43.8.2.1.15.1.3|4|
|
||||
1.3.6.1.2.1.43.8.2.1.15.1.5|4|
|
||||
1.3.6.1.2.1.43.8.2.1.16.1.1|4|
|
||||
1.3.6.1.2.1.43.8.2.1.16.1.2|4|
|
||||
1.3.6.1.2.1.43.8.2.1.16.1.3|4|
|
||||
1.3.6.1.2.1.43.8.2.1.16.1.5|4|
|
||||
1.3.6.1.2.1.43.8.2.1.17.1.1|4|
|
||||
1.3.6.1.2.1.43.8.2.1.17.1.2|4|
|
||||
1.3.6.1.2.1.43.8.2.1.17.1.3|4|
|
||||
1.3.6.1.2.1.43.8.2.1.17.1.5|4|
|
||||
1.3.6.1.2.1.43.8.2.1.18.1.1|4|Tray 1
|
||||
1.3.6.1.2.1.43.8.2.1.18.1.2|4|Tray 2
|
||||
1.3.6.1.2.1.43.8.2.1.18.1.3|4|Tray 3
|
||||
1.3.6.1.2.1.43.8.2.1.18.1.5|4|Tray 4
|
||||
1.3.6.1.2.1.43.8.2.1.19.1.1|2|5
|
||||
1.3.6.1.2.1.43.8.2.1.19.1.2|2|5
|
||||
1.3.6.1.2.1.43.8.2.1.19.1.3|2|5
|
||||
1.3.6.1.2.1.43.8.2.1.19.1.5|2|5
|
||||
1.3.6.1.2.1.43.8.2.1.24.1.1|2|-1
|
||||
1.3.6.1.2.1.43.8.2.1.24.1.2|2|-1
|
||||
1.3.6.1.2.1.43.8.2.1.24.1.3|2|-1
|
||||
1.3.6.1.2.1.43.8.2.1.24.1.5|2|-1
|
||||
1.3.6.1.2.1.43.8.2.1.26.1.1|2|0
|
||||
1.3.6.1.2.1.43.8.2.1.26.1.2|2|0
|
||||
1.3.6.1.2.1.43.8.2.1.26.1.3|2|0
|
||||
1.3.6.1.2.1.43.8.2.1.26.1.5|2|0
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.1|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.2|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.3|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.4|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.5|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.6|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.7|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.8|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.9|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.10|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.11|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.12|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.13|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.14|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.2.1.15|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.1|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.2|2|2
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.3|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.4|2|4
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.5|2|5
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.6|2|6
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.7|2|7
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.8|2|8
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.9|2|0
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.10|2|0
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.11|2|0
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.12|2|0
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.13|2|0
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.14|2|0
|
||||
1.3.6.1.2.1.43.11.1.1.3.1.15|2|0
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.1|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.2|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.3|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.4|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.5|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.6|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.7|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.8|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.9|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.10|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.11|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.12|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.13|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.14|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.4.1.15|2|3
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.1|2|21
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.2|2|21
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.3|2|21
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.4|2|21
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.5|2|9
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.6|2|9
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.7|2|9
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.8|2|9
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.9|2|20
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.10|2|15
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.11|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.12|2|1
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.13|2|32
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.14|2|32
|
||||
1.3.6.1.2.1.43.11.1.1.5.1.15|2|32
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.1|4x|426C61636B20436172747269646765200a333820333220333720343120323020343820353020323020343320343620333320333020333020343120303020
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.2|4x|4379616E2043617274726964676520380a333220333720343120323020343820353020323020343320343620333320333020333120343120303020
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.3|4x|4D6167656E74612043617274726964670a3635203230203338203332203337203431203230203438203530203230203433203436203333203330203333203431200a303020
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.4|4x|59656C6C6F77204361727472696467650a323020333820333220333720343120323020343820353020323020343320343620333320333020333220343120303020
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.5|4x|426C61636B204472756D2038323841200a343820353020323020343320343620333320333520333820343120303020
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.6|4x|4379616E204472756D203832384120480a353020323020343320343620333320333520333920343120303020
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.7|4x|4D6167656E7461204472756D203832380a343120323020343820353020323020343320343620333320333620333520343120303020
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.8|4x|59656C6C6F77204472756D20383238410a323020343820353020323020343320343620333320333620333420343120303020
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.9|4x|5472616E73666572204B6974204850200a343420333720343820333120333420343120303020
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.10|4x|4675736572204B6974204850203131300a3536203244203433203331203445203335203334203431203243203230203332203332203330203536203244203433200a333120344520333520333820343120303020
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.11|4x|446F63756D656E7420466565646572200a344220363920373420323020343820353020323020343320333120353020333720333020343120303020
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.12|4x|436C65616E20526F6C6C6572732048500a323020344520364620364520363520303020
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.13|4x|537461706C65722031204850204338300a333920333120343120303020
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.14|4x|537461706C65722032204850204343330a333820333320343120303020
|
||||
1.3.6.1.2.1.43.11.1.1.6.1.15|4x|537461706C65722033204850204343330a3338203333203431203030
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.1|2|19
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.2|2|19
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.3|2|19
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.4|2|19
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.5|2|19
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.6|2|19
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.7|2|19
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.8|2|19
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.9|2|19
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.10|2|19
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.11|2|19
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.12|2|19
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.13|2|18
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.14|2|18
|
||||
1.3.6.1.2.1.43.11.1.1.7.1.15|2|18
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.1|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.2|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.3|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.4|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.5|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.6|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.7|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.8|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.9|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.10|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.11|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.12|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.13|2|-2
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.14|2|-2
|
||||
1.3.6.1.2.1.43.11.1.1.8.1.15|2|-2
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.1|2|92
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.2|2|16
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.3|2|100
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.4|2|70
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.5|2|53
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.6|2|58
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.7|2|58
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.8|2|58
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.9|2|89
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.10|2|84
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.11|2|99
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.12|2|97
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.13|2|-3
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.14|2|-3
|
||||
1.3.6.1.2.1.43.11.1.1.9.1.15|2|-3
|
||||
1.3.6.1.4.1.11.2.3.9.1.1.7.0|4|MFG:Hewlett-Packard;CMD:PJL,PCLXL,PCL,PDF,POSTSCRIPT;CID:HPLJPDLV1;1284.4DL:4d,4e,1;MDL:HP Color LaserJet flow MFP M880;CLS:PRINTER;DES:HP Color LaserJet flow MFP M880;MCT:MF;MCL:EN;MCV:2.3;
|
Reference in New Issue
Block a user