php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #35371 Wrong Values retriving Object with SNMP
Submitted: 2005-11-24 16:44 UTC Modified: 2005-12-22 01:00 UTC
From: matteo dot bertato at hiport dot it Assigned:
Status: No Feedback Package: SNMP related
PHP Version: 4.4.1 OS: Fedora Core 2,4
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
41 + 15 = ?
Subscribe to this entry?

 
 [2005-11-24 16:44 UTC] matteo dot bertato at hiport dot it
Description:
------------
Retriving SNMP Object value in SNMP_VALUE_OBJECT mode,
give me wrong result, despite using default mode gives correct result.

(Tested with Net_SNMP 5.2.1.2 on FC4)
(Tested with Net_SNMP 5.1.1 on FC2)
PHP compiled with --with-snmp --enable-ucd-snmp-hack


Reproduce code:
---------------
<?php
print_R(snmpget('1.1.1.1',
'public','1.3.6.1.2.1.2.2.1.6.2')."\n");
snmp_set_valueretrieval(SNMP_VALUE_OBJECT);
print_R(snmpget('1.1.1.1','public','1.3.6.1.2.1.2.2.1.6.2'));
// Getting Mac Address of Second Network Interface
// This is a Standard MIB object
?>


Expected result:
----------------
STRING: 0:50:e8:1:46:e6
stdClass Object
(
    [type] => 4
    [value] => 0:50:e8:1:46:e6
)



Actual result:
--------------
stdClass Object
(
    [type] => 4
    [value] => P?F?
)

STRING: 0:50:e8:1:46:e6




Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-12-14 06:30 UTC] sniper@php.net
Please try using this CVS snapshot:

  http://snaps.php.net/php5.1-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5.1-win32-latest.zip


 [2005-12-22 01:00 UTC] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
 [2005-12-30 16:58 UTC] larryjadams at comcast dot net
Sniper,

This problem can be fixed with a little function to convert HEX output to Ascii.  I have to use this today in some of my functions.  Not a big patch.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Apr 24 04:01:30 2024 UTC