2007-10-07 17:16:16 +05:30
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
|
|
|
|
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd">
|
|
|
|
<refentry id='faillog.5'>
|
2007-10-07 17:16:25 +05:30
|
|
|
<!-- $Id: faillog.5.xml,v 1.7 2005/06/16 15:49:42 kloczek Exp $ -->
|
2007-10-07 17:16:16 +05:30
|
|
|
<refmeta>
|
|
|
|
<refentrytitle>faillog</refentrytitle>
|
|
|
|
<manvolnum>5</manvolnum>
|
|
|
|
</refmeta>
|
|
|
|
<refnamediv id='name'>
|
|
|
|
<refname>faillog</refname>
|
|
|
|
<refpurpose>Login failure logging file</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
|
|
|
|
<refsect1 id='description'>
|
|
|
|
<title>DESCRIPTION</title>
|
2007-10-07 17:16:25 +05:30
|
|
|
<para><filename>/var/log/faillog</filename> maintains a count of login
|
2007-10-07 17:16:16 +05:30
|
|
|
failures and the limits for each account. The file is fixed length
|
|
|
|
record, indexed by numerical UID. Each record contains the count of
|
|
|
|
login failures since the last successful login; the maximum number of
|
|
|
|
failures before the account is disabled; the line the last login
|
|
|
|
failure occured on; and the date the last login failure occured.
|
|
|
|
</para>
|
|
|
|
|
2007-10-07 17:16:25 +05:30
|
|
|
<para>The structure of the file is:</para>
|
|
|
|
<programlisting>
|
|
|
|
struct faillog {
|
|
|
|
short fail_cnt;
|
|
|
|
short fail_max;
|
|
|
|
char fail_line[12];
|
|
|
|
time_t fail_time;
|
|
|
|
};</programlisting>
|
2007-10-07 17:16:16 +05:30
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 id='files'>
|
|
|
|
<title>FILES</title>
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><filename>/var/log/faillog</filename></term>
|
|
|
|
<listitem>login failure log</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 id='see_also'>
|
|
|
|
<title>SEE ALSO</title>
|
2007-10-07 17:16:25 +05:30
|
|
|
<para><citerefentry>
|
2007-10-07 17:16:16 +05:30
|
|
|
<refentrytitle>faillog</refentrytitle><manvolnum>8</manvolnum>
|
|
|
|
</citerefentry>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 id='author'>
|
|
|
|
<title>AUTHOR</title>
|
|
|
|
<para>Julianne Frances Haugh (jockgrrl@ix.netcom.com)</para>
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
|