ID: 35371 Comment by: larryjadams at comcast dot net Reported By: matteo dot bertato at hiport dot it Status: No Feedback Bug Type: SNMP related Operating System: Fedora Core 2,4 PHP Version: 4.4.1 New Comment:
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. Previous Comments: ------------------------------------------------------------------------ [2005-12-22 01:00:04] 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-14 06:30:30] [EMAIL PROTECTED] 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-11-24 16:44:39] 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 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=35371&edit=1