Files
librenms-librenms/includes/discovery/os/ios.inc.php
T
2011-03-16 17:52:29 +00:00

13 lines
351 B
PHP
Executable File

<?php
if (!$os)
{
if (strstr($sysDescr, "Cisco Internetwork Operating System Software")) { $os = "ios"; }
else if (strstr($sysDescr, "IOS (tm)")) { $os = "ios"; }
else if (strstr($sysDescr, "Cisco IOS Software")) { $os = "ios"; }
if (strstr($sysDescr, "IOS-XE")) { $os = "iosxe"; }
if (strstr($sysDescr, "IOS XR")) { $os = "iosxr"; }
}
?>