Added support for Juniper EX2500

This commit is contained in:
Ibrahim Tachijian
2016-03-16 16:08:50 +01:00
parent 57339c4221
commit 282fb891d0
2 changed files with 14 additions and 0 deletions

View File

@@ -639,6 +639,13 @@ $config['os'][$os]['over'][1]['text'] = 'CPU Usage';
$config['os'][$os]['over'][2]['graph'] = 'device_mempool';
$config['os'][$os]['over'][2]['text'] = 'Memory Usage';
$os = 'juniperex2500os';
$config['os'][$os]['text'] = 'Juniper EX2500';
$config['os'][$os]['type'] = 'network';
$config['os'][$os]['icon'] = 'junos';
$config['os'][$os]['over'][0]['graph'] = 'device_bits';
$config['os'][$os]['over'][0]['text'] = 'Device Traffic';
// Pulse Secure OS definition
$os = 'pulse';
$config['os'][$os]['text'] = 'Pulse Secure';

View File

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