mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-12 16:06:25 +02:00
96bb007d4b
git-svn-id: http://www.observium.org/svn/observer/trunk@340 61d68cd4-352d-0410-923a-c4978735b2b8
13 lines
310 B
PHP
Executable File
13 lines
310 B
PHP
Executable File
<?php
|
|
|
|
if(!$os) {
|
|
|
|
var_dump($port);
|
|
$sysObjectId = shell_exec($config['snmpget'] . " -Ovq -v2c -c ". $community ." ". $hostname.":".$port ." .1.3.6.1.2.1.1.2.0");
|
|
if(strstr($sysObjectId, "netscreen")) { $os = "ScreenOS"; } elseif (strstr($sysObjectId, "enterprises.3224.1")) { $os = "ScreenOS"; }
|
|
|
|
|
|
}
|
|
|
|
?>
|