Squid3 Proxy mit mehreren IPv4 und IPv6


1

Ich kann Squid 3.5 nicht dazu bringen, auf eine IP-Adresse außer IP1 mit dieser Konfiguration zu antworten. Ich glaube, das Problem liegt in der Verwendung von IPv6, nicht in der Art und Weise, wie ich mehrere IPs zuordnete. Ich habe jedoch nur ein einziges IPv4 zum Testen 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
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.