mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Merge pull request #4086 from adaniels21487/issue-4085
Added OS support for Cisco VCS (Expressway) Appliances.
This commit is contained in:
@ -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';
|
||||
|
7
includes/discovery/os/vcs.inc.php
Normal file
7
includes/discovery/os/vcs.inc.php
Normal file
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
if (!$os) {
|
||||
if (strstr($sysObjectId, '.1.3.6.1.4.1.5596.130.6.4.1')) {
|
||||
$os = 'vcs';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user