mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* refactor: More mib based polling into yaml config files * doc update * Update MIB-based-polling.md
6 lines
236 B
PHP
6 lines
236 B
PHP
<?php
|
|
|
|
if (str_contains($sysDescr, array('Cisco Internetwork Operating System Software', 'IOS (tm)', 'Cisco IOS Software', 'Global Site Selector')) && !str_contains($sysDescr, array('IOS-XE', 'X86_64_LINUX_IOSD'))) {
|
|
$os = 'ios';
|
|
}
|