這篇文章主要介紹“iptables怎么實現字符串匹配”,在日常操作中,相信很多人在iptables怎么實現字符串匹配問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”iptables怎么實現字符串匹配”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
為饒平等地區用戶提供了全套網頁設計制作服務,及饒平網站建設行業解決方案。主營業務為成都網站制作、成都網站設計、饒平網站設計,以傳統方式定制建設網站,并提供域名空間備案等一條龍服務,秉承以專業、用心的態度為用戶提供真誠的服務。我們深信只要達到每一位用戶的要求,就會得到認可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!
分類: SHELL&linux命令2012-07-03 18:25 3172人閱讀 評論(0) 收藏 舉報
stringinputtcpoutputhexlinux
通過string匹配域名來過濾,范例如下:
iptables -I OUTPUT -p tcp -m string --string "qq.com" --algo bm -j DROP iptables -I OUTPUT -p udp -m string --string "qq.com" --algo bm -j DROP
這樣就無法訪問與QQ相關的業務了,但是代理好像還是可以
系統要求:
1:內核在2.6.18以上
2:iptables在1.3.5以上
3:內核中包含字符串匹配模塊。在.config文件中應有
CONFIG_NETFILTER_XT_MATCH_STRING=m
man手冊
iptables -m string -helpstring This modules matches a given string by using some pattern matching strategy. It requires a linux kernel >= 2.6.14. --algo bm|kmp Select the pattern matching strategy. (bm = Boyer- Moore, kmp = Knuth-Pratt-Morris) --from offset Set the offset from which it starts looking for any matching. If not passed, default is 0. --to offset Set the offset to which it starts looking for any matching. If not passed, default is the packet size. --string pattern Matches the given pattern. --hex-string pattern Matches the given pattern in hex notation. 常見的應用程序和有用的示例規則1:防止***的方法 iptables -I INPUT 1 -p tcp --dport 80 -m string --string "cmd.exe" --algo bm -j DROPiptables -I INPUT -j DROP -p tcp -s 0.0.0.0/0 -m string --algo kmp --string "cmd.exe"2: 保護DDOS服務 iptables -I INPUT 1 -p tcp --dport 80 -m string --string "domain.com" --algo kmp -j DROP3: 防止電子郵件欺騙 iptables -I INPUT -p tcp --dport 25 -m string --string "Subject" --algo bm -j DROP 做個最優規則 iptables -I INPUT -p tcp --dport 25 -m string --string "Subject" --algo bm --to 15000 -j DROP
到此,關于“iptables怎么實現字符串匹配”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注創新互聯網站,小編會繼續努力為大家帶來更多實用的文章!
網頁名稱:iptables怎么實現字符串匹配
URL鏈接:http://vcdvsql.cn/article16/pepgdg.html
成都網站建設公司_創新互聯,為您提供網站收錄、用戶體驗、自適應網站、定制開發、網站設計、域名注冊
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