mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
10 lines
287 B
PHP
10 lines
287 B
PHP
<?php
|
|
|
|
$oid_list = ['bcnSysIdOSRelease.0', 'bcnSysIdSerial.0', 'bcnSysIdPlatform.0'];
|
|
|
|
$bcn = snmp_get_multi_oid($device, $oid_list, '-OUQs', 'BCN-SYSTEM-MIB');
|
|
|
|
$version = $bcn[0]['bcnSysIdOSRelease.0'];
|
|
$hardware = $bcn[0]['bcnSysIdPlatform.0'];
|
|
$serial = $bcn[0]['bcnSysIdSerial.0'];
|