Files
librenms/includes/osdiscovery/discover-ios.php
T
2008-03-12 11:15:58 +00:00

12 lines
231 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"; }
}
?>