php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #53862 snmp_set_oid_output_format does not allow returning to default etc
Submitted: 2011-01-28 00:18 UTC Modified: 2012-02-25 09:43 UTC
Votes:2
Avg. Score:4.5 ± 0.5
Reproduced:2 of 2 (100.0%)
Same Version:2 (100.0%)
Same OS:2 (100.0%)
From: mloftis at wgops dot com Assigned: lytboris (profile)
Status: No Feedback Package: SNMP related
PHP Version: 5.3.5 OS: Irrelevant
Private report: No CVE-ID: None
Have you experienced this issue?
Rate the importance of this bug to you:

 [2011-01-28 00:18 UTC] mloftis at wgops dot com
Description:
------------
snmp_set_oid_output_format only allows using the FULL (SNMP_OID_OUTPUT_FULL) or 
NUMERIC (SNMP_OID_OUTPUT_NUMERIC) setting types, neither of which is the default.  
It also has no corresponding _get_ function call to query/store and return the 
setting back to "whatever it was before I touched it"

I've attached a patch which does both (from the 5.3 branch), extends the existing 
function to include the available types in UCD Net-SNMP as of 5.4 (not 
verified/checked against older ones, have not verified that setting to _NONE will 
not cause crashes).

Test script:
---------------
$rvDefault = snmp2_get('127.0.0.1','public','.1.3.6.1.2.1.1.2.0');

snmp_set_oid_output_format(SNMP_OID_OUTPUT_FULL);
$rvFull = snmp2_get('127.0.0.1','public','.1.3.6.1.2.1.1.2.0');

snmp_set_oid_output_format(SNMP_OID_OUTPUT_NUMERIC);
$rvNumeric = snmp2_get('127.0.0.1','public','.1.3.6.1.2.1.1.2.0');

echo $rvDefault."\n";
echo $rvFull."\n";
echo $rvNumeric."\n";



Expected result:
----------------
Setting either SNMP_OID_OUTPUT_FULL or SNMP_OID_OUTPUT_NUMERIC would return the 
library to it's default.  Expect there to be an snmp_get_oid_output_format call as 
well to query the current setting.

Actual result:
--------------
Neither of the available snmp_set_oid_output_format constants can return the 
library to it's default settings.  No ability to query the library for the current 
setting.

Patches

ext-snmp-output-extensions (last revision 2011-01-27 23:19 UTC by mloftis at wgops dot com)

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2011-01-31 12:53 UTC] lytboris@php.net
-Status: Open +Status: Feedback
 [2011-01-31 12:53 UTC] lytboris@php.net
Please try using this snapshot:

  http://snaps.php.net/php-trunk-latest.tar.gz
 
For Windows:

  http://windows.php.net/snapshots/

Please check OO API from trunk. It has an option to specify session-wise OID output format and more.

Sources in trunk can be compiled against downto php 5.2
 [2011-01-31 12:54 UTC] lytboris@php.net
-Assigned To: +Assigned To: lytboris
 [2012-02-25 09:43 UTC] lytboris@php.net
-Status: Feedback +Status: No Feedback
 [2012-02-25 09:43 UTC] lytboris@php.net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 16:01:29 2024 UTC