mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
1ab6f3cded
git-svn-id: http://www.observium.org/svn/observer/trunk@505 61d68cd4-352d-0410-923a-c4978735b2b8
14 lines
509 B
PHP
Executable File
14 lines
509 B
PHP
Executable File
<?php
|
|
|
|
if(strstr($sysDescr, "x86")) { $hardware = "Generic x86"; }
|
|
if(strstr($sysDescr, "AMD64")) { $hardware = "Generic x64"; }
|
|
if(strstr($sysDescr, "Windows Version 5.2")) { $version = "2003 Server"; }
|
|
if(strstr($sysDescr, "Windows Version 6.1")) { $version = "Windows 7"; }
|
|
if(strstr($sysDescr, "Uniprocessor Free")) { $features = "Uniprocessor"; }
|
|
if(strstr($sysDescr, "Multiprocessor Free")) { $features = "Multiprocessor"; }
|
|
|
|
include("ucd-mib.inc.php");
|
|
include("hr-mib.inc.php");
|
|
|
|
?>
|