summaryrefslogtreecommitdiffstats
path: root/lib/Smokeping/probes/CiscoRTTMonTcpConnect.pm
diff options
context:
space:
mode:
authorTobi Oetiker <tobi@oetiker.ch>2010-03-10 06:53:36 +0100
committerTobi Oetiker <tobi@oetiker.ch>2010-03-10 06:53:36 +0100
commitbf2a5c2c1de2a1b20348bfb6c1f49b850f0db4f6 (patch)
tree179f2b9715f29263b57419eee52819a32d8cd577 /lib/Smokeping/probes/CiscoRTTMonTcpConnect.pm
parent98421ee8ba3adf8545f4a35e673ff8ef6881b65e (diff)
downloadsmokeping-bf2a5c2c1de2a1b20348bfb6c1f49b850f0db4f6.tar.gz
smokeping-bf2a5c2c1de2a1b20348bfb6c1f49b850f0db4f6.tar.xz
port the timeout fix from CiscoRTTMon ICMPPing to DNS and TcpConnect versions
Diffstat (limited to 'lib/Smokeping/probes/CiscoRTTMonTcpConnect.pm')
-rw-r--r--lib/Smokeping/probes/CiscoRTTMonTcpConnect.pm10
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/Smokeping/probes/CiscoRTTMonTcpConnect.pm b/lib/Smokeping/probes/CiscoRTTMonTcpConnect.pm
index 0e76e96..3c2f2b7 100644
--- a/lib/Smokeping/probes/CiscoRTTMonTcpConnect.pm
+++ b/lib/Smokeping/probes/CiscoRTTMonTcpConnect.pm
@@ -54,7 +54,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 establishes unnecessary connections, i.e. more than configured in the "pings" variable, because the RTTMon MIB only allows to set a total time for all connections in one measurement run (one "life"). Currently the probe sets the life duration to "pings"*2+3 seconds (2 secs is the timeout value hardcoded into this probe).
+The probe establishes unnecessary connections, i.e. more than configured in the "pings" variable, because the RTTMon MIB only allows to set a total time for all connections in one measurement run (one "life"). Currently the probe sets the life duration to "pings"*5+3 seconds (5 secs is the timeout value hardcoded into this probe).
DOC
see_also => <<DOC,
L<http://oss.oetiker.ch/smokeping/>
@@ -70,7 +70,7 @@ DOC
}
}
-my $pingtimeout =2;
+my $pingtimeout = 5;
sub new($$$)
{
@@ -274,6 +274,12 @@ The (optional) port parameter lets you configure the destination TCP
port on the host. The default is the http port 80.
DOC
},
+ timeout => {
+ _re => '\d+',
+ _example => 15,
+ _default => $pingtimeout+10,
+ _doc => "How long a single RTTMon TcpConnect '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,