mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* refactor: Centralize MIB include directory specification The default is now: ``` $config['mib_dir'].'/mibdirname:'.$config['mib_dir'] ``` This means we exclude OS mibs and only use ours (we could prepend `+` if we want to include os mibs. All snmp calls should only include the name of the subdirectory under the mibs directory. * Remove d_echo from Proc Fix snmpsim tests.
17 lines
591 B
PHP
17 lines
591 B
PHP
<?php
|
|
|
|
$jun_ver = snmp_get($device, '.1.3.6.1.2.1.25.6.3.1.2.2', '-Oqv', 'HOST-RESOURCES-MIB');
|
|
|
|
if (strpos($poll_device['sysDescr'], 'olive')) {
|
|
$hardware = 'Olive';
|
|
$serial = '';
|
|
} else {
|
|
$hardware = snmp_get($device, 'sysObjectID.0', '-Ovqs', '+Juniper-Products-MIB:JUNIPER-CHASSIS-DEFINES-MIB', 'junos');
|
|
$hardware = 'Juniper '.rewrite_junos_hardware($hardware);
|
|
$serial = snmp_get($device, '.1.3.6.1.4.1.2636.3.1.3.0', '-OQv', '+JUNIPER-MIB', 'junos');
|
|
}
|
|
|
|
list($version) = explode(']', $jun_ver);
|
|
list(,$version) = explode('[', $version);
|
|
$features = '';
|