用shell脚本实现防DOS***-网络连接法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用shell脚本实现防DOS***-网络连接法相关的知识,希望对你有一定的参考价值。

#!/bin/bash
netstat -antup|grep SYN_RECV|awk ‘{print $5}‘|awk -F: ‘{print $1}‘|sort|uniq -c>/opt/tmp
exec</opt/tmp
while read line
do
count=echo $line|awk ‘{print $1}‘
ip=echo $line |awk ‘{print $2}‘
if [ $count -gt 128 ]
then iptables -I INPUT -s $ip -j DROP
fi
done

以上是关于用shell脚本实现防DOS***-网络连接法的主要内容,如果未能解决你的问题,请参考以下文章

开发Shell脚本解决DOS安全Linux服务器生产案例

开发Shell脚本解决DOS安全Linux服务器生产案例

使用shell脚本实现用ping检查刀片服务器与主服务器之间的网络连通

php防攻击

linux arm 运行 shell .sh 脚本文件报错:/bin/bash^M: bad interpreter: No such file or directory(dos2unix )(代码片

合格linux运维人员必会的30道shell编程面试题及讲解