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

8 lines
153 B
PHP
Raw Normal View History

2015-05-08 19:34:24 +01:00
<?php
2016-09-23 01:26:54 +03:00
if (str_contains($sysDescr, 'ProSafe')) {
$os = 'netgear';
2016-09-23 22:30:53 +01:00
} elseif (starts_with($sysObjectId, '.1.3.6.1.4.1.4526')) {
2016-09-23 01:26:54 +03:00
$os = 'netgear';
2015-05-08 19:34:24 +01:00
}