mirror of https://github.com/fail2ban/fail2ban
- Updated
git-svn-id: https://fail2ban.svn.sourceforge.net/svnroot/fail2ban/branches/FAIL2BAN-0_5@208 a942ae1a-1317-0410-a47c-b1dcaea8d6050.5
parent
1d09db666d
commit
0366e98291
23
CHANGELOG
23
CHANGELOG
|
@ -4,9 +4,30 @@
|
||||||
|_| \__,_|_|_/___|_.__/\__,_|_||_|
|
|_| \__,_|_|_/___|_.__/\__,_|_||_|
|
||||||
|
|
||||||
=============================================================
|
=============================================================
|
||||||
Fail2Ban (version 0.5.4) 2005/09/13
|
Fail2Ban (version 0.5.5) 2005/10/26
|
||||||
=============================================================
|
=============================================================
|
||||||
|
|
||||||
|
ver. 0.5.5 (2005/10/26) - beta
|
||||||
|
----------
|
||||||
|
- Propagated patches introduced by Debian maintainer
|
||||||
|
(Yaroslav Halchenko):
|
||||||
|
* Introduced fwcheck option to verify consistency of the
|
||||||
|
chains. Implemented automatic restart of fail2ban main
|
||||||
|
function in case check of fwban or fwunban command failed
|
||||||
|
(closes: #329163, #331695). (Introduced patch was further
|
||||||
|
adjusted by upstream author).
|
||||||
|
* Added -f command line parameter for [findtime].
|
||||||
|
* Added a cleanup of firewall rules on emergency shutdown
|
||||||
|
when unknown exception is catched.
|
||||||
|
* Fail2ban should not crash now if a wrong file name is
|
||||||
|
specified in config.
|
||||||
|
* reordered code a bit so that log targets are setup right
|
||||||
|
after background and then only loglevel (verbose, debug)
|
||||||
|
is processed, so the warning could be seen in the logs
|
||||||
|
* Added a keyword <section> in parsing of the subject and
|
||||||
|
the body of an email sent out by fail2ban (closes:
|
||||||
|
#330311)
|
||||||
|
|
||||||
ver. 0.5.4 (2005/09/13) - beta
|
ver. 0.5.4 (2005/09/13) - beta
|
||||||
----------
|
----------
|
||||||
- Fixed bug #1286222.
|
- Fixed bug #1286222.
|
||||||
|
|
10
TODO
10
TODO
|
@ -4,7 +4,7 @@
|
||||||
|_| \__,_|_|_/___|_.__/\__,_|_||_|
|
|_| \__,_|_|_/___|_.__/\__,_|_||_|
|
||||||
|
|
||||||
=============================================================
|
=============================================================
|
||||||
ToDo
|
ToDo $Revision$
|
||||||
=============================================================
|
=============================================================
|
||||||
|
|
||||||
See Feature Request Tracking System at SourceForge.net
|
See Feature Request Tracking System at SourceForge.net
|
||||||
|
@ -12,3 +12,11 @@ See Feature Request Tracking System at SourceForge.net
|
||||||
- improve installation process (better prefix support)
|
- improve installation process (better prefix support)
|
||||||
- install Fail2ban into /usr/share
|
- install Fail2ban into /usr/share
|
||||||
- better configuration files
|
- better configuration files
|
||||||
|
- add a check to see if the time of the log messages is
|
||||||
|
correctly detected (valid regexp)
|
||||||
|
- split configuration files in /etc/fail2ban/services.d
|
||||||
|
Example: /etc/fail2ban/services.d/apache
|
||||||
|
- template for common services in /etc/fail2ban/scripts.d
|
||||||
|
Example: /etc/fail2ban/scripts.d/apache
|
||||||
|
- remove debug mode (root check)
|
||||||
|
- better return values in function
|
||||||
|
|
|
@ -33,10 +33,13 @@ display this help message
|
||||||
kill a currently running Fail2Ban instance
|
kill a currently running Fail2Ban instance
|
||||||
.TP
|
.TP
|
||||||
\fB\-r\fR \fIVALUE\fR
|
\fB\-r\fR \fIVALUE\fR
|
||||||
allow a max of \fIVALUE\fR password failure
|
allow a max of \fIVALUE\fR password failure [maxfailures]
|
||||||
.TP
|
.TP
|
||||||
\fB\-t\fR \fITIME\fR
|
\fB\-t\fR \fITIME\fR
|
||||||
ban IP for \fITIME\fR seconds
|
ban IP for \fITIME\fR seconds [bantime]
|
||||||
|
.TP
|
||||||
|
\fB\-f\fR \fITIME\fR
|
||||||
|
lifetime in seconds of failed entry [findtime]
|
||||||
.TP
|
.TP
|
||||||
\fB\-v\fR
|
\fB\-v\fR
|
||||||
verbose. Use twice for greater effect
|
verbose. Use twice for greater effect
|
||||||
|
|
Loading…
Reference in New Issue