From aee13b03ee5d2d106aa3212bbaa35c63880d185f Mon Sep 17 00:00:00 2001 From: Cyril Jaquier Date: Sat, 16 Oct 2004 22:16:14 +0000 Subject: [PATCH] - Default config file git-svn-id: https://fail2ban.svn.sourceforge.net/svnroot/fail2ban/trunk@33 a942ae1a-1317-0410-a47c-b1dcaea8d605 --- config/fail2ban.conf.default | 38 ++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 config/fail2ban.conf.default diff --git a/config/fail2ban.conf.default b/config/fail2ban.conf.default new file mode 100644 index 00000000..d31c76c4 --- /dev/null +++ b/config/fail2ban.conf.default @@ -0,0 +1,38 @@ +# Fail2Ban configuration file +# +# $Revision$ + +[DEFAULT] + +# background: true to start fail2ban as a daemon. Output +# is redirect to logfile. +background = false + +# debug: true to enable debug mode. More verbose output +# and bypass root user test. +debug = false + +# pwdfailfile: the path of the file which contains the +# password failure log. +pwdfailfile = /var/log/pwdfail/current + +# logfile: the path of the file for logging messages of +# fail2ban. +logfile = /var/log/fail2ban.log + +# maxretry: the number of retry before IP gets ban. +maxretry = 3 + +# bantime: the number of seconds an IP will be ban. +bantime = 600 + +# ignoreip: a space separated list that contains IP which +# will be ignore by fail2ban. Example: +# ignoreip = 192.168.0.1 123.45.235.65 +ignoreip = + +# polltime: the number of seconds that fail2ban sleeps +# between two iteration (check for IP to unban - parse +# log file). 1 is a good value. +polltime = 1 +