|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2017-01-04 16:20 UTC] layer1 dot 0 at gmx dot de
Description:
------------
Hi, i try to fetch SNMP Data from JVM running SNMP Adaptor on Port 1161.
It's not working via php cause the SNMP Class and SNMP functions always seem to use port 161.
snmpwalk on OS level with port 1161 (same data) is working fine!
i tried:
$syscontact = snmpget($host, "127.0.0.1:1161", ".1");
var_dump($syscontact);
It retruns false
$session = new SNMP( SNMP::VERSION_2C, "127.0.0.1:1161" , "public" );
var_dump($session);
object(SNMP)#1 (8) { ["info"]=> array(4) { ["hostname"]=> string(14) "127.0.0.1:1161" ["port"]=> int(1161) ["timeout"]=> int(-1) ["retries"]=> int(-1) } ["max_oids"]=> NULL ["valueretrieval"]=> int(0) ["quick_print"]=> bool(false) ["enum_print"]=> bool(false) ["oid_output_format"]=> int(0) ["oid_increasing_check"]=> bool(true) ["exceptions_enabled"]=> int(0) }
Here i would expect hostname = 127.0.0.1 but it is hostname + port. Maybe this is not working correctly.
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Thu Jan 01 03:00:01 2026 UTC |
sorry for c&p error i tried: $syscontact = snmpget("127.0.0.1:1161", "public", ".1"); var_dump($syscontact); Returns false