~ubuntu-branches/ubuntu/oneiric/smokeping/oneiric-updates

« back to all changes in this revision

Viewing changes to doc/probes/AnotherSSH.pm.html

  • Committer: Bazaar Package Importer
  • Author(s): Niko Tyni
  • Date: 2006-10-26 21:45:56 UTC
  • mfrom: (1.2.2 upstream) (2.1.5 edgy)
  • Revision ID: james.westby@ubuntu.com-20061026214556-5jnpiesx4vdijmu6
* debian/patches/15_clean_makefile.dpatch:
  + remove unneeded and potentially unsecure include paths.
* debian/patches: selected patches from the upstream SVN repository
  + 40_password.dpatch: skip reading the password file when running as a CGI.
  + 50_ldap.dpatch: Make the 'scope' option in the LDAP probe actually work.
  + 60_fping.dpatch:
    * Support the '-S' (set source address, see #198486) fping option.
    * Don't try to execute fping when running as a CGI.
  + 70_syslog.dpatch: Don't die silently if syslogd is unavailable.
    (Closes: #395056)
* Remove all the autogenerated documentation at clean time, to properly
  undo the effects of the 'build' target.
* Install example configuration files for documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
 
<html xmlns="http://www.w3.org/1999/xhtml">
3
 
<head>
4
 
<title>probes/AnotherSSH.pm</title>
5
 
<link rev="made" href="mailto:dws@ee.ethz.ch" />
6
 
</head>
7
 
 
8
 
<body style="background-color: white">
9
 
 
10
 
<p><a name="__index__"></a></p>
11
 
<!-- INDEX BEGIN -->
12
 
<!--
13
 
 
14
 
<ul>
15
 
 
16
 
        <li><a href="#name">NAME</a></li>
17
 
        <li><a href="#synopsis">SYNOPSIS</a></li>
18
 
        <li><a href="#description">DESCRIPTION</a></li>
19
 
        <li><a href="#author">AUTHOR</a></li>
20
 
</ul>
21
 
-->
22
 
<!-- INDEX END -->
23
 
 
24
 
<p>
25
 
</p>
26
 
<h1><a name="name">NAME</a></h1>
27
 
<p>probes::AnotherSSH - Another SSH probe</p>
28
 
<p>
29
 
</p>
30
 
<hr />
31
 
<h1><a name="synopsis">SYNOPSIS</a></h1>
32
 
<pre>
33
 
 *** Probes ***
34
 
 + AnotherSSH</pre>
35
 
<pre>
36
 
 *** Targets *** 
37
 
 probe = AnotherSSH 
38
 
 forks = 10</pre>
39
 
<pre>
40
 
 + First
41
 
 menu = First
42
 
 title = First Target
43
 
 # ....</pre>
44
 
<pre>
45
 
 ++ PROBE_CONF
46
 
 greeting = SSH-Latecy-Measurement-Sorry-for-the-logfile-entry
47
 
 sleeptime = 500000
48
 
 interval = established
49
 
 timeout = 5</pre>
50
 
<p>
51
 
</p>
52
 
<hr />
53
 
<h1><a name="description">DESCRIPTION</a></h1>
54
 
<p>Latency measurement using SSH. This generates Logfile messages on the other 
55
 
Host, so get permission from the owner first!</p>
56
 
<dl>
57
 
<dt><strong><a name="item_forks">forks</a></strong><br />
58
 
</dt>
59
 
<dd>
60
 
The number of concurrent processes to be run. See probes::basefork(3pm)
61
 
for details.
62
 
</dd>
63
 
<p></p></dl>
64
 
<p>Supported target-level probe variables:</p>
65
 
<dl>
66
 
<dt><strong><a name="item_greeting">greeting</a></strong><br />
67
 
</dt>
68
 
<dd>
69
 
Greeting string to send to the SSH Server. This will appear in the Logfile. 
70
 
Use this to make clear, who you are and what you are doing to avoid confusion.
71
 
</dd>
72
 
<dd>
73
 
<p>Also, don't use something that is a valid version string. This probe assumes
74
 
that the connection gets terminated because of protocol mismatch.</p>
75
 
</dd>
76
 
<p></p>
77
 
<dt><strong><a name="item_sleeptime">sleeptime</a></strong><br />
78
 
</dt>
79
 
<dd>
80
 
Time to sleep between two measurements in microsends. Default is 500000.
81
 
</dd>
82
 
<p></p>
83
 
<dt><strong><a name="item_interval">interval</a></strong><br />
84
 
</dt>
85
 
<dd>
86
 
The interval to measure
87
 
</dd>
88
 
<dl>
89
 
<dt><strong><a name="item_connect">connect</a></strong><br />
90
 
</dt>
91
 
<dd>
92
 
Interval between <a href="#item_connect"><code>connect()</code></a> and the greeting string from the host.
93
 
</dd>
94
 
<p></p>
95
 
<dt><strong><a name="item_established">established</a></strong><br />
96
 
</dt>
97
 
<dd>
98
 
Interval between our greeting message and the end of the connection 
99
 
because of Protocol mismatch. This is the default.
100
 
</dd>
101
 
<p></p>
102
 
<dt><strong><a name="item_complete">complete</a></strong><br />
103
 
</dt>
104
 
<dd>
105
 
From <a href="#item_connect"><code>connect()</code></a> to the end of the connection.
106
 
</dd>
107
 
<p></p></dl>
108
 
<dt><strong><a name="item_timeout">timeout</a></strong><br />
109
 
</dt>
110
 
<dd>
111
 
Timeout for the connection. Default is 5.
112
 
</dd>
113
 
<p></p>
114
 
<dt><strong><a name="item_port">port</a></strong><br />
115
 
</dt>
116
 
<dd>
117
 
Connect to this port. Default is 22.
118
 
</dd>
119
 
<p></p></dl>
120
 
<p>
121
 
</p>
122
 
<hr />
123
 
<h1><a name="author">AUTHOR</a></h1>
124
 
<p>Christoph Heine &lt;<a href="mailto:Christoph.Heine@HaDiKo.DE">Christoph.Heine@HaDiKo.DE</a>&gt;</p>
125
 
 
126
 
</body>
127
 
 
128
 
</html>