Edit report at https://bugs.php.net/bug.php?id=65422&edit=1

 ID:                 65422
 Updated by:         lytbo...@php.net
 Reported by:        pkryon at yahoo dot com
 Summary:            Error when calling multiple snmp3 functions
 Status:             Feedback
 Type:               Bug
 Package:            SNMP related
 Operating System:   Debian Wheezy
 PHP Version:        5.5.1
 Assigned To:        lytboris
 Block user comment: N
 Private report:     N

 New Comment:

Forget previous comment :)


Previous Comments:
------------------------------------------------------------------------
[2013-08-30 17:11:01] lytbo...@php.net

Please note that you have 'sha' written in low case chars. Try replacing them 
to SHA (the same way you use in snmpget).

------------------------------------------------------------------------
[2013-08-30 15:48:59] pkryon at yahoo dot com

Reopen

------------------------------------------------------------------------
[2013-08-30 15:31:04] pkryon at yahoo dot com

Were you by chance polling a single host multiple time to test?  Because that 
seems to work.  More tests below...


bugtest1.php:

<?php

// bugtest1.php - Test using built-in snmp3_get to multiple hosts
// result: fail

echo 
snmp3_get('cseoc1260','[REMOVED]','authNoPriv','sha','[REMOVED]','','','SNMPv2-MIB::sysLocation.0')."\n";

echo 
snmp3_get('cseoc1264','[REMOVED]','authNoPriv','sha','[REMOVED]','','','SNMPv2-MIB::sysLocation.0')."\n";

echo 
snmp3_get('cseoc2260','[REMOVED]','authNoPriv','sha','[REMOVED]','','','SNMPv2-MIB::sysLocation.0')."\n";

?>

Result:

[REMOVED]:/var/www/scripts$ php bugtest1.php
STRING: EOC Building 1 (Room 1260)
PHP Warning:  snmp3_get(): No response from 172.19.12.12 in 
/var/www/scripts/bugtest1.php on line 8

PHP Warning:  snmp3_get(): No response from 172.19.12.21 in 
/var/www/scripts/bugtest1.php on line 10


bugtest2.php:

<?php

// bugtest2.php - Test using built-in snmp3_get to same host
// result: pass

echo 
snmp3_get('cseoc1260','[REMOVED]','authNoPriv','sha','[REMOVED]','','','SNMPv2-MIB::sysLocation.0')."\n";

echo 
snmp3_get('cseoc1260','[REMOVED]','authNoPriv','sha','[REMOVED]','','','SNMPv2-MIB::sysLocation.0')."\n";

echo 
snmp3_get('cseoc1260','[REMOVED]','authNoPriv','sha','[REMOVED]','','','SNMPv2-MIB::sysLocation.0')."\n";

?>

Result:
[REMOVED]:/var/www/scripts$ php bugtest2.php
STRING: EOC Building 1 (Room 1260)
STRING: EOC Building 1 (Room 1260)
STRING: EOC Building 1 (Room 1260)


bugtest3.php:

<?php

// bugtest3.php - Test using NetSNMP snmpget on multiple hosts
// result: pass

echo shell_exec("snmpget -O v -v 3 -l AuthNoPriv -u [REMOVED] -a SHA -A 
[REMOVED] cseoc1260 SNMPv2-MIB::sysLocation.0");

echo shell_exec("snmpget -O v -v 3 -l AuthNoPriv -u [REMOVED] -a SHA -A 
[REMOVED] cseoc1264 SNMPv2-MIB::sysLocation.0");

echo shell_exec("snmpget -O v -v 3 -l AuthNoPriv -u [REMOVED] -a SHA -A 
[REMOVED] cseoc2260 SNMPv2-MIB::sysLocation.0");

?>

Result:
[REMOVED]:/var/www/scripts$ php bugtest3.php
STRING: EOC Building 1 (Room 1260)
STRING: EOC Building 1 (Room 1264)
STRING: EOC Building 2 (Room 2260)


bugtest4.php:

<?php

// bugtest4.php - Test using built-in snmpget on multiple hosts
// result: pass

echo snmpget('cseoc1260','[REMOVED]','SNMPv2-MIB::sysLocation.0')."\n";

echo snmpget('cseoc1264','[REMOVED]','SNMPv2-MIB::sysLocation.0')."\n";

echo snmpget('cseoc2260','[REMOVED]','SNMPv2-MIB::sysLocation.0')."\n";

?>

Result:

[REMOVED]:/var/www/scripts$ php bugtest4.php
STRING: EOC Building 1 (Room 1260)
STRING: EOC Building 1 (Room 1264)
STRING: EOC Building 2 (Room 2260)

------------------------------------------------------------------------
[2013-08-30 06:09:25] lytbo...@php.net

Not enough information was provided for us to be able
to handle this bug. Please re-read the instructions at
http://bugs.php.net/how-to-report.php

If you can provide more information, feel free to add it
to this bug and change the status back to "Open".

Thank you for your interest in PHP.


I can not reproduce this bug in my test environment.
Please post Net-SNMP snmpget commands with their results prooving that your 2nd 
& 3rd hosts are configured to work with SNMPv3 the same way that your 1st host.

------------------------------------------------------------------------
[2013-08-08 20:42:55] pkryon at yahoo dot com

Description:
------------
Test script below returns only the first snmp3_get.  The next two fail with a 
PHP Warning.  

This appears to be a problem in all snmp3 functions but seems to work as 
expected with the snmp/snmp2 functions.

Test script:
---------------
<?php

echo 
snmp3_get('device1','snmpuser','authNoPriv','sha','snmppass','','','SNMPv2-MIB::sysLocation.0')."\n";

echo 
snmp3_get('device2','snmpuser','authNoPriv','sha','snmppass','','','SNMPv2-MIB::sysLocation.0')."\n";

echo 
snmp3_get('device3','snmpuser','authNoPriv','sha','snmppass','','','SNMPv2-MIB::sysLocation.0')."\n";

?>

Expected result:
----------------
STRING: Location 1
STRING: Location 2
STRING: Location 3

Actual result:
--------------
STRING: Location 1
PHP Warning:  snmp3_get(): No response from 192.168.0.2 in /var/www/test4.php 
on line 5

PHP Warning:  snmp3_get(): No response from 192.168.0.3 in /var/www/test4.php 
on line 7


------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=65422&edit=1

Reply via email to