2017-06-22 14:45:18 -06:00
|
|
|
<?php
|
|
|
|
|
|
2018-01-07 05:00:47 +00:00
|
|
|
preg_match('/BenuOS\, (.*)\n.Product\:(.*)\n.*\n.*\n Chassis Type \:(.*)/', $device['sysDescr'], $matches);
|
2017-06-22 14:45:18 -06:00
|
|
|
|
2020-09-21 15:43:38 +02:00
|
|
|
$version = $matches['1'];
|
2017-06-22 14:45:18 -06:00
|
|
|
$features = $matches['2'];
|
|
|
|
|
$hardware = $matches['3'];
|
|
|
|
|
|
|
|
|
|
$serial = snmp_get($device, 'benuChassisId.0', '-Ovqs', 'BENU-CHASSIS-MIB');
|