Linux系统如何防止CC攻击避免网页卡顿
你是否有遇到这样的情况,明明服务器正常运行,用户访问网站人数正常,却出现网页很卡,直到奔溃的情况,出现这种情况多半是被cc攻击了,预防胜于治疗,下面小编以linux系统为例,给大家介绍下linux如何防止cc攻击。
什么是cc攻击
cc攻击简单就是(challengecollapsar)
cc攻击的原理就是攻击者控制某些主机不停地发大量数据包给对方服务器造成服务器资源耗尽,一直到宕机崩溃。cc主要是用来攻击页面的,每个人都有这样的体验:当一个网页访问的人数特别多的时候,打开网页就慢了,cc就是模拟多个用户(多少线程就是多少用户)不停地进行访问那些需要大量数据操作(就是需要大量cpu时间)的页面,造成服务器资源的浪费,cpu长时间处于100%,永远都有处理不完的连接直至就网络拥塞,正常的访问被中止。
防止cc攻击方法
用防止这cc攻击有两种方法
第一种就是利用本机的防火墙来解决可以安装csf之内的防火墙,这种的弊端是只能防止小规模的cc攻击和ddos(我的站在阿里云,所以不用太担心ddos)cc攻击比较猛的话机器也直接cup跑满了。
第二种方式是添加cdn,这种防止cc攻击的方法是最好的,不过cdn一般都要钱。
现在就来谈谈具体换防护,
首先安装csf防火墙,这个比较简单而且不用改域名什么的,小规模的就直接解决了。
一、安装依赖包:
yum install perl-libwww-perl perl iptables
二、下载并安装 csf:
wget http://www.configserver.com/free/csf.tgz
tar -xzf csf.tgz
cd csf
sh install.sh
三、测试 csf 是否能正常工作:
[root@localhost csf]# perl /etc/csf/csftest.pl
testing ip_tables/iptable_filter.。.ok
testing ipt_log.。.ok
testing ipt_multiport/xt_multiport.。.ok
testing ipt_reject.。.ok
testing ipt_state/xt_state.。.ok
testing ipt_limit/xt_limit.。.ok
testing ipt_recent.。.ok
testing xt_connlimit.。.ok
testing ipt_owner/xt_owner.。.ok
testing iptable_nat/ipt_redirect.。.ok
testing iptable_nat/ipt_dnat.。.ok
result: csf should function on this server
四、csf的配置:
csf的配置文件是
vim /etc/csf/csf.conf
# allow incoming tcp ports
# 推荐您更改 ssh 的默认端口(22)为其他端口,但请注意一定要把新的端口加到下一行中
tcp_in = “20,21,47,81,1723,25,53,80,110,143,443,465,587,993,995〃
# allow outgoing tcp ports同上,把 ssh 的登录端口加到下一行。
# 在某些程序要求打开一定范围的端口的情况下,例如pureftpd的passive mode,可使用类似 30000:35000 的方式打开30000-35000范围的端口。
tcp_out = “20,21,47,81,1723,25,53,80,110,113,443〃
# allow incoming udp ports
udp_in = “20,21,53〃
# allow outgoing udp ports
# to allow outgoing traceroute add 33434:33523 to this list
udp_out = “20,21,53,113,123〃
# allow incoming ping 是否允许别人ping你的服务器,默认为1,允许。0为不允许。
icmp_in = “1〃
以上这些配置大家一看就懂了,下面再介绍几个比较常用的:
上一页12下一页共2页
免疫某些类型的小规模 ddos 攻击:
# connection tracking. this option enables tracking of all connections from ip
# addresses to the server. if the total number of connections is greater than
# this value then the offending ip address is blocked. this can be used to help
# prevent some types of dos attack.
#
# care should be taken with this option. it’s entirely possible that you will
# see false-positives. some protocols can be connection hungry, e.g. ftp, imapd
# and http so it could be quite easy to trigger, especially with a lot of
# closed connections in time_wait. however, for a server that is prone to dos
# attacks this may be very useful. a reasonable setting for this option might
# be arround 200.
#
# to disable this feature, set this to 0
ct_limit = “200”##固定时间内同一个ip请求的此数
# connection tracking interval. set this to the the number of seconds between
# connection tracking scans
ct_interval = “30” ##指上面的固定时间,单位为秒
# send an email alert if an ip address is blocked due to connection tracking
ct_email_alert = “1” ##是否发送邮件
# if you want to make ip blocks permanent then set this to 1, otherwise blocks
# will be temporary and will be cleared after ct_block_time seconds
# 是否对可疑ip采取永久屏蔽,默认为0,即临时性屏蔽。
ct_permanent = “0”
# if you opt for temporary ip blocks for ct, then the following is the interval
# in seconds that the ip will remained blocked for (e.g. 1800 = 30 mins)
# 临时性屏蔽时间
ct_block_time = “1800”
# if you don’t want to count the time_wait state against the connection count
# then set the following to “1〃
ct_skip_time_wait = “0” ##是否统计time_wait链接状态
# if you only want to count specific states (e.g. syn_recv) then add the states
# to the following as a comma separated list. e.g. “syn_recv,time_wait”
# leave this option empty to count all states against ct_limit
ct_states = “” ##是否分国家来统计,填写的是国家名
# if you only want to count specific ports (e.g. 80,443) then add the ports
# to the following as a comma separated list. e.g. “80,443〃
#
# leave this option empty to count all ports against ct_limit
# 对什么端口进行检测,为空则检测所有,防止ssh的话可以为空,统计所有的。
ct_ports = “”
做了以上设置之后,可以先测试一下。如果没有问题的话,就更改为正式模式,刚才只是测试模式。
# 把默认的1修改为0。
testing = “0”
在/etc/csf/下有csf.allow和csf.deny两个文件,
allow是信任的ip,可以把自己的ip写到这里面防止误封。
deny就是被封的ip。
如果有调整需要重启一下cfs服务
上面就是linux防止cc攻击的方法介绍了,很多时候用户网站被cc攻击了自己都不知道,所以定期的检测是很有必要的。
上一篇: 设计模式——策略模式