2010-07-26 17:28:51 +00:00
|
|
|
<?php
|
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
// SNMPv2-SMI::enterprises.18334.1.1.1.1.6.2.1.0 = STRING: "KONICA MINOLTA magicolor 4650"
|
|
|
|
$hardware = trim(snmp_get($device, '1.3.6.1.4.1.18334.1.1.1.1.6.2.1.0', '-OQv', '', ''), '" ');
|
2010-07-26 17:28:51 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
// SNMPv2-SMI::enterprises.18334.1.1.1.1.6.1.0 = STRING: "1.74"
|
|
|
|
$version = trim(snmp_get($device, '1.3.6.1.4.1.18334.1.1.1.1.6.1.0', '-OQv', '', ''), '" ');
|
2010-07-26 17:28:51 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
// Strip off useless brand fields
|
|
|
|
$hardware = str_ireplace('KONICA MINOLTA ', '', $hardware);
|
2010-07-26 17:28:51 +00:00
|
|
|
$hardware = ucfirst($hardware);
|