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

8 lines
199 B
PHP
Raw Normal View History

<?php
2016-09-24 16:30:32 +03:00
if (str_contains($sysDescr, array('JETDIRECT', 'HP ETHERNET MULTI-ENVIRONMENT'))) {
$os = 'jetdirect';
2016-09-24 17:58:16 +03:00
} elseif (starts_with($sysObjectId, '.1.3.6.1.4.1.11.1')) {
2016-09-24 16:30:32 +03:00
$os = 'jetdirect';
}