用Shell指令碼來解決DOS安全Linux伺服器生產
在電腦科學中, 俗稱殼(用來區別於核),是指“為使用者提供操作介面”的軟體( 解析器);它類似於DOS下的command.com和後來的cmd.exe;它接收使用者 ,然後呼叫相應的應用程式。 |
根據web日誌或者或者網路連線數,監控當某個IP併發連線數或者短時內PV達到100,即呼叫防火牆命令封掉對應的IP,監控頻率每隔3分鐘。
防火牆命令為:
iptables -I INPUT -s 10.0.0.10 -j DROP
先來Web日誌
開發思路分析:
1、分析出IP地址,然後去重,搞定各個IP的訪問次數,可以放到檔案裡。
[root@oldboy scripts]# awk '{print $1}' access_2010-12-8.log|sort|uniq -c|sort -rn|head 35 59.33.26.105 23 123.122.65.226 8 124.115.4.18
[root@oldboy scripts]# awk '{S[$1]++}END{for(k in S) print S[k],k}' access_2010-12-8.log|sort -rn|head 35 59.33.26.105 23 123.122.65.226 8 124.115.4.18
IP的訪問次數到100,就封掉
需要if條件句
讀1的去重結果檔案,可用while
最終答案
[root@oldboy scripts]# cat exam05.sh #!/bin/bash while true do awk '{S[$1]++}END{for(k in S) print S[k],k}' access_2010-12-8.log|sort -rn|head >/tmp/ip.log while read line do ip=`echo $line|awk '{print $2}'` count=`echo $line|awk '{print $1}'` if [ $count -ge 36 -a `grep -w "$ip" /tmp/drop_$(date +%F).ip|wc -l` -lt 1 ] then iptables -I INPUT -s $ip -j DROP && echo -e "$ipt `date +%F`" >>/tmp/drop_$(date +%F).ip fi done /tmp/ip.log sleep 5 done
如果是網路日誌
從生產環境拉取netstat.log測試
[root@oldboy scripts]# awk -F "[ :]+" '/EST.*$/{print $(NF-3)}' netstat.log |awk '{S[$1]++}END{for(k in S)print S[k],k}'|sort -rn|head 4 118.242.18.177 3 123.6.8.223 3 114.250.252.127 2 123.244.104.42 2 121.204.108.160 1 59.53.166.165 1 58.45.107.189 1 42.95.73.152 1 42.196.246.180 1 36.46.160.100
如果是工作中可以netstat -an|awk -F "[ :]+" '/EST.*$/{print $(NF-3)}'分析
最終答案
[root@oldboy scripts]# cat exam05.sh #!/bin/bash while true do awk -F "[ :]+" '/EST.*$/{print $(NF-3)}' netstat.log |awk '{S[$1]++}END{for(k in S)print S[k],k}'|sort -rn|head >/tmp/ip.log while read line do ip=`echo $line|awk '{print $2}'` count=`echo $line|awk '{print $1}'` if [ $count -ge 36 -a `grep -w "$ip" /tmp/drop_$(date +%F).ip|wc -l` -lt 1 ] then iptables -I INPUT -s $ip -j DROP && echo -e "$ipt `date +%F`" >>/tmp/drop_$(date +%F).ip fi done /tmp/ip.log sleep 5 done
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559985/viewspace-2671099/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 產生Statspack快照的Shell指令碼指令碼
- 生產環境備份shell指令碼薦指令碼
- 用Linux Shell指令碼輕鬆管理Radius伺服器Linux指令碼伺服器
- 根據快照產生statpack報表的Shell指令碼指令碼
- 用shell指令碼來給mysql加索引指令碼MySql索引
- 有點用的linux shell 指令碼Linux指令碼
- 一個shell 指令碼用來同步表用的指令碼
- Linux Shell指令碼Linux指令碼
- Linux shell 指令碼Linux指令碼
- 執行 shell 指令碼 \r 問題解決指令碼
- RestCloud ETL解決shell指令碼引數化RESTCloud指令碼
- Linux shell 指令碼分享Linux指令碼
- shell指令碼中文註釋亂碼問題(解決)指令碼
- 將DOS批處理檔案轉換為Shell指令碼指令碼
- 設定Linux伺服器IP地址的shell指令碼Linux伺服器指令碼
- linux Typora修改Windows檔案產生亂碼(未解決)LinuxWindows
- Shell指令碼應用(三)指令碼
- 解決shell指令碼錯誤$’r’ command not found指令碼
- Unix shell解決實際問題指令碼(1)指令碼
- Unix shell解決實際問題指令碼(2)指令碼
- Unix shell解決實際問題指令碼(3)指令碼
- 批次解壓shell指令碼指令碼
- linux shell小指令碼分享Linux指令碼
- linux常用的shell指令碼Linux指令碼
- 用 Linux Shell 指令碼來監控磁碟使用情況併傳送郵件Linux指令碼
- 輕鬆使用“Explain Shell”指令碼來理解 Shell 命令AI指令碼
- Linux/Unix shell 指令碼中呼叫SQL,RMAN指令碼Linux指令碼SQL
- Linux shell程式設計(一)shell指令碼中的變數詳解Linux程式設計指令碼變數
- 9個實用shell指令碼指令碼
- Linux基礎五(shell指令碼)Linux指令碼
- Linux 【Shell指令碼經典案例】Linux指令碼
- 【Linux】【Shell】主控指令碼實現Linux指令碼
- linux shell 指令碼攻略筆記Linux指令碼筆記
- Linux Shell指令碼系列之二Linux指令碼
- Linux Shell指令碼系列之一Linux指令碼
- Linux Shell 指令碼面試 25 問Linux指令碼面試
- Linux Shell指令碼面試25問Linux指令碼面試
- linux shell指令碼中 =~ 的作用Linux指令碼