|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2023-05-10 08:03 UTC] tproductonline at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 16:00:01 2025 UTC |
Description: ------------ snmprealwalk in PHP 7.2.5 returns different results than snmpwalk as well as the underlying system library (net-snmp) Test script: --------------- <?php $vlannum = 732; $switch = "192.168.1.2"; $physifary = snmprealwalk($switch, "public@$vlannum", ".1.3.6.1.2.1.17.4.3.1.2"); $physifaryz = snmpwalk($switch, "public@$vlannum", ".1.3.6.1.2.1.17.4.3.1.2"); var_dump($physifary); var_dump($physifaryz); Expected result: ---------------- Both arrays should contain the same information with different formatting. This is what the Linux snmpwalk returns: [meh@nessie html]# snmpwalk -v1 -c public@732 192.168.1.2 .1.3.6.1.2.1.17.4.3.1.2 BRIDGE-MIB::dot1dTpFdbPort.'......' = INTEGER: 800 BRIDGE-MIB::dot1dTpFdbPort.'......' = INTEGER: 1793 Actual result: -------------- array(1) { ["BRIDGE-MIB::dot1dTpFdbPort.'......'"]=> string(13) "INTEGER: 1793" } array(2) { [0]=> string(12) "INTEGER: 800" [1]=> string(13) "INTEGER: 1793" }