過濾nginx日誌並添加防火牆拒絕訪問 centos7

#/bin/bash
#日誌文件
logfile='/var/log/nginx/access.log'nginx

hours=1bash

#開始時間
start_time=date -d "-$hours hour" +"%H:%M:%S"
#echo $start_timeide

#結束時間
stop_time=date +"%H:%M:%S"日誌

#echo $stop_time
#過濾出單位之間內的日誌並統計最高ip數
array=($(tac $logfile | awk -v st="$start_time" -v et="$stop_time" '{t=substr($4,RSTART+14,21);if(t>=st && t<=et) {print $0}}' \
| awk '{print $1}' | sort | uniq -c | sort -nr |awk '{if($1 > 5000){print $0}}'|awk '{print $2}'))code

waitip

for each in ${array[@]}
docmd

echo $each

firewall-cmd --permanent --add-rich-rule="rule family='ipv4' source address='$each' reject"

doneit

firewall-cmd --reloadclass

相關文章
相關標籤/搜索