mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Alcatel-Lucent OmniSwich (Aruba rebranded) is detected like AOS device #338
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user