summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGES5
-rw-r--r--lib/Smokeping/probes/CiscoRTTMonEchoICMP.pm10
2 files changed, 13 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 0bee7a1..64bc8d7 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,8 @@
+* bandaid fix for timeout issue in CiscoRTTMonEchoICMP probe ...
+ since the probe needs a longer timeout, the basefork parent needs to wait
+ longer too ... a local timeout configurable with higher default should fix
+ this. -- tobi
+
* make the build system compatible with HTML::Parser >= 3.64
--niko, reported as Debian bug #560562
diff --git a/lib/Smokeping/probes/CiscoRTTMonEchoICMP.pm b/lib/Smokeping/probes/CiscoRTTMonEchoICMP.pm
index 0f422d5..d17735e 100644
--- a/lib/Smokeping/probes/CiscoRTTMonEchoICMP.pm
+++ b/lib/Smokeping/probes/CiscoRTTMonEchoICMP.pm
@@ -59,7 +59,7 @@ If you want to be a bit more restrictive with SNMP write access to the router, t
The above configuration grants SNMP read-write only to 10.37.3.5 (the smokeping host) and only to the ciscoRttMon MIB tree. The probe does not need access to SNMP variables outside the RttMon tree.
DOC
bugs => <<DOC,
-The probe sends unnecessary pings, i.e. more than configured in the "pings" variable, because the RTTMon MIB only allows to set a total time for all pings in one measurement run (one "life"). Currently the probe sets the life duration to "pings"*2+3 seconds (2 secs is the ping timeout value hardcoded into this probe).
+The probe sends unnecessary pings, i.e. more than configured in the "pings" variable, because the RTTMon MIB only allows to set a total time for all pings in one measurement run (one "life"). Currently the probe sets the life duration to "pings"*5+3 seconds (5 secs is the ping timeout value hardcoded into this probe).
DOC
see_also => <<DOC,
L<http://oss.oetiker.ch/smokeping/>
@@ -75,7 +75,7 @@ DOC
}
}
-my $pingtimeout =2;
+my $pingtimeout = 5;
sub new($$$)
{
@@ -274,6 +274,12 @@ The (mandatory) ioshost parameter specifies the Cisco router, which will
execute the pings, as well as the SNMP community string on the router.
DOC
},
+ timeout => {
+ _re => '\d+',
+ _example => 15,
+ _default => $pingtimeout+10,
+ _doc => "How long a single RTTMonEcho ICMP 'ping' take at maximum plus 10 seconds to spare. Since we control our own timeout the only purpose of this is to not have us killed by the ping method from basefork.",
+ },
iosint => {
_example => '10.33.22.11',
_doc => <<DOC,