使用DDOS deflate抵御少量DDOS攻击 互联网是丰富多彩的,基本上能够找到我们需要的资源,也正因为如此很多朋友都加入到站长的行列中来。在众多站长之间也会存在明争暗斗的事情。尤其是我们个人站长,由于技术和财力有限,好不容易使用上主机、VPS后被攻击没有能力防御,导致我们的主机或者VPS商给我们的账户暂停,IP挂起等。尤其是我们在使用的VPS主机中,因为是按照流量消费的,在耗尽我们的流量,遭遇大量的DDOS攻击之后,也束手无策,包括老左也看到之前也遭遇到DDOS攻击。 在遇到这些问题的时候,我们是否能在VPS设置中进行处理呢?哪怕是一点点的防御。看到DDOS deflate脚本是可以协助VPS阻止攻击进程的,如果遇到来自某个IP的持续攻击,可以给该IP自动的设置成IP黑名单。只能说可以给我们的VPS一点点防御。 第一步,安装。 wget http://myvps-scripts./files/ chmod +x ./ 第二步,配置/usr/local/ddos/。本文由过期域名抢注抢注域名域名抢注整理 ##### Paths of the script and other files PROGDIR=“/usr/local/ddos” PROG=“/usr/local/ddos/” IGNORE_IP_LIST=“/usr/local/ddos/” CRON=“/etc/” APF=“/etc/apf/apf” IPT=“/sbin/iptables” ##### frequency in minutes for running the script ##### Caution: Every time this setting is changed, run the script with --cron ##### option so that the new frequency takes effect FREQ=1 ##### How many connections define a bad IP? Indicate that below. NO_OF_CONNECTIONS=150 ##### APF_BAN=1 (Make sure your APF version is atleast ) ##### APF_BAN=0 (Uses iptables for banning ips instead of APF) APF_