|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-08-22 15:04 UTC] nept_uno at hotmail dot com
[2008-11-21 16:36 UTC] jani@php.net
[2008-11-29 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 05:00:01 2025 UTC |
Description: ------------ Hello. I've found that snmprealwalk, snwmp2_real_walk, snmpwalkoid are not returning the entire oid list from the mib. They miss out many oid. On my test machine it doesn't go further than the OID .1.3.6.1.2.1.25.6.3.1.5.160. A test with a python snmwalk would give out oid to number .1.3.6.1.4.1.77.1.4.1.0. There are approx 100 oids that are left out... I don't know why tough... Reproduce code: --------------- You will need a snmp client. This is a local test. $res = snmprealwalk('localhost', 'public', null); while (list($oid, $data) = each($res)) echo "$oid: $data <br>"; Expected result: ---------------- A huge list of oids...