source: npl/monitoring/fail2ban/README.SBo @ ca72aba

Last change on this file since ca72aba was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100644
File size: 1.5 KB
Line 
1Once you install the package, you can start using fail2ban by:
21. chmod +x /etc/rc.d/rc.fail2ban
32. /etc/rc.d/rc.fail2ban start
4
5Additionally, you can add the following to rc.local for automatic startup
6if [ -x /etc/rc.d/rc.fail2ban ]; then
7        /etc/rc.d/rc.fail2ban start
8fi
9
10and add the following to rc.local_shutdown to stop fail2ban at shutdown
11if [ -x /etc/rc.d/rc.fail2ban ]; then
12        /etc/rc.d/rc.fail2ban stop
13fi
14
15The package contains logrotate script copied from fail2ban manual,
16and modified to reflect Slackware packaging.  You can find
17the original script at:
18
19http://www.fail2ban.org/wiki/index.php/MANUAL_0_8
20
21UPGRADING:
22
23Please make sure you have all your modifications done to .local files instead of
24.conf files.
25
26Making modifications to .local files is the recommended practice as per the
27software manual.  Each .conf file is overridden by equivalent .local file.
28Please refer Configuration section in fail2ban manual.
29
30Changelog:
31
3208/03/2008
33upgraded to fail2ban version 0.8.3, added restart option to rc script
3412/28/2008
35fixed a typo in rc.fail2ban that prevented showing usage info when run without options
3609/08/2009
37added some notes and simplified rc script.  updated to version 0.8.4.  Modified build script
38to account for users who keeps their config options in .conf files.  Now the script
39moves the .conf files to .new which will prevent the overwrite of existing .conf files.
4010/29/2010
41Simplified rc.fail2ban start.  Removed check for executable bit on rc.fail2ban during startup.
Note: See TracBrowser for help on using the repository browser.