mirror of https://github.com/fail2ban/fail2ban
Browse Source
git-svn-id: https://fail2ban.svn.sourceforge.net/svnroot/fail2ban/trunk@421 a942ae1a-1317-0410-a47c-b1dcaea8d6050.x
Cyril Jaquier
18 years ago
4 changed files with 81 additions and 1 deletions
@ -0,0 +1,66 @@
|
||||
# Fail2Ban configuration file |
||||
# |
||||
# Author: Nick Munger |
||||
# Modified by: Cyril Jaquier |
||||
# |
||||
# $Revision: 254 $ |
||||
# |
||||
|
||||
[Definition] |
||||
|
||||
# Option: fwstart |
||||
# Notes.: command executed once at the start of Fail2Ban. |
||||
# Values: CMD |
||||
# |
||||
actionstart = |
||||
|
||||
|
||||
# Option: fwend |
||||
# Notes.: command executed once at the end of Fail2Ban |
||||
# Values: CMD |
||||
# |
||||
actionstop = |
||||
|
||||
|
||||
# Option: fwcheck |
||||
# Notes.: command executed once before each fwban command |
||||
# Values: CMD |
||||
# |
||||
actioncheck = |
||||
|
||||
|
||||
# Option: fwban |
||||
# Notes.: command executed when banning an IP. Take care that the |
||||
# command is executed with Fail2Ban user rights. |
||||
# Tags: <ip> IP address |
||||
# <failures> number of failures |
||||
# <failtime> unix timestamp of the last failure |
||||
# <bantime> unix timestamp of the ban time |
||||
# Values: CMD |
||||
# |
||||
actionban = ipfw add deny tcp from <ip> to <localhost> <port> |
||||
|
||||
|
||||
# Option: fwunban |
||||
# Notes.: command executed when unbanning an IP. Take care that the |
||||
# command is executed with Fail2Ban user rights. |
||||
# Tags: <ip> IP address |
||||
# <bantime> unix timestamp of the ban time |
||||
# <unbantime> unix timestamp of the unban time |
||||
# Values: CMD |
||||
# |
||||
actionunban = ipfw delete `ipfw list | grep -i <ip> | awk '{print $1;}'` |
||||
|
||||
[Init] |
||||
|
||||
# Option: port |
||||
# Notes.: specifies port to monitor |
||||
# Values: [ NUM | STRING ] |
||||
# |
||||
port = ssh |
||||
|
||||
# Option: localhost |
||||
# Notes.: the local IP address of the network interface |
||||
# Values: IP |
||||
# |
||||
localhost = 127.0.0.1 |
Loading…
Reference in new issue