DoS deflate – Linux下防禦/減輕DDOS***


DDoS deflate介紹

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

DDoS deflate官方網站:http://deflate.medialayer.com/

如何確認是否受到DDOS***?

執行:

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

執行後,將會顯示服務器上所有的每個IP多少個連接數。

以下是我自己用VPS測試的結果:

  1. li88-99:~# netstat -ntu | awk ‘{print $5}’ | cut -d: -f1 | sort | uniq -c | sort -n 
  2. 1 114.226.9.132 
  3. 1 174.129.237.157 
  4. 1 58.60.118.142 
  5. 1 Address 
  6. 1 servers) 
  7. 2 118.26.131.78 
  8. 3 123.125.1.202 
  9. 3 220.248.43.119 
  10. 4 117.36.231.253 
  11. 4 119.162.46.124 
  12. 6 219.140.232.128 
  13. 8 220.181.61.31 
  14. 2311 67.215.242.196 


每個IP幾個、十幾個或幾十個連接數都還算比較正常,如果像上面成百上千肯定就不正常了。

安裝配置DDoS deflate

1、安裝DDoS deflate

  1. wget http://www.inetbase.com/scripts/ddos/install.sh   //下載DDoS  deflate 
  2. chmod 0700 install.sh    //添加權限 
  3. ./install.sh             //執行 

2、配置DDoS deflate

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

  1. ##### Paths of the script and other files 
  2. PROGDIR="/usr/local/ddos" 
  3. PROG="/usr/local/ddos/ddos.sh" 
  4. IGNORE_IP_LIST="/usr/local/ddos/ignore.ip.list"  //IP地址白名單 
  5. CRON="/etc/cron.d/ddos.cron"    //定時執行程序 
  6. APF="/etc/apf/apf" 
  7. IPT="/sbin/iptables" 
  8.   
  9. ##### frequency in minutes for running the script 
  10. ##### Caution: Every time this setting is changed, run the script with --cron 
  11. #####          option so that the new frequency takes effect 
  12. FREQ=1   //檢查時間間隔,默認1分鐘 
  13.   
  14. ##### How many connections define a bad IP? Indicate that below. 
  15. NO_OF_CONNECTIONS=150     //最大連接數,超過這個數IP就會被屏蔽,一般默認即可 
  16.   
  17. ##### APF_BAN=1 (Make sure your APF version is atleast 0.96) 
  18. ##### APF_BAN=0 (Uses iptables for banning ips instead of APF) 
  19. APF_BAN=1        //使用APF還是iptables。推薦使用iptables,將APF_BAN的值改爲0即可。 
  20.   
  21. ##### KILL=0 (Bad IPs are'nt banned, good for interactive execution of script) 
  22. ##### KILL=1 (Recommended setting) 
  23. KILL=1   //是否屏蔽IP,默認即可 
  24.   
  25. ##### An email is sent to the following address when an IP is banned. 
  26. ##### Blank would suppress sending of mails 
  27. EMAIL_TO="root"   //當IP被屏蔽時給指定郵箱發送郵件,推薦使用,換成自己的郵箱即可 
  28.   
  29. ##### Number of seconds the banned ip should remain in blacklist. 
  30. BAN_PERIOD=600    //禁用IP時間,默認600秒,可根據情況調整 

用戶可根據給默認配置文件加上的註釋提示內容,修改配置文件。

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

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

修改爲以下代碼即可!

  1. 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***,給你的網站更多的保護。

轉載地址:http://www.vpser.net/security/ddos-deflate.html

 


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章