Squid3-Proxy mit mehreren IPv4 und IPv6

Squid3-Proxy mit mehreren IPv4 und IPv6

Ich kann Squid 3.5 mit dieser Konfiguration nicht dazu bringen, auf eine andere IP als IP1 zu antworten. Ich glaube, das Problem liegt an der Verwendung von IPv6 und nicht an der Art und Weise, wie ich mehrere IPs zuweise. Zum Testen steht mir jedoch nur eine einzige IPv4 zur Verfügung.

http_port 8121
cache deny all
forwarded_for delete


acl to_ipv6 dst ipv6
http_access allow to_ipv6 !all
tcp_outgoing_address 216.144.232.42 !to_ipv6


acl ip1 myip 216.144.232.**
tcp_outgoing_address 216.144.232.** ip1
acl ip2 myip 2607:fcd0:106:3219::ad76:****
tcp_outgoing_address 2607:fcd0:106:3219::ad76:**** ip 2
acl ip3 myip 2607:fcd0:106:3219::e296:****
tcp_outgoing_address 2607:fcd0:106:3219::e296:**** ip 3


via off
auth_param basic program /usr/lib/squid3/basic_ncsa_auth /etc/squid/passwords
auth_param basic realm proxy
acl authenticated proxy_auth REQUIRED
http_access allow authenticated
http_access deny all

verwandte Informationen