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
		
			
				
	
	
		
			22 lines
		
	
	
		
			660 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			660 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
if (strpos($poll_device['sysDescr'], "olive"))
 | 
						|
{
 | 
						|
  $hardware = "Olive";
 | 
						|
  $serial = "";
 | 
						|
}
 | 
						|
else
 | 
						|
{
 | 
						|
  $junose_hardware  = snmp_get($device, "sysObjectID.0", "-Ovqs", "+Juniper-Products-MIB", $config['install_dir']."/mibs/junose");
 | 
						|
  $junose_version   = snmp_get($device, "juniSystemSwVersion.0", "-Ovqs", "+Juniper-System-MIB", $config['install_dir']."/mibs/junose");
 | 
						|
  $junose_serial    = "";
 | 
						|
 | 
						|
  $hardware = "Juniper " . rewrite_junose_hardware($junose_hardware);
 | 
						|
}
 | 
						|
 | 
						|
list($version) = explode(" ", $junose_version);
 | 
						|
list(,$version) =  explode("(", $version);
 | 
						|
list($features) = explode("]", $junose_version);
 | 
						|
list(,$features) =  explode("[", $features);
 | 
						|
 | 
						|
?>
 |