-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from sumeshpremraj/feature/custom-filters
Add support for custom filters and actions
- Loading branch information
Showing
3 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Fail2Ban configuration file | ||
# This is a sample file and *must* be edited before use | ||
|
||
[INCLUDES] | ||
|
||
before = | ||
|
||
|
||
[Definition] | ||
|
||
# Option: actionstart | ||
# Notes.: command executed once at the start of Fail2Ban. | ||
# Values: CMD | ||
# | ||
actionstart = | ||
|
||
# Option: actionstop | ||
# Notes.: command executed once at the end of Fail2Ban | ||
# Values: CMD | ||
# | ||
actionstop = | ||
|
||
# Option: actionban | ||
# Notes.: command executed when banning an IP. Take care that the | ||
# command is executed with Fail2Ban user rights. | ||
# Tags: See jail.conf(5) man page | ||
# Values: CMD | ||
# | ||
actionban = | ||
|
||
# Option: actionunban | ||
# Notes.: command executed when unbanning an IP. Take care that the | ||
# command is executed with Fail2Ban user rights. | ||
# Tags: See jail.conf(5) man page | ||
# Values: CMD | ||
# | ||
actionunban = |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Fail2Ban configuration file | ||
# This is a sample file and *must* be edited before use | ||
|
||
[INCLUDES] | ||
before = common.conf | ||
|
||
[Definition] | ||
failregex = | ||
ignoreregex = |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters