mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
moar printer supportings, recognize more mge ups + dropdowns on devices list page now only list things from the selected device type, if any
git-svn-id: http://www.observium.org/svn/observer/trunk@1483 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
45
includes/polling/os/brother.inc.php
Normal file
45
includes/polling/os/brother.inc.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
# SNMPv2-SMI::enterprises.2435.2.4.3.2435.5.13.3.0 = STRING: "Brother HL-2070N series"
|
||||
$hardware = trim(snmp_get($device, "1.3.6.1.4.1.2435.2.4.3.2435.5.13.3.0", "-OQv", "", ""),'" ');
|
||||
|
||||
# SNMPv2-SMI::enterprises.11.2.3.9.4.2.1.1.3.3.0 = STRING: "A7J913764"
|
||||
$serial = trim(snmp_get($device, "1.3.6.1.4.1.11.2.3.9.4.2.1.1.3.3.0", "-OQv", "", ""),'" ');
|
||||
|
||||
# SNMPv2-SMI::enterprises.2435.2.4.3.1240.6.5.0 = STRING: "Firmware Ver.1.33 (06.07.21)"
|
||||
$version = trim(snmp_get($device, "1.3.6.1.4.1.2435.2.4.3.1240.6.5.0", "-OQv", "", ""),'" ');
|
||||
|
||||
preg_match("/Ver\.(.*) \(/", $version, $matches);
|
||||
if ($matches[1]) { $version = $matches[1]; }
|
||||
|
||||
# SNMPv2-SMI::enterprises.2435.2.3.9.1.1.7.0 = STRING: "MFG:Brother;CMD:HBP,PJL,PCL,PCLXL,POSTSCRIPT;MDL:MFC-8440;CLS:PRINTER;"
|
||||
if ($hardware == '')
|
||||
{
|
||||
$jdinfo = explode(';',trim(snmp_get($device, "1.3.6.1.4.1.2435.2.3.9.1.1.7.0", "-OQv", "", ""),'" '));
|
||||
|
||||
foreach ($jdinfo as $jdi)
|
||||
{
|
||||
list($key,$value) = explode(':',$jdi);
|
||||
$jetdirect[$key] = $value;
|
||||
}
|
||||
|
||||
$hardware = $jetdirect['MDL'];
|
||||
}
|
||||
|
||||
# SNMPv2-SMI::enterprises.2435.2.3.9.4.2.1.5.5.1.0 = STRING: "000A5J431816"
|
||||
if ($serial == '')
|
||||
{
|
||||
$serial = trim(snmp_get($device, "1.3.6.1.4.1.2435.2.3.9.4.2.1.5.5.1.0", "-OQv", "", ""),'" ');
|
||||
}
|
||||
|
||||
# Strip off useless brand fields
|
||||
$hardware = str_replace('Brother ','',$hardware);
|
||||
$hardware = str_ireplace(' series','',$hardware);
|
||||
|
||||
if (isHexString($serial))
|
||||
{
|
||||
# Sometimes firmware outputs serial as hex-string
|
||||
$serial = snmp_hexstring($serial);
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user