iptables 示例
ARD -m layer7 --17proto bittorrent -j DROP [root@localhost ~]# iptables -A FORWARD -m layer7 --17proto xunlei -j DROP [root@localhost ~]# iptables -A FORWARD -m layer7 --17proto edonkey -j DROP
例3.4 使用“-time”显式匹配根据时间范围设置数据访问策略,允许周一到周五8:00-18:00之间的数据访问. 例3.5 使用“string”显式匹配策略过滤包含“tencent”、“verycd”、“色情”、“********”的网络访问数据.
[root@localhost ~]# iptables -A FORWARD -p udp --dport 53 -m string --string "tencent" --algo bm -j DROP [root@localhost ~]# iptables -A FORWARD -p udp --dport 53 -m string --string "verycd" --algo bm -j DROP [root@localhost ~]# iptables -A FORWARD -p tcp --dport 80 -m string --string "色情" --algo bm -j DROP [root@localhost ~]# iptables -A FORWARD -p tcp --dport 80 -m string --string "********" --algo bm -j DROP 其中的“--algo”参数用于指定字符串识别算法,可以是“bm”或者“kmp”,任选其中一种即可.需要注意的是,“--string”匹配对中文字符串的过滤效果可能不是很理想.
|
||
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |