0
我正在嘗試複製本博客文章中描述的配置。魷魚使用cache_peer旋轉退出IP
http://www.everydayinternetstuff.com/2011/03/squid-random-outgoing-ipinterface-selection/
這種技術,因爲我的理解是應該魷魚欺騙,以爲這是一個雙方父母和一個cache_peer從而使您能夠從單一實例卷出口IP地址。
使用此配置我已經能夠退出我輸入的IP地址,但輸入時無法旋轉退出IP地址。
報告的錯誤頁面是來自squid緩存的訪問被拒絕錯誤頁面。
我很感激任何幫助或建議。此外,如果任何人有一個不同的方式工作的配置,我會很高興聽到這些建議。
http_port <entry ip>:3128
http_port <exit1>:3128
http_port <exit2>:3128
http_port <exit3>:3128
auth_param basic program /usr/lib/squid3/ncsa_auth /etc/squid3/squid_passwd
auth_param basic children 5
auth_param basic realm ProxyBox
auth_param basic credentialsttl 2 hours
acl ncsaauth proxy_auth REQUIRED
http_access allow ncsaauth
acl src_01 src <exit1>
acl src_02 src <exit2>
acl src_03 src <exit3>
tcp_outgoing_address <exit1> src_01
tcp_outgoing_address <exit2> src_02
tcp_outgoing_address <exit3> src_03
acl first_req src 127.0.0.0/8
acl second_req src <exitnet>/29
cache_peer <exit1> parent 3128 0 round-robin no-query login=proxyadmin:password
cache_peer <exit2> parent 3128 0 round-robin no-query login=proxyadmin:password
cache_peer <exit3> parent 3128 0 round-robin no-query login=proxyadmin:password
cache_peer_access <exit1> allow first_req
cache_peer_access <exit2> allow first_req
cache_peer_access <exit3> allow first_req
cache_peer_access <exit1> deny second_req
cache_peer_access <exit2> deny second_req
cache_peer_access <exit3> deny second_req
never_direct allow first_req
never_direct deny second_req