如何允许 squid 用户仅使用与 ip 绑定的某些端口

如何允许 squid 用户仅使用与 ip 绑定的某些端口

在我的 squid 配置中,我将每个 IP 映射到一个特定的端口。

acl port_3000_acl myport 3000
acl port_3001_acl myport 3001

http_port 3000
http_port 3001

tcp_outgoing_address 185.166.196.238 port_3000_acl
tcp_outgoing_address 218.151.231.148 port_3001_acl

问题是每个用户都可以使用任何端口。我考虑过为每个用户运行一个单独的 squid 实例,但在我看来,这是一个非常不可扩展的解决方案。我怎样才能允许用户只使用特定的端口?谢谢

相关内容