mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
6 lines
290 B
PHP
6 lines
290 B
PHP
<?php
|
|
$imco_tmp = snmp_get_multi_oid($device, ['imco3IdentModel.0','imPM1SystemIDserNumb.0', 'imco3IdentSwVersion.0'], '-OUQs', 'IMCO-BIG-MIB');
|
|
$hardware = $imco_tmp['imco3IdentModel.0'];
|
|
$serial = $imco_tmp['imPM1SystemIDserNumb.0'];
|
|
$version = $imco_tmp['imco3IdentSwVersion.0'];
|