免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3594 | 回复: 3
打印 上一主题 下一主题

[OpenBSD] 构建基于PF+SQUID的内容过滤器 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-02-23 15:55 |只看该作者 |倒序浏览
本帖最后由 cnllww 于 2012-02-23 15:58 编辑

经常需要针对内网用户的上网行为进行一定的限制,所以在防火墙电脑(OpenBSD系统)上安装了Squid代理软件,对内网用户的上网行为作一些简单过滤。
OpenBSD5.0,em0连接内网,em1连接外网。
打开数据包转发:
  1. $cat /etc/sysctl.conf
  2. net.inet.ip.forwarding=1        # 1=Permit forwarding (routing) of IPv4 packets
  3. net.inet.ip.mforwarding=1       # 1=Permit forwarding (routing) of IPv4 multicas
复制代码
软件开关:
  1. $ cat /etc/rc.conf.local
  2. #Enable or Disable System Daemon
  3. ntpd_flags=             # enabled during install
  4. ftpproxy_flags=         # enabled by pf.conf 允许FTP-PROXY
  5. pkg_scripts="squid"     # 开机启动squid
复制代码
PF过滤文件:
  1. $cat /etc/pf.conf
  2. #Macros
  3.         int_if="em0"
  4.         open_tcp_services="{ 2200,80 }"          #指定开放服务的端口
  5.         icmp_types="echoreq"
  6.         allow_tcp_ports="{ 80,443,701,800,7002,8001,8002,8080,8089,8601,9002 }"          #指定允许内网访问的端口
  7.         tencent_udp_ports="8000"           #开放QQ服务端口
  8.         table <badhosts> persist { 172.20.6.40,172.20.6.41 }    #指定黑名单地址
  9.         table <manager_ip> persist { 172.20.6.1,172.20.6.2,172.20.6.13,172.20.6.15 }      #指定特权地址

  10. #Options
  11.         set block-policy drop
  12.         set optimization aggressive
  13.         set loginterface none
  14.         set skip on lo0
  15.         set limit { states 65535, frags 200, src-nodes 65536, tables 65536, table-entries 1048576 }

  16. #Firewall Rules
  17. ####### default
  18.         block quick from <badhosts>
  19.         block in all
  20.         block out all
  21.         antispoof quick for { lo0 $int_if }

  22. ###### ftp client
  23.         anchor "ftp-proxy/*"
  24.         pass in quick on $int_if inet proto tcp to any port 21 divert-to 127.0.0.1 port 8021

  25. ######  squid,转发www访问到squid端口
  26.         pass in quick on $int_if inet proto tcp to any port 80 divert-to 127.0.0.1 port 3128

  27. ######  nat
  28.         match out on egress inet proto tcp from !(egress:network) to any port $allow_tcp_ports nat-to (egress)
  29.         match out on egress inet proto udp from !(egress:network) to any port $tencent_udp_ports nat-to (egress)
  30.         match out on egress inet from <manager_ip> to any nat-to (egress)

  31. ####### pass out
  32.         pass out quick on egress inet from (egress) to any flags S/SA keep state
  33.         pass out quick on $int_if

  34. ####### Pass in for EXT_IF _egress
  35.         pass in on egress inet proto tcp from any to (egress) port $open_tcp_services

  36. ####### enable icmp
  37.         pass in quick inet proto icmp all icmp-type $icmp_types

  38. ####### Pass in for int_if
  39.         pass in on $int_if
复制代码
SQUID代理过滤:
  1. $cat /etc/squid/squid.conf

  2. http_port 127.0.0.1:3128 transparent #指定透明代理

  3. acl all src all
  4. acl manager proto cache_object
  5. acl localhost src 127.0.0.1/32
  6. acl to_localhost dst 127.0.0.0/8 0.0.0.0/32
  7. acl manager_ip src "/etc/squid/ip_manager.txt"  #指定特权地址
  8. acl badhosts_ip src "/etc/squid/ip_badhosts.txt" #指定黑名单地址
  9. acl OverConnLimit maxconn 200
  10. acl work_time time S M T W H F A 7:00-11:00 13:00-17:00 #定义工作时间

  11. acl filter_flash urlpath_regex -i "/etc/squid/filter_flash.txt" #过滤Flash
  12. acl filter_files urlpath_regex -i "/etc/squid/filter_files.txt" #过滤下载文件后缀
  13. acl filter_sites dstdom_regex "/etc/squid/filter_sites.txt"   #过滤特定网址
  14. acl filter_keys url_regex -i "/etc/squid/filter_keys.txt"  #过滤特定关键词
  15. acl nocache_sites dstdom_regex "/etc/squid/nocache_sites.txt" #指定不缓存网址
  16. acl nocache_files urlpath_regex -i "/etc/squid/nocache_files.txt" #指定不缓存文件后缀

  17. http_access deny badhosts_ip
  18. http_access deny filter_flash work_time !manager_ip   #阻止非特权地址在工作时间查看FLASH动画
  19. http_access deny filter_files work_time !manager_ip   #阻止非特权地址在工作时间下载文件
  20. http_access deny filter_keys work_time !manager_ip
  21. http_access deny filter_sites work_time !manager_ip
  22. http_access deny OverConnLimit
  23. no_cache deny nocache_sites
  24. no_cache deny nocache_files

  25. http_access allow localnet
复制代码
阻止FLASH
  1. $ cat /etc/squid/filter_flash.txt
  2. \.swf
  3. \.flash
  4. \.flv
复制代码
阻止下载文件
  1. $ cat /etc/squid/filter_files.txt
  2. \.rar
  3. \.zip
  4. \.exe
  5. \.msi
  6. \.cab
复制代码
阻止特定网址
  1. $ cat /etc/squid/filter_sites.txt
  2. v.ifeng.com
  3. v.sohu.com
复制代码
##经过以上设置,基本达到过滤要求

论坛徽章:
0
2 [报告]
发表于 2012-02-23 17:30 |只看该作者
别偷换概念行不!明明就是URL过滤,非要说成内容过滤!

论坛徽章:
0
3 [报告]
发表于 2012-02-24 11:12 |只看该作者
昨天没回复上去?
你标题能不能不误导人?明明是简单的URL过滤,怎么能写成“内容”过滤呢?明显的偷换概念行为!

论坛徽章:
0
4 [报告]
发表于 2012-03-02 12:34 |只看该作者
写的挺好的啊
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP