Files
librenms-librenms/includes/polling/os/arrayos.inc.php
Neil Lathwood 14a2d290ae newdevice: Add support for Array Networks ArrayOS #5257 (#5604)
* newdevice: Add support for Array Networks ArrayOS #5257

* preg_replace -> str_replace
2017-01-25 16:02:54 -06:00

32 lines
1.1 KiB
PHP

<?php
/**
* arrayos.inc.php
*
* LibreNMS os polling module for Array OS
*
* 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 2016 Neil Lathwood
* @author Neil Lathwood <neil@lathwood.co.uk>
*/
list($hardware, $version) = explode(' - ', $poll_device['sysDescr']);
$hardware = str_replace('Hardware:', '', $hardware);
preg_match('/\.([0-9\.]+) /', $version, $matches);
$version = $matches[1];
$serial = snmp_get($device, 'serialNumber.0', '-Oqv', 'CA-SNMP-MIB8');