mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-28 16:04:35 +02:00
14 lines
337 B
PHP
Executable File
14 lines
337 B
PHP
Executable File
<?php
|
|
|
|
if(!$os) {
|
|
|
|
if(strstr($sysDescr, "Cisco Internetwork Operating System Software")) { $os = "ios"; }
|
|
if(strstr($sysDescr, "IOS (tm)")) { $os = "ios"; }
|
|
if(strstr($sysDescr, "Cisco IOS Software")) { $os = "ios"; }
|
|
if(strstr($sysDescr, "IOS-XE")) { $os = "iosxe"; }
|
|
if(strstr($sysDescr, "IOS XR")) { $os = "iosxr"; }
|
|
|
|
}
|
|
|
|
?>
|