mirror of https://github.com/fail2ban/fail2ban
MRG/DOC: jail.conf resolution, ChangeLog fixes
commit
e12d389c65
|
@ -47,10 +47,13 @@ ver. 0.8.11 (2013/XX/XXX) - loves-unittests
|
||||||
* files/redhat-initd - rewritten to use stock init.d functions thus
|
* files/redhat-initd - rewritten to use stock init.d functions thus
|
||||||
avoiding problems with getpid. Also $network and iptables moved
|
avoiding problems with getpid. Also $network and iptables moved
|
||||||
to Should- rc init fields
|
to Should- rc init fields
|
||||||
|
|
||||||
- New Features:
|
- New Features:
|
||||||
Andy Fragen and Daniel Black
|
Andy Fragen and Daniel Black
|
||||||
* filter.d/osx-ipfw.conf - ipfw action for OSX based on random rule
|
* filter.d/osx-ipfw.conf - ipfw action for OSX based on random rule
|
||||||
numbers.
|
numbers.
|
||||||
|
Anonymous:
|
||||||
|
* action.d/osx-afctl - an action based on afctl for osx
|
||||||
Daniel Black & ykimon
|
Daniel Black & ykimon
|
||||||
* filter.d/3proxy.conf -- filter added
|
* filter.d/3proxy.conf -- filter added
|
||||||
Daniel Black
|
Daniel Black
|
||||||
|
@ -59,6 +62,8 @@ ver. 0.8.11 (2013/XX/XXX) - loves-unittests
|
||||||
* add date expression for apache-2.4 - milliseconds
|
* add date expression for apache-2.4 - milliseconds
|
||||||
Christophe Carles & Daniel Black
|
Christophe Carles & Daniel Black
|
||||||
* filter.d/perdition.conf -- filter added
|
* filter.d/perdition.conf -- filter added
|
||||||
|
Mark McKinstry
|
||||||
|
* action.d/apf.conf - add action for Advanced Policy Firewall (apf)
|
||||||
|
|
||||||
- Enhancements:
|
- Enhancements:
|
||||||
François Boulogne and Frédéric
|
François Boulogne and Frédéric
|
||||||
|
@ -106,8 +111,6 @@ ver. 0.8.11 (2013/XX/XXX) - loves-unittests
|
||||||
Orion Poplawski
|
Orion Poplawski
|
||||||
* fail2ban.d/ and jail.d/ directories are added to etc/fail2ban to facilitate
|
* fail2ban.d/ and jail.d/ directories are added to etc/fail2ban to facilitate
|
||||||
their use
|
their use
|
||||||
Mark McKinstry
|
|
||||||
* action.d/apf.conf - add action for Advanced Policy Firewall (apf)
|
|
||||||
|
|
||||||
ver. 0.8.10 (2013/06/12) - wanna-be-secure
|
ver. 0.8.10 (2013/06/12) - wanna-be-secure
|
||||||
-----------
|
-----------
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Fail2Ban configuration file for using afctl on Mac OS X Server 10.5
|
||||||
|
#
|
||||||
|
# Anonymous author
|
||||||
|
# http://www.fail2ban.org/wiki/index.php?title=HOWTO_Mac_OS_X_Server_(10.5)&diff=prev&oldid=4081
|
||||||
|
#
|
||||||
|
# Ref: https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man8/afctl.8.html
|
||||||
|
|
||||||
|
[Definition]
|
||||||
|
actionstart =
|
||||||
|
actionstop =
|
||||||
|
actioncheck =
|
||||||
|
actionban = /usr/libexec/afctl -a <ip> -t <bantime>
|
||||||
|
actionunban = /usr/libexec/afctl -r <ip>
|
||||||
|
|
||||||
|
[Init]
|
||||||
|
bantime = 2880
|
|
@ -427,3 +427,9 @@ enabled = false
|
||||||
filter = sshd
|
filter = sshd
|
||||||
action = apf[name=SSH]
|
action = apf[name=SSH]
|
||||||
logpath = /var/log/secure
|
logpath = /var/log/secure
|
||||||
|
|
||||||
|
[osx-ssh-afctl]
|
||||||
|
enabled = false
|
||||||
|
filter = sshd
|
||||||
|
action = osx-afctl[bantime=600]
|
||||||
|
logpath = /var/log/secure.log
|
||||||
|
|
Loading…
Reference in New Issue