mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
8 lines
201 B
PHP
8 lines
201 B
PHP
<?php
|
|
|
|
if (str_contains($sysDescr, array('RB260GS', 'RB250GS', 'RB260GSP'))) {
|
|
if (str_contains(snmp_get($device, 'SNMPv2-MIB::sysName.0', '-Oqv', ''), 'MikroTik')) {
|
|
$os = 'swos';
|
|
}
|
|
}
|