Files
librenms-librenms/includes/discovery/os/netgear.inc.php

11 lines
190 B
PHP
Raw Normal View History

2015-05-08 19:34:24 +01:00
<?php
if (!$os) {
2015-07-13 20:10:26 +02:00
if (stristr($sysDescr, 'ProSafe')) {
$os = 'netgear';
}
2015-08-23 19:01:39 -04:00
elseif (strpos($sysObjectId, '1.3.6.1.4.1.4526') !== FALSE) {
$os = 'netgear';
}
2015-05-08 19:34:24 +01:00
}