edited README.md

This commit is contained in:
john 2019-11-23 10:46:02 -05:00
parent 516acff5e5
commit bfae68f2a6
2 changed files with 7 additions and 1 deletions

View File

@ -42,6 +42,11 @@ keywords must be in upper case. Any values in the key=value pairs have
whitespace stripped from the beginning and end of the line. Since there is no
escaping of characters going on, regular expressions are WYSIWYG.
Finding typos and so forth in the config file is easy; use the -v command flag
to print all unrecognized content (besides comments).
`ban2fail -v`
The only way to alter the default blocking behavior is with a MAX\_OFFENSES
clause. This clause allows you specify how many offenses are tolerated before an
IP is blocked. Offenses will naturally disappear as old logfiles are deleted by

View File

@ -86,7 +86,7 @@ struct Global G= {
.version= {
.major= 0,
.minor= 9,
.patch= 4
.patch= 5
}
};
@ -212,6 +212,7 @@ main(int argc, char **argv)
" -a\t\tList results by Address\n"
" -c\t\tlist results by Country\n"
" -t confFile\tTest confFile, do not apply iptables rules\n"
" -v\t\tVerbose information about unrecognized configuration info\n"
" --version\tprint the version number and exit.\n"
, argv[0]
);