2011-09-08 13:36:32 +00:00
|
|
|
<?php
|
|
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
$fnSysVersion = snmp_get($device, '.1.3.6.1.4.1.388.11.2.2.1.3.2.0', '-Ovq');
|
2020-09-21 15:43:38 +02:00
|
|
|
$serial = trim(snmp_get($device, '.1.3.6.1.4.1.388.11.2.2.1.1.0', '-Ovq'), '"');
|
|
|
|
|
$version = trim(snmp_get($device, '.1.3.6.1.4.1.388.11.2.2.1.3.2.0', '-Ovq'), '"');
|
2015-07-10 13:36:21 +02:00
|
|
|
// preg_match("/HW=(^\s]+)/",$sysDescr,$hardwarematches);
|
2018-01-07 05:00:47 +00:00
|
|
|
preg_match('/\s+[^\s]+/', $device['sysDescr'], $hardwarematches);
|
2015-07-10 13:36:21 +02:00
|
|
|
$hardware = $hardwarematches[0];
|