mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
10 lines
274 B
PHP
10 lines
274 B
PHP
<?php
|
|
|
|
preg_match('/BenuOS\, (.*)\n.Product\:(.*)\n.*\n.*\n Chassis Type \:(.*)/', $device['sysDescr'], $matches);
|
|
|
|
$version = $matches['1'];
|
|
$features = $matches['2'];
|
|
$hardware = $matches['3'];
|
|
|
|
$serial = snmp_get($device, 'benuChassisId.0', '-Ovqs', 'BENU-CHASSIS-MIB');
|