Alcatel-Lucent OmniSwich (Aruba rebranded) is detected like AOS device #338

This commit is contained in:
Toni Cunyat
2014-11-03 16:40:20 +01:00
parent 9a3d5bc560
commit eefb5eb974

View File

@@ -4,7 +4,15 @@
if (!$os)
{
if (strpos($sysObjectId, ".1.3.6.1.4.1.6486.800") !== FALSE) { $os = "aos"; }
if (strpos($sysObjectId, ".1.3.6.1.4.1.6486.800") !== FALSE) {
if (strstr($sysDescr, "AOS-W")) {
$os = "arubaos";
}
else {
$os = "aos";
}
}
if (strpos($sysObjectId, ".1.3.6.1.4.1.6527.1.3") !== FALSE) { $os = "timos"; }
// FIXME: make these less specific.