Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > d97b4c58d8763adc61a7b020afdfd868 > files > 143

smokeping-2.4.2-9mdv2010.0.noarch.rpm

<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Smokeping/probes/TacacsPlus</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rev="made" href="mailto:root@localhost" />
</head>

<body style="background-color: white">

<p><a name="__index__"></a></p>
<!-- INDEX BEGIN -->
<!--

<ul>

	<li><a href="#name">NAME</a></li>
	<li><a href="#overview">OVERVIEW</a></li>
	<li><a href="#synopsis">SYNOPSIS</a></li>
	<li><a href="#description">DESCRIPTION</a></li>
	<li><a href="#variables">VARIABLES</a></li>
	<li><a href="#authors">AUTHORS</a></li>
	<li><a href="#bugs">BUGS</a></li>
</ul>
-->
<!-- INDEX END -->

<p>
</p>
<h1><a name="name">NAME</a></h1>
<p>Smokeping::probes::TacacsPlus - a TacacsPlus authentication probe for SmokePing</p>
<p>
</p>
<hr />
<h1><a name="overview">OVERVIEW</a></h1>
<p>Measures TacacsPlus authentication latency for SmokePing</p>
<p>
</p>
<hr />
<h1><a name="synopsis">SYNOPSIS</a></h1>
<pre>
 *** Probes ***</pre>
<pre>
 +TacacsPlus</pre>
<pre>
 forks = 5
 offset = 50%
 passwordfile = /some/place/secret
 secretfile = /another/place/secret
 step = 300</pre>
<pre>
 # The following variables can be overridden in each target section
 authtype = CHAP
 mininterval = 1
 password = test-password
 pings = 5
 port = 49
 secret = test-secret
 timeout = 5
 username = test-user # mandatory</pre>
<pre>
 # [...]</pre>
<pre>
 *** Targets ***</pre>
<pre>
 probe = TacacsPlus # if this should be the default probe</pre>
<pre>
 # [...]</pre>
<pre>
 + mytarget
 # probe = TacacsPlus # if the default probe is something else
 host = my.host
 authtype = CHAP
 mininterval = 1
 password = test-password
 pings = 5
 port = 49
 secret = test-secret
 timeout = 5
 username = test-user # mandatory</pre>
