1、查看日志中访问次数最多的前10个IPcat access.log |cut -d ' ' -f 1 |sort |uniq -c | sort -nr | awk '{print $0 }' | head -n 10 2、查看日志中出现100次以上的IPcat access_log |cut -d ' ' -f 1 |sort |uniq -c | awk '{if ($1 > 1...
Ubuntu使用iptables设置禁止某个IP访问,重启防火墙生效一直报下面的错误iptables: unrecognized service 百度了下说Ubuntu不支持iptablses,可以使用简单的UFW防火墙来禁止ip访问启用ufwsudo ufw enable 如果没有安装,可以先安装sudo apt-get install ufw 关闭防火墙sudo ufw disable ...
查看Aapche日志,发现有很多ip短时间很多请求,肯定是爬虫采集或者蜘蛛,攻击废话不多说,直接封ip封单个IP的命令是:iptables -I INPUT -s 211.1.0.0 -j DROP 封IP段的命令是:iptables -I INPUT -s 211.1.0.0/16 -j DROP iptables -I INPUT -s 211.2.0.0/16 -j DROP ipta...