Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> 關於Linux >> Linux安裝使用fail2ban的方法

Linux安裝使用fail2ban的方法

日期:2017/1/25 10:35:02      編輯:關於Linux

  Fail2ban是一款非常使用的軟件,它能夠監控系統日志,能夠有效的防止ssh被暴力破解,下面小編將針對Fail2ban在Linux下的安裝和使用給大家做個介紹,一起來了解下吧。

 Linux安裝使用fail2ban的方法

  通過iptables, tcp-wrapper, shorewall等方式阻止此IP的訪問。

  需要Pytion支持

  python安裝

  python安裝方法:

  cd /tmp

  wget http://python.org/ftp/python/2.7.3/Python-2.7.3.tgz

  tar xzf Python-2.7.3.tgz

  cd Python-2.7.3

  。/configure

  make && make install

  rm -rf /usr/bin/python

  ln -s /tmp/Python-2.7.3/python /usr/bin/

  fail2ban安裝

  cd /tmp

  wget https://github.com/downloads/fail2ban/fail2ban/fail2ban_0.8.6.orig.tar.gz

  tar xzf fail2ban_0.8.6.orig.tar.gz

  cd fail2ban-fail2ban-a20d1f8/

  。/setup.py install

  cp files/RedHat-initd /etc/init.d/fail2ban

  chmod 755 /etc/init.d/fail2ban

  配置fail2ban日志輪循:

  vi /etc/logrotate.d/fail2ban

  寫入:

  /var/log/fail2ban.log {

  weekly

  rotate 7

  missingok

  compress

  postrotate

  /etc/init.d/fail2ban restart 1》/dev/null || true

  endscript

  }

  fail2ban使用方法

  配置文件:

  /etc/fail2ban/

  ├── action.d

  │ ├── dummy.conf

  │ ├── hostsdeny.conf

  │ ├── iptables.conf

  │ ├── mail-whois.conf

  │ ├── mail.conf

  │ └── shorewall.conf

  ├── fail2ban.conf

  ├── fail2ban.local

  ├── filter.d

  │ ├── apache-auth.conf

  │ ├── apache-noscript.conf

  │ ├── couriersmtp.conf

  │ ├── postfix.conf

  │ ├── proftpd.conf

  │ ├── qmail.conf

  │ ├── sasl.conf

  │ ├── sshd.conf

  │ └── vsftpd.conf

  ├── jail.conf

  └── jail.local

  目錄action.d下的文件指定滿足條件時執行的一些動作,比如使用iptables禁止ip訪問。

上一頁12下一頁共2頁

Copyright © Windows教程網 All Rights Reserved