Merge pull request #4086 from adaniels21487/issue-4085

Added OS support for Cisco VCS (Expressway) Appliances.
This commit is contained in:
Neil Lathwood
2016-08-17 21:14:57 +01:00
committed by GitHub
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';
}
}