<p>
</p>
<hr />
<h1><a name="description">DESCRIPTION</a></h1>
<p>This probe measures TacacsPlus authentication latency for SmokePing.</p>
<p>The username to be tested is specified in either the probe-specific or the 
target-specific variable `username', with the target-specific one overriding
the probe-specific one.</p>
<p>The password can be specified either (in order of precedence, with
the latter overriding the former) in the probe-specific variable
`password', in an external file or in the target-specific variable
`password'.  The location of this file is given in the probe-specific
variable `passwordfile'. See Smokeping::probes::passwordchecker(3pm) for the
format of this file (summary: colon-separated triplets of the form
`&lt;host&gt;:&lt;username&gt;:&lt;password&gt;')</p>
<p>The TacacsPlus protocol requires a shared secret between the server and the client.
This secret can be specified either (in order of precedence, with the latter
overriding the former) in the probe-specific variable `secret', in an external file
or in the target-specific variable `secret'.
This external file is located by the probe-specific variable `secretfile', and it should
contain whitespace-separated pairs of the form `&lt;host&gt; &lt;secret&gt;'. Comments and blank lines
are OK.</p>
<p>The default TacacsPlus authentication type is ASCII.  PAP and CHAP are also available.
See the Authen::TacacsPlus documentation for more information;</p>
<p>The probe tries to be nice to the server and does not send authentication
requests more frequently than once every X seconds, where X is the value
of the target-specific ``min_interval'' variable (1 by default).</p>
<p>
</p>
<hr />
<h1><a name="variables">VARIABLES</a></h1>
<p>Supported probe-specific variables:</p>
<dl>
<dt><strong><a name="item_forks">forks</a></strong>

</dt><dd>
<p>Run this many concurrent processes at maximum</p>
<p>Example value: 5</p>
<p>Default value: 5</p>

</dd><dt><strong><a name="item_offset">offset</a></strong>

</dt><dd>
<p>If you run many probes concurrently you may want to prevent them from
hitting your network all at the same time. Using the probe-specific
offset parameter you can change the point in time when each probe will
be run. Offset is specified in % of total interval, or alternatively as
'random', and the offset from the 'General' section is used if nothing
is specified here. Note that this does NOT influence the rrds itself,
it is just a matter of when data acqusition is initiated.
(This variable is only applicable if the variable 'concurrentprobes' is set
in the 'General' section.)</p>
<p>Example value: 50%</p>

</dd><dt><strong><a name="item_passwordfile">passwordfile</a></strong>

</dt><dd>
<p>Location of the file containing usernames and passwords.</p>
<p>Example value: /some/place/secret</p>

</dd><dt><strong><a name="item_secretfile">secretfile</a></strong>

</dt><dd>
<p>A file containing the TacacsPlus shared secrets for the targets. It should contain
whitespace-separated pairs of the form `&lt;host&gt; &lt;secret&gt;'. Comments and blank lines
are OK.</p>
<p>Example value: /another/place/secret</p>

</dd><dt><strong><a name="item_step">step</a></strong>

</dt><dd>
<p>Duration of the base interval that this probe should use, if different
from the one specified in the 'Database' section. Note that the step in
the RRD files is fixed when they are originally generated, and if you
change the step parameter afterwards, you'll have to delete the old RRD
files or somehow convert them. (This variable is only applicable if
the variable 'concurrentprobes' is set in the 'General' section.)</p>
<p>Example value: 300</p>

</dd></dl>
<p>Supported target-specific variables:</p>
<dl>
<dt><strong><a name="item_authtype">authtype</a></strong>

</dt><dd>
<p>The TacacsPlus Authentication type:ASCII(default), CHAP, PAP</p>
<p>Example value: CHAP</p>
<p>Default value: ASCII</p>

</dd><dt><strong><a name="item_mininterval">mininterval</a></strong>

</dt><dd>
<p>The minimum interval between each authentication request sent, in (possibly fractional) seconds.</p>
<p>Default value: 1</p>

</dd><dt><strong><a name="item_password">password</a></strong>

</dt><dd>
<p>The password for the user, if not present in the password file.</p>
<p>Example value: test-password</p>

</dd><dt><strong><a name="item_pings">pings</a></strong>

</dt><dd>
<p>How many pings should be sent to each target, if different from the global
value specified in the Database section. Note that the number of pings in
the RRD files is fixed when they are originally generated, and if you
change this parameter afterwards, you'll have to delete the old RRD
files or somehow convert them.</p>
<p>Example value: 5</p>

</dd><dt><strong><a name="item_port">port</a></strong>

</dt><dd>
<p>The TacacsPlus port to be used</p>
<p>Example value: 49</p>
<p>Default value: 49</p>

</dd><dt><strong><a name="item_secret">secret</a></strong>

</dt><dd>
<p>The TacacsPlus shared secret for the target, if not present in the secrets file.</p>
<p>Example value: test-secret</p>

</dd><dt><strong><a name="item_timeout">timeout</a></strong>

</dt><dd>
<p>Timeout in seconds for the TacacsPlus queries.</p>
<p>Default value: 5</p>

</dd><dt><strong><a name="item_username">username</a></strong>

</dt><dd>
<p>The username to be tested.</p>
<p>Example value: test-user</p>
<p>This setting is mandatory.</p>

</dd></dl>
<p>
</p>
<hr />
<h1><a name="authors">AUTHORS</a></h1>
<p>Gary Mikula &lt;<a href="mailto:g2ugzm@hotmail.com">g2ugzm@hotmail.com</a>&gt;</p>
<p>
</p>
<hr />
<h1><a name="bugs">BUGS</a></h1>
<p>Not as yet....</p>

</body>

</html>