mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-13 00:16:21 +02:00
7 lines
320 B
PHP
7 lines
320 B
PHP
<?php
|
|
|
|
$serial = snmp_get($device, 'productSerialNum.0', '-Ovq', 'NETAPP-MIB');
|
|
$hardware = snmp_get($device, 'productModel.0', '-Ovq', 'NETAPP-MIB');
|
|
list($version,) = split(':', snmp_get($device, 'productVersion.0', '-Ovq', 'NETAPP-MIB'));
|
|
$version = str_replace('NetApp Release ', '', $version);
|