squid + iptables 不工作

squid + iptables 不工作

我想在我的 ubuntu VM 上设置代理来测试必须使用代理的 PHP 脚本。我安装了 Squid 并使用 iptables 命令做了一些事情。

我写 :

sudo iptables -A OUTPUT -p tcp --dport 80 -j DROP

然后我编辑了我的 squid.conf 文件:

acl all src all
acl manager proto cache_object
acl localhost src 127.0.0.1/32 ::1
acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1
#
acl localnet src 192.168.152.132/24 #this is my ip address
#
acl SSL_ports port 443      # https
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 localhost
http_access allow localnet
http_access deny all

http_port 3128 transparent

visible_hostname MyProxy

coredump_dir /var/spool/squid3
refresh_pattern ^ftp:       1440    20% 10080
refresh_pattern ^gopher:    1440    0%  1440
refresh_pattern -i (/cgi-bin/|\?) 0 0%  0
refresh_pattern (Release|Packages(.gz)*)$      0       20%     2880
refresh_pattern .       0   20% 4320

因此现在每个端口 80 请求都被阻止了,当我在 Firefox 中编辑代理设置时,我想通过该代理。我用 squid 的端口写了我的 ip 地址,但仍然收到拒绝访问错误。你知道我做错了什么吗?

答案1

从终端运行:

sudo squid3 -k reconfigure

-k reconfigure- 解析配置文件,然后向正在运行的副本发送信号并退出

相关内容