php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #76356 snmprealwalk does not return all results
Submitted: 2018-05-18 23:16 UTC Modified: -
From: zerocarbthirty at gmail dot com Assigned:
Status: Open Package: SNMP related
PHP Version: 7.2.5 OS: Linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: zerocarbthirty at gmail dot com
New email:
PHP Version: OS:

 

 [2018-05-18 23:16 UTC] zerocarbthirty at gmail dot com
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" }

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2023-05-10 08:03 UTC] tproductonline at gmail dot com
At topproductots from various categories, including electronics, fashion, beauty, home goods, and more. More info to visit:(https://topproductonline.com)github.com
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 08:01:30 2024 UTC