2016-09-24 17:58:16 +03:00

8 lines
160 B
PHP

<?php
if (starts_with($sysObjectId, '.1.3.6.1.4.1.2636')) {
$os = 'junos';
} elseif (str_contains($sysDescr, 'kernel JUNOS', true)) {
$os = 'junos';
}