librenms/includes/polling/os/pbn.inc.php

9 lines
226 B
PHP
Raw Normal View History

<?php
if (preg_match('/^Pacific Broadband Networks .+\n.+ Version ([^,]+), .+\n.+\n.+\nSerial num:([^,]+), .+/', $poll_device['sysDescr'], $regexp_result)) {
$version = $regexp_result[1];
$serial = $regexp_result[2];
}
?>