2020-09-09 17:06:11 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Beagleboard.php
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
* @link http://librenms.org
|
|
|
|
* @copyright 2017 Tony Murray
|
|
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace LibreNMS\OS;
|
|
|
|
|
2020-09-18 08:12:07 -05:00
|
|
|
use App\Models\Device;
|
2020-09-09 17:06:11 -05:00
|
|
|
use LibreNMS\Interfaces\Discovery\OSDiscovery;
|
|
|
|
use LibreNMS\OS;
|
|
|
|
|
|
|
|
class Beagleboard extends OS implements
|
|
|
|
OSDiscovery
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Retrieve basic information about the OS / device
|
|
|
|
*/
|
2020-09-18 08:12:07 -05:00
|
|
|
public function discoverOS(Device $device): void
|
2020-09-09 17:06:11 -05:00
|
|
|
{
|
|
|
|
$oids = ['NET-SNMP-EXTEND-MIB::nsExtendOutputFull."distro"', 'NET-SNMP-EXTEND-MIB::nsExtendOutputFull."hardware"'];
|
2020-09-18 08:12:07 -05:00
|
|
|
$info = snmp_get_multi($this->getDeviceArray(), $oids);
|
2020-09-21 15:59:34 +02:00
|
|
|
$device->version = str_replace('BeagleBoard.org ', '', $info['"distro"']['nsExtendOutputFull']);
|
2020-09-09 17:06:11 -05:00
|
|
|
$device->hardware = $info['"hardware"']['nsExtendOutputFull'];
|
|
|
|
}
|
|
|
|
}
|