mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
11 lines
346 B
PHP
11 lines
346 B
PHP
<?php
|
|
|
|
preg_match('/^(.*) Device, Compiled /', $device['sysDescr'], $matches);
|
|
$hardware = $matches[1];
|
|
|
|
preg_match('/^ SoftWare Version (?:' . $hardware . '_)?(.*)$/m', $device['sysDescr'], $matches);
|
|
$version = $matches[1];
|
|
|
|
preg_match('/^ (?: Serial No\.:|Device serial number )(.*)$/m', $device['sysDescr'], $matches);
|
|
$serial = $matches[1];
|