Observium_CE/includes/polling/os/xerox-printer.inc.php

37 lines
921 B
PHP

<?php
/**
* Observium
*
* This file is part of Observium.
*
* @package observium
* @subpackage poller
* @copyright (C) 2006-2013 Adam Armstrong, (C) 2013-2019 Observium Limited
*
*/
// ...253.8.51.1.2.1.20.1 = STRING: "MFG:Xerox;CMD:Adobe PostScript 3,PCL;MDL:Phaser 4510N;CLS:Printer;DES:Xerox Phaser 4510 Laser Printer, PostScript 3, Letter/A4 Size"
$xinfo = explode(';', snmp_get($device, '1.3.6.1.4.1.253.8.51.1.2.1.20.1', '-OQv'));
foreach ($xinfo as $xi)
{
list($key,$value) = explode(':',$xi);
$xerox[$key] = $value;
}
list($hardware) = explode(',',$xerox['DES']);
// SNMPv2-SMI::enterprises.236.11.5.1.1.1.1.0 = STRING: "Xerox Phaser 3200MFP"
// SNMPv2-SMI::enterprises.236.11.5.1.1.1.2.0 = STRING: "1.15"
if ($hardware == '')
{
$hardware = snmp_get($device, '1.3.6.1.4.1.236.11.5.1.1.1.1.0', '-OQv');
}
$version = snmp_get($device, '1.3.6.1.4.1.236.11.5.1.1.1.2.0', '-OQv');
// EOF