mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
62 lines
2.9 KiB
PHP
62 lines
2.9 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/*
|
||
|
|
* E5-1xx portion of LibreNMS Calix OS Polling module
|
||
|
|
*
|
||
|
|
* Copyright (c) 2016 Chris A. Evans <[email protected]>
|
||
|
|
*
|
||
|
|
* This program is free software: you can redistribute it and/or modify it
|
||
|
|
* under the terms of the GNU General Public License as published by the
|
||
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
||
|
|
* option) any later version. Please see LICENSE.txt at the top level of
|
||
|
|
* the source code distribution for details.
|
||
|
|
*/
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
if (strstr($device['sysObjectID'], '.6321.1.2.3')) { // E5-1xx Series
|
||
|
|
if (strpos($device['sysObjectID'], '.1.3.6.1.4.1.6321.1.2.3.4') !== false) { // E5-121
|
||
|
|
$version = snmp_get($device, 'iesSlotModuleFWVersion.0.0', '-Oqv', '+E5-121-IESCOMMON-MIB', 'calix');
|
||
|
|
$hardware = snmp_get($device, 'iesSlotModuleDescr.0.0', '-Ovqs', '+E5-121-IESCOMMON-MIB', 'calix');
|
||
|
|
$serial = snmp_get($device, 'iesChassisSerialNumber.0', '-OQv', '+E5-121-IESCOMMON-MIB', 'calix');
|
||
|
|
$features = '';
|
||
|
|
|
||
|
|
$version = str_replace('"', '', $version);
|
||
|
|
$serial = str_replace('"', '', $serial);
|
||
|
|
$hardware = str_replace('"', '', $hardware);
|
||
|
|
}
|
||
|
|
|
||
|
|
if (strpos($device['sysObjectID'], '.1.3.6.1.4.1.6321.1.2.3.3') !== false) { // E5-120
|
||
|
|
$version = snmp_get($device, 'iesSlotModuleFWVersion.0.0', '-Oqv', '+E5-120-IESCOMMON-MIB', 'calix');
|
||
|
|
$hardware = snmp_get($device, 'iesSlotModuleDescr.0.0', '-Ovqs', '+E5-120-IESCOMMON-MIB', 'calix');
|
||
|
|
$serial = snmp_get($device, 'iesChassisSerialNumber.0', '-OQv', '+E5-120-IESCOMMON-MIB', 'calix');
|
||
|
|
$features = '';
|
||
|
|
|
||
|
|
$version = str_replace('"', '', $version);
|
||
|
|
$serial = str_replace('"', '', $serial);
|
||
|
|
$hardware = str_replace('"', '', $hardware);
|
||
|
|
}
|
||
|
|
|
||
|
|
if (strpos($device['sysObjectID'], '.1.3.6.1.4.1.6321.1.2.3.2') !== false) { // E5-111
|
||
|
|
$version = snmp_get($device, 'iesSlotModuleFWVersion.0.0', '-Oqv', '+E5-111-IESCOMMON-MIB', 'calix');
|
||
|
|
$hardware = snmp_get($device, 'iesSlotModuleDescr.0.0', '-Ovqs', '+E5-111-IESCOMMON-MIB', 'calix');
|
||
|
|
$serial = snmp_get($device, 'iesChassisSerialNumber.0', '-OQv', '+E5-111-IESCOMMON-MIB', 'calix');
|
||
|
|
$features = '';
|
||
|
|
|
||
|
|
$version = str_replace('"', '', $version);
|
||
|
|
$serial = str_replace('"', '', $serial);
|
||
|
|
$hardware = str_replace('"', '', $hardware);
|
||
|
|
}
|
||
|
|
|
||
|
|
if (strpos($device['sysObjectID'], '.1.3.6.1.4.1.6321.1.2.3.1') !== false) { // E5-110
|
||
|
|
$version = snmp_get($device, 'iesSlotModuleFWVersion.0.0', '-Oqv', '+E5-110-IESCOMMON-MIB', 'calix');
|
||
|
|
$hardware = snmp_get($device, 'iesSlotModuleDescr.0.0', '-Ovqs', '+E5-110-IESCOMMON-MIB', 'calix');
|
||
|
|
$serial = snmp_get($device, 'iesChassisSerialNumber.0', '-OQv', '+E5-110-IESCOMMON-MIB', 'calix');
|
||
|
|
$features = '';
|
||
|
|
|
||
|
|
$version = str_replace('"', '', $version);
|
||
|
|
$serial = str_replace('"', '', $serial);
|
||
|
|
$hardware = str_replace('"', '', $hardware);
|
||
|
|
}
|
||
|
|
}
|