From 98421ee8ba3adf8545f4a35e673ff8ef6881b65e Mon Sep 17 00:00:00 2001 From: Tobi Oetiker Date: Tue, 9 Mar 2010 08:19:12 +0000 Subject: raise timeout to 5s and twist basefork.pm into allowing this by providing a higher _default timeout for the probe. --- CHANGES | 5 +++++ lib/Smokeping/probes/CiscoRTTMonEchoICMP.pm | 10 ++++++++-- 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 => < < @@ -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 => <