Added DNOS detection for additional N3000 switches

This commit is contained in:
Casey Schoonover
2016-06-22 13:13:05 -05:00
parent c8d9abe448
commit a23e7cffc1

View File

@@ -25,5 +25,14 @@ if (!$os) {
//Dell N4064F
$os = 'dnos';
}
if (strstr($sysObjectId, '.1.3.6.1.4.1.674.10895.3058')) {
//Dell N3048P
$os = 'dnos';
}
if (strstr($sysObjectId, '.1.3.6.1.4.1.674.10895.3060')) {
//Dell N3024P
$os = 'dnos';
}
}