mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
git-svn-id: http://www.observium.org/svn/observer/trunk@3031 61d68cd4-352d-0410-923a-c4978735b2b8
19 lines
640 B
PHP
19 lines
640 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", $config['install_dir']."/mibs/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", "+".$config['install_dir']."/mibs/junos");
|
|
}
|
|
|
|
list($version) = explode("]", $jun_ver);
|
|
list(,$version) = explode("[", $version);
|
|
$features = "";
|
|
|
|
?>
|