Added OS support for Cisco VCS (Expressway) Appliances.

This commit is contained in:
Aaron Daniels
2016-06-02 17:21:01 +10:00
parent 6512bff04e
commit d16035e86a
2 changed files with 12 additions and 0 deletions

View File

@@ -574,6 +574,11 @@ $config['os'][$os]['over'][4]['graph'] = 'device_ciscowlc_numclients';
$config['os'][$os]['over'][4]['text'] = 'Number of Clients';
$config['os'][$os]['icon'] = 'cisco';
$os = 'vcs';
$config['os'][$os]['text'] = 'Video Communication Server';
$config['os'][$os]['type'] = 'collaboration';
$config['os'][$os]['icon'] = 'cisco';
$os = 'acano';
$config['os'][$os]['group'] = 'cisco';
$config['os'][$os]['text'] = 'Acano OS';

View File

@@ -0,0 +1,7 @@
<?php
if (!$os) {
if (strstr($sysObjectId, '.1.3.6.1.4.1.5596.130.6.4.1')) {
$os = 'vcs';
}
}