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