2007-11-19 Sancho Lerena <slerena@gmail.com>
* pandora_network: Fixed problem with default retries of SNMP library. Now is 0 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@677 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
7afeecf3a6
commit
503e2694d6
|
@ -1,3 +1,7 @@
|
|||
2007-11-19 Sancho Lerena <slerena@gmail.com>
|
||||
|
||||
* pandora_network: Fixed problem with default retries of SNMP library. Now is 0
|
||||
|
||||
2007-10-09 Sancho Lerena <slerena@gmail.com>
|
||||
|
||||
* pandora_snmpconfole: Fixed parameter for snmptrapd call (%a instead %B). This
|
||||
|
|
|
@ -411,9 +411,10 @@ sub pandora_query_snmp (%$$$$) {
|
|||
my $snmp_timeout = 1000 * 1000 * $pa_config->{"networktimeout"};
|
||||
my $SESSION = new SNMP::Session (DestHost => $snmp_target,
|
||||
Timeout => $snmp_timeout,
|
||||
Retries => 0,
|
||||
Community => $snmp_community,
|
||||
Version => 1);
|
||||
if ((!defined($SESSION))&& ($snmp_community != "") && ($snmp_oid != "")) {
|
||||
if ( (!defined($SESSION)) && ($snmp_target != "") && ($snmp_community != "") && ($snmp_oid != "")) {
|
||||
logger($pa_config, "SNMP ERROR SESSION for Target $snmp_target ", 4);
|
||||
$_[4] = "1";
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue