Passive protection against DDoS attacks

Source: Internet
Author: User

IP Address

Visitors through the browser normal access to the site, and the number of connections to the server generally no more than 20, we can disable the connection through a script of excessive IP access. The following script enumerates all connections by using the netstat command, and blocks access through iptables if the number of connections is greater than 150 for the highest number of connections:


#!/bin/bash
#writen by Zhuxiaowei on 20160216
#to Ban DDoS
Status= ' Netstat-na|awk ' $ ~/[0-9]+:[0-9]+/{print $} ' |awk-f ': ' {print '} ' |sort-n|uniq-c |sort-n|tail-n 1 ' #取 Number of IP and number of maximum connections
Num= ' echo $status |awk ' {print '} ' #取出次数
Ip= ' echo $status |awk ' {print $} ' #取出IP
esnum=150 #定义同一IP同时连接的次数
Result= ' echo ' $NUM > $ESNUM ' |BC '
if [$sesult = 1]
Then
Echo IP: $IP is-over $NUM, BAN it! >>/ddos_ip.txt
/sbin/iptables-i input-s $IP-j DROP
Fi

This article is from the "night Reading Wit Hope female Ghost" blog, please be sure to keep this source http://more3.blog.51cto.com/9929586/1742455

Passive protection against DDoS attacks

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.