From 9b940bdba4ca2371d4b9ec79bfb98ff03f81dc52 Mon Sep 17 00:00:00 2001 From: Kevin Fleshman Date: Mon, 9 Mar 2015 10:07:01 -0700 Subject: [PATCH] Add detection for 3com Baseline switches --- includes/discovery/os/3com.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/discovery/os/3com.inc.php b/includes/discovery/os/3com.inc.php index 1993f80f05..98cce7f465 100644 --- a/includes/discovery/os/3com.inc.php +++ b/includes/discovery/os/3com.inc.php @@ -4,6 +4,7 @@ if (!$os) { if (strstr($sysDescr, "3Com Switch ")) { $os = "3com"; } else if (strstr($sysDescr, "3Com SuperStack")) { $os = "3com"; } + else if (strstr($sysDescr, "3Com Baseline")) { $os = "3com"; } } -?> \ No newline at end of file +?>