From fa5f5750da943ec33c6c5a2104cba83ad355f7da Mon Sep 17 00:00:00 2001 From: Rob Gormley Date: Thu, 5 Nov 2015 10:34:51 -0800 Subject: [PATCH] Add MIBs for other Cisco SB switches (SG200 series) --- includes/discovery/os/ciscosb.inc.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/includes/discovery/os/ciscosb.inc.php b/includes/discovery/os/ciscosb.inc.php index ce35a8ff86..1c55ba38de 100644 --- a/includes/discovery/os/ciscosb.inc.php +++ b/includes/discovery/os/ciscosb.inc.php @@ -7,4 +7,16 @@ if (!$os) { if (strstr($sysObjectId, '.1.3.6.1.4.1.9.6.1.83')) { $os = 'ciscosb'; } + + if (strstr($sysObjectId, '.1.3.6.1.4.1.9.6.1.85')) { + $os = 'ciscosb'; + } + + if (strstr($sysObjectId, '.1.3.6.1.4.1.9.6.1.88')) { + $os = 'ciscosb'; + } + + if (strstr($sysObjectId, '.1.3.6.1.4.1.9.6.1.89')) { + $os = 'ciscosb'; + } }