fail2ban-0.8.14 shell自动部署脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了fail2ban-0.8.14 shell自动部署脚本相关的知识,希望对你有一定的参考价值。

#!/bin/bash
#fail2ban-0.8.14.tar.gz
#python > 2.4V
#user:root

tar  -zxf fail2ban-0.8.14.tar.gz
cd /root/fail2ban-0.8.14/
python setup.py install 
cp /root/fail2ban-0.8.14/files/redhat-initd /etc/init.d/fail2ban
chkconfig --add fail2ban
sleep 1

rm -rf /root/fail2ban-0.8.14/
rm -rf /root/fail2ban-0.8.14.tar.gz

[ -f /etc/fail2ban/jail.bak ]
if [ $? -eq 0 ];then
	exit 0
else
	cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.bak
fi

sed -i ‘96c enable = true‘ /etc/fail2ban/jail.conf
sed -i ‘100c logpath  = /var/log/secure‘ /etc/fail2ban/jail.conf
sed -i ‘101c maxretry = 3‘ /etc/fail2ban/jail.conf
sed -i ‘101a\bantime = 3600‘ /etc/fail2ban/jail.conf
sed -i ‘101a\findtime = 300‘ /etc/fail2ban/jail.conf

sleep 1
[ -f /var/log/secure.bak ]
if [ $? -eq 0 ];then
	exit 0
else
	cp /var/log/secure /var/log/secure.bak
fi

> /var/log/secure
/etc/init.d/fail2ban start &>/dev/null


本文出自 “何阳光” 博客,请务必保留此出处http://heyangguang.blog.51cto.com/10930823/1894392

以上是关于fail2ban-0.8.14 shell自动部署脚本的主要内容,如果未能解决你的问题,请参考以下文章

fail2ban+nginx

shell脚本和自动化部署

Jenkins自动部署Shell脚本

如何利用jenkins git shell脚本自动部署服务

Shell脚本自动部署(编译)LAMP平台

Shell脚本 自动部署 SpringBoot 应用