mirror of https://github.com/fail2ban/fail2ban
- Prepared for 0.4.1
git-svn-id: https://fail2ban.svn.sourceforge.net/svnroot/fail2ban/trunk@111 a942ae1a-1317-0410-a47c-b1dcaea8d6050.6 0.4.1
parent
be43f2eaeb
commit
73ff1540e8
11
CHANGELOG
11
CHANGELOG
|
@ -4,9 +4,18 @@
|
||||||
|_| \__,_|_|_/___|_.__/\__,_|_||_|
|
|_| \__,_|_|_/___|_.__/\__,_|_||_|
|
||||||
|
|
||||||
=============================================================
|
=============================================================
|
||||||
Fail2Ban (version 0.4.0) 04/24/2005
|
Fail2Ban (version 0.4.1) 06/30/2005
|
||||||
=============================================================
|
=============================================================
|
||||||
|
|
||||||
|
ver. 0.4.1 (06/30/2005) - stable
|
||||||
|
----------
|
||||||
|
- Fixed textToDNS method which generated wrong matches for
|
||||||
|
"rhost=12-xyz...". Thanks to Tom Pike
|
||||||
|
- fail2ban.conf modified for readability. Thanks to Iain Lea
|
||||||
|
- Added an initd script for Gentoo
|
||||||
|
- Changed default PID lock file location from /tmp to
|
||||||
|
/var/run
|
||||||
|
|
||||||
ver. 0.4.0 (04/24/2005) - stable
|
ver. 0.4.0 (04/24/2005) - stable
|
||||||
----------
|
----------
|
||||||
- Fixed textToDNS which did not recognize strings like
|
- Fixed textToDNS which did not recognize strings like
|
||||||
|
|
2
MANIFEST
2
MANIFEST
|
@ -17,3 +17,5 @@ confreader/configreader.py
|
||||||
utils/__init__.py
|
utils/__init__.py
|
||||||
utils/dns.py
|
utils/dns.py
|
||||||
config/fail2ban.conf.default
|
config/fail2ban.conf.default
|
||||||
|
config/gentoo-initd
|
||||||
|
config/gentoo-confd
|
||||||
|
|
16
README
16
README
|
@ -4,7 +4,7 @@
|
||||||
|_| \__,_|_|_/___|_.__/\__,_|_||_|
|
|_| \__,_|_|_/___|_.__/\__,_|_||_|
|
||||||
|
|
||||||
=============================================================
|
=============================================================
|
||||||
Fail2Ban (version 0.4.0) 04/24/2005
|
Fail2Ban (version 0.4.1) 06/30/2005
|
||||||
=============================================================
|
=============================================================
|
||||||
|
|
||||||
Fail2Ban scans log files like /var/log/pwdfail and bans IP
|
Fail2Ban scans log files like /var/log/pwdfail and bans IP
|
||||||
|
@ -58,8 +58,8 @@ Require: python-2.3 (http://www.python.org)
|
||||||
|
|
||||||
To install, just do:
|
To install, just do:
|
||||||
|
|
||||||
> tar xvfj fail2ban-0.3.1.tar.bz2
|
> tar xvfj fail2ban-0.4.1.tar.bz2
|
||||||
> cd fail2ban-0.3.1
|
> cd fail2ban-0.4.1
|
||||||
> python setup.py install
|
> python setup.py install
|
||||||
|
|
||||||
This will install Fail2Ban into /usr/lib/fail2ban. The
|
This will install Fail2Ban into /usr/lib/fail2ban. The
|
||||||
|
@ -75,6 +75,13 @@ to see if everything is alright. You can configure fail2ban
|
||||||
with a config file. Copy config/fail2ban.conf.default to
|
with a config file. Copy config/fail2ban.conf.default to
|
||||||
/etc/fail2ban.conf.
|
/etc/fail2ban.conf.
|
||||||
|
|
||||||
|
Gentoo users can use the initd script available in config/.
|
||||||
|
Copy gentoo-initd to /etc/init.d/fail2ban and gentoo-confd
|
||||||
|
to /etc/conf.d/fail2ban. You can start fail2ban and add it
|
||||||
|
to your default runlevel:
|
||||||
|
|
||||||
|
> /etc/init.d/fail2ban start
|
||||||
|
> rc-update add fail2ban default
|
||||||
|
|
||||||
Configuration:
|
Configuration:
|
||||||
--------------
|
--------------
|
||||||
|
@ -113,7 +120,8 @@ Cyril Jaquier: <lostcontrol@users.sourceforge.net>
|
||||||
Thanks:
|
Thanks:
|
||||||
-------
|
-------
|
||||||
|
|
||||||
Kévin Drapel, Marvin Rouge, Sireyessire, Robert Edeker
|
Kévin Drapel, Marvin Rouge, Sireyessire, Robert Edeker,
|
||||||
|
Tom Pike, Iain Lea
|
||||||
|
|
||||||
|
|
||||||
License:
|
License:
|
||||||
|
|
|
@ -24,4 +24,4 @@ __date__ = "$Date$"
|
||||||
__copyright__ = "Copyright (c) 2004 Cyril Jaquier"
|
__copyright__ = "Copyright (c) 2004 Cyril Jaquier"
|
||||||
__license__ = "GPL"
|
__license__ = "GPL"
|
||||||
|
|
||||||
version = "0.4.0"
|
version = "0.4.1"
|
||||||
|
|
Loading…
Reference in New Issue