概述 squid 服务器 - 使用 pf 重定向流量

概述 squid 服务器 - 使用 pf 重定向流量

我的目标是什么:了解员工在互联网上查找什么(哪些页面、浏览多长时间等;不缓存)。

我做了什么:在 openBSD 上安装 squid

问题:我看到了整个流量(tcpdump),但无法将其重定向到 squid

我如何连接它:

         [ internet ]
              |
[ switch with port mirroring ]  => [ squid server ]
              |
           [ LAN ]

我的 squid 服务器有两个 NIC:sis0,IP 地址为 10.0.0.100(管理连接),rl0 没有 IP 地址,且采用混杂模式(无桥接;所有流量都流向该接口)。

我的pf.conf:

pass            # establish keep-state
block in on ! lo0 proto tcp to port 6000:6010
pass in on rl0 proto tcp from any to any port {80 443 3128 8080} rdr-to 10.2.0.247 port 3128

/var/squid/log/access.log 中没有任何内容。nc -l 3128 没有打印任何内容。

我的squid.conf:

cat /etc/squid/squid.conf | grep -v ^$ | grep -v ^#                                                                                                       
acl all src all
acl manager proto cache_object
acl localhost src 127.0.0.1/32
acl to_localhost dst 127.0.0.0/8 0.0.0.0/32
acl localnet src 10.0.0.0/24    # RFC1918 possible internal network
acl SSL_ports port 443
acl Safe_ports port 80          # http
acl Safe_ports port 21          # ftp
acl Safe_ports port 443         # https
acl Safe_ports port 70          # gopher
acl Safe_ports port 210         # wais
acl Safe_ports port 1025-65535  # unregistered ports
acl Safe_ports port 280         # http-mgmt
acl Safe_ports port 488         # gss-http
acl Safe_ports port 591         # filemaker
acl Safe_ports port 777         # multiling http
acl CONNECT method CONNECT
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localnet
http_access deny all
icp_access allow localnet
icp_access deny all
http_port 10.0.0.100:3128
hierarchy_stoplist cgi-bin ?
cache_dir null /tmp
maximum_object_size 20480 KB
access_log /var/squid/logs/access.log squid
refresh_pattern ^ftp:           1440    20%     10080
refresh_pattern ^gopher:        1440    0%      1440
refresh_pattern -i (/cgi-bin/|\?) 0     0%      0
refresh_pattern .               0       20%     4320
acl shoutcast rep_header X-HTTP09-First-Line ^ICY.[0-9]
upgrade_http0.9 deny shoutcast
acl apache rep_header Server ^Apache
broken_vary_encoding allow apache
coredump_dir /var/squid/cache

答案1

您的 squid.conf 中的 localnet 是错误的: acl localnet src 10.0.0.0/24

必须是 acl localnet src 10.2.0.0/24

相关内容