librenms/includes/osdiscovery/discover-3com.php
Tom Laermans 60edc0f8d9 also detect 3com superstack type
git-svn-id: http://www.observium.org/svn/observer/trunk@1317 61d68cd4-352d-0410-923a-c4978735b2b8
2010-07-09 08:53:05 +00:00

11 lines
150 B
PHP

<?php
if(!$os) {
if(strstr($sysDescr, "3Com Switch ")) { $os = "3com"; }
else if(strstr($sysDescr, "3Com SuperStack")) { $os = "3com"; }
}
?>