mirror of https://github.com/fail2ban/fail2ban
- Updated
git-svn-id: https://fail2ban.svn.sourceforge.net/svnroot/fail2ban/trunk@234 a942ae1a-1317-0410-a47c-b1dcaea8d6050.6
parent
de7acd4d6c
commit
ad4280d506
12
CHANGELOG
12
CHANGELOG
|
@ -25,6 +25,18 @@ ver. 0.6.? (200?/??/??) - ???
|
||||||
Thanks to Patrick Börjesson
|
Thanks to Patrick Börjesson
|
||||||
- Removed 192.168.0.0/16 from ignoreip. Attacks could also
|
- Removed 192.168.0.0/16 from ignoreip. Attacks could also
|
||||||
come from the local network.
|
come from the local network.
|
||||||
|
- Robust startup: if iptables module does not get fully
|
||||||
|
initialized after startup of fail2ban, fail2ban will do
|
||||||
|
"maxreinit" attempts to initialize its own firewall. It
|
||||||
|
will sleep between attempts for "polltime" number of
|
||||||
|
seconds (closes Debian: #334272). Thanks to Yaroslav
|
||||||
|
Halchenko
|
||||||
|
- Added "interpolations" in fail2ban.conf. This is provided
|
||||||
|
by the ConfigParser module. Old configuration files still
|
||||||
|
work. Thanks to Yaroslav Halchenko
|
||||||
|
- Added initial support for hosts.deny and shorewall. Need
|
||||||
|
more testing. Please test. Thanks to kojiro from Gentoo
|
||||||
|
forum for hosts.deny support
|
||||||
|
|
||||||
ver. 0.6.0 (2005/11/20) - stable
|
ver. 0.6.0 (2005/11/20) - stable
|
||||||
----------
|
----------
|
||||||
|
|
4
MANIFEST
4
MANIFEST
|
@ -18,7 +18,9 @@ utils/process.py
|
||||||
utils/mail.py
|
utils/mail.py
|
||||||
utils/strings.py
|
utils/strings.py
|
||||||
utils/pidlock.py
|
utils/pidlock.py
|
||||||
config/fail2ban.conf.default
|
config/fail2ban.conf.iptables
|
||||||
|
config/fail2ban.conf.shorewall
|
||||||
|
config/fail2ban.conf.hostsdeny
|
||||||
config/gentoo-initd
|
config/gentoo-initd
|
||||||
config/gentoo-confd
|
config/gentoo-confd
|
||||||
config/redhat-initd
|
config/redhat-initd
|
||||||
|
|
2
README
2
README
|
@ -124,7 +124,7 @@ Thanks:
|
||||||
Kévin Drapel, Marvin Rouge, Sireyessire, Robert Edeker,
|
Kévin Drapel, Marvin Rouge, Sireyessire, Robert Edeker,
|
||||||
Tom Pike, Iain Lea, Andrey G. Grozin, Yaroslav Halchenko,
|
Tom Pike, Iain Lea, Andrey G. Grozin, Yaroslav Halchenko,
|
||||||
Jonathan Kamens, Stephen Gildea, Markus Hoffmann, Mark
|
Jonathan Kamens, Stephen Gildea, Markus Hoffmann, Mark
|
||||||
Edgington, Patrick Börjesson
|
Edgington, Patrick Börjesson, kojiro
|
||||||
|
|
||||||
License:
|
License:
|
||||||
--------
|
--------
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -78,5 +78,5 @@ if obsoleteFiles:
|
||||||
if argv[1] == "install":
|
if argv[1] == "install":
|
||||||
print
|
print
|
||||||
print "Please do not forget to update your configuration file."
|
print "Please do not forget to update your configuration file."
|
||||||
print "Use config/fail2ban.conf.default as example."
|
print "Use config/fail2ban.conf.* as example."
|
||||||
print
|
print
|
||||||
|
|
Loading…
Reference in New Issue