2017-06-13 22:20:12 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* powerlogic.inc.php
|
|
|
|
*
|
|
|
|
* LibreNMS OS poller module for Schneider PowerLogic
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @package LibreNMS
|
|
|
|
* @link http://librenms.org
|
|
|
|
* @copyright 2017 Neil Lathwood
|
|
|
|
* @author Neil Lathwood <neil@lathwood.co.uk>
|
|
|
|
*/
|
|
|
|
|
2018-12-16 07:42:50 -06:00
|
|
|
$data = snmp_get_multi_oid($device, ['midSerialNumber.1', 'midFirmwareVersion.1', 'midModelNumber.1', 'midDeviceName.1'], '-OQs', 'PM8ECCMIB');
|
2017-06-13 22:20:12 +01:00
|
|
|
$serial = trim($data['midSerialNumber.1'], '"');
|
|
|
|
$version = trim($data['midFirmwareVersion.1'], '"');
|
|
|
|
$hardware = trim($data['midDeviceName.1'], '"');
|
|
|
|
unset($data);
|