mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-13 00:16:21 +02:00
8 lines
272 B
PHP
8 lines
272 B
PHP
<?php
|
|
|
|
$Descr_string = $poll_device['sysDescr'];
|
|
$Descr_chopper = preg_split('/[ ]+/', "$Descr_string");
|
|
|
|
$version = 'Firmware '.$Descr_chopper[1];
|
|
$hardware = $Descr_chopper[0].' Rev. '.str_replace('"', '', snmp_get($device, '1.3.6.1.4.1.171.10.76.10.1.2.0', '-Oqv'));
|