2017-10-10 15:18:47 +02:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* apsoluteos.inc.php
|
|
|
|
|
*
|
|
|
|
|
* LibreNMS os poller module for DefensePro ( APSoluteOS )
|
|
|
|
|
*
|
|
|
|
|
* 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 Simone Fini
|
|
|
|
|
* @author Simone Fini<tomfordfirst@gmail.com>
|
|
|
|
|
*/
|
2018-12-16 07:42:50 -06:00
|
|
|
$oids = ['genGroupHWVersion.0', 'rndSerialNumber.0', 'rndApsoluteOSVersion.0', 'rdwrDevicePortsConfig.0'];
|
2017-10-10 15:18:47 +02:00
|
|
|
$data = snmp_get_multi($device, $oids, '-OQs', 'RADWARE-MIB');
|
|
|
|
|
$serial = trim($data[0]['rndSerialNumber'], '"');
|
|
|
|
|
$version = trim($data[0]['rndApsoluteOSVersion'], '"');
|
|
|
|
|
$hardware = trim($data[0]['genGroupHWVersion'], '"');
|
|
|
|
|
$features = 'Ver. '.trim($data[0]['rdwrDevicePortsConfig'], '"');
|