DDoS deflate - Linux下防護/減輕DDOS攻擊

前言html

互聯網如同現實社會同樣充滿鉤心鬥角,站點被DDOS也成爲站長最頭疼的事。web

在沒有硬防的狀況下,尋找軟件取代是最直接的方法,比方用iptables。但是iptables不能在本身主動屏蔽,僅僅能手動屏蔽。今天要說的就是一款能夠本身主動屏蔽DDOS攻擊者IP的軟件:DDoS deflate服務器

DDoS deflate介紹網絡

DDoS deflate是一款免費的用來防護和減輕DDoS攻擊的腳本。它經過netstat監測跟蹤建立大量網絡鏈接的IP地址。在檢測到某個結點超過預設的限 制時,該程序會經過APF或IPTABLES禁止或阻擋這些IP.post

DDoS deflate官方站點:http://deflate.medialayer.com/this

怎樣確認是否受到DDOS攻擊?spa

運行:.net

netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n

運行後,將會顯示server上所有的每個IP多少個鏈接數。server

下面是我本身用VPS測試的結果:htm

li88-99:~# netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n
1 114.226.9.132
1 174.129.237.157
1 58.60.118.142
1 Address
1 servers)
2 118.26.131.78
3 123.125.1.202
3 220.248.43.119
4 117.36.231.253
4 119.162.46.124
6 219.140.232.128
8 220.181.61.31    VPS偵探 http://www.vpser.net/
2311 67.215.242.196

每個IP幾個、十幾個或幾十個鏈接數都還算比較正常,假設像上面成百上千確定就不正常了。

一、安裝DDoS deflate

wget http://www.inetbase.com/scripts/ddos/install.sh   //下載DDoS  deflate
chmod 0700 install.sh    //加入權限
./install.sh             //運行

二、配置DDoS deflate

如下是DDoS deflate的默認配置位於/usr/local/ddos/ddos.conf ,內容例如如下:

##### Paths of the script and other files
PROGDIR="/usr/local/ddos"
PROG="/usr/local/ddos/ddos.sh"
IGNORE_IP_LIST="/usr/local/ddos/ignore.ip.list"  //IP地址白名單
CRON="/etc/cron.d/ddos.cron"    //定時運行程序
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   //檢查時間間隔。默認1分鐘

##### How many connections define a bad IP?

Indicate that below. NO_OF_CONNECTIONS=150 //最大鏈接數。超過這個數IP就會被屏蔽,通常默認就能夠 ##### APF_BAN=1 (Make sure your APF version is atleast 0.96) ##### APF_BAN=0 (Uses iptables for banning ips instead of APF) APF_BAN=1 //使用APF仍是iptables。推薦使用iptables,將APF_BAN的值改成0就能夠。

##### KILL=0 (Bad IPs are'nt banned, good for interactive execution of script) ##### KILL=1 (Recommended setting) KILL=1 //是否屏蔽IP。默認就能夠 ##### An email is sent to the following address when an IP is banned. ##### Blank would suppress sending of mails EMAIL_TO="root" //當IP被屏蔽時給指定郵箱發送郵件。推薦使用。換成本身的郵箱就能夠 ##### Number of seconds the banned ip should remain in blacklist. BAN_PERIOD=600 //禁用IP時間。默認600秒。可依據狀況調整

用戶可依據給默認配置文件加上的凝視提示內容,改動配置文件。

查看/usr/local/ddos/ddos.sh文件的第117行

netstat -ntu | awk ‘{print $5}’ | cut -d: -f1 | sort | uniq -c | sort -nr > $BAD_IP_LIST

改動爲下面代碼就能夠!

netstat -ntu | awk ‘{print $5}’ | cut -d: -f1 | sed -n ‘/[0-9]/p’ | sort | uniq -c | sort -nr > $BAD_IP_LIST

喜歡折騰的可以用Web壓力測試軟件測試一下效果,相信DDoS deflate仍是能給你的VPS或服務器抵禦一部分DDOS攻擊。給你的站點不少其它的保護。

相關文章
相關標籤/搜索