我在同一台服务器上有很多ip,并且正在使用鱿鱼基本身份验证。
示例-我有两个ips和2个用户以及一个单个端口3128。问题是任何用户都可以使用任何传出ips。
以下是我的鱿鱼配置:
acl http proto http
acl port_80 port 80
acl port_443 port 443
acl CONNECT method CONNECT
auth_param basic program /usr/bin/python /path/to/authenticationscript
auth_param basic realm Please enter username and password
auth_param basic credentialsttl 1 second
acl AuthUsers proxy_auth REQUIRED
external_acl_type userip %SRC %LOGIN /usr/lib/squid/ext_file_userip_acl -f /path/to/config.file
acl userip external userip
http_access allow userip
http_access deny all
http_port 3128 name=0
acl ip1 myportname 0
tcp_outgoing_address x.x.x.0 ip1
acl ip2 myportname 1
tcp_outgoing_address x.x.x.1 ip2
其中x.x.x.x是服务器的ip地址。
在我拥有的config.file中
x.x.x.0(ipaddress1) user1
x.x.x.1(ipaddress2) user2
如何让一个用户连接到一个IP?
答案 0 :(得分:3)
我找到了解决方法。
我需要将myportname的http_port和acl更改为以下内容:
http_port 3128
acl ip1 myip x.x.x.0
tcp_outgoing_address x.x.x.0 ip1
acl ip2 myip x.x.x.1
tcp_outgoing_address x.x.x.1 ip2