2016-12-08 13 views
1

私は複数のパブリック発信アドレスを持つすべての発信要求を行うためにsquidプロキシサーバーをインストールしました。以下は私の設定ですが、ブラウザ内にプロキシサーバーのIPアドレスを設定すると私のIPアドレスはgoogleになり、ブラウザーで設定したプロキシサーバーのIPアドレスだけがわかりました。以下は私のイカの設定です複数の発信IPアドレスを持つsquidプロキシ

http_access allow all 
visible_hostname zeyton 



#acl ip1 myip 51.x.x.x1 
#acl ip2 myip 51.x.x.x2 
#acl ip3 myip 51.x.x.x3 
#acl ip4 myip 51.x.x.x4 
#acl ip4 myip 51.x.x.x5 

acl abc src 192.168.0.0/16 
#acl xyz 10.0.2.0/24 

#tcp_outgoing_address 51.x.x.x1 ip1 
#tcp_outgoing_address 51.x.x.x2 ip2 
#tcp_outgoing_address 51.x.x.x3 ip3 
#tcp_outgoing_address 51.x.x.x4 ip4 
#tcp_outgoing_address 51.x.x.x5 ip4 


tcp_outgoing_address 51.x.x.x1 abc 
tcp_outgoing_address 51.x.x.x2 abc 
tcp_outgoing_address 51.x.x.x3 abc 
tcp_outgoing_address 51.x.x.x4 abc 

答えて

0

私は以下のように解決しましたが、その前に私はIPアドレスのプールを仮想的にサーバーのインターフェイスに割り当てました。

http_access allow all 
visible_hostname zeyton 

acl ip1 myip 51.x.x.x1 
acl ip2 myip 51.x.x.x2 
acl ip3 myip 51.x.x.x3 
acl ip4 myip 51.x.x.x4 
acl ip4 myip 51.x.x.x5 

tcp_outgoing_address 51.x.x.x1 ip1 
tcp_outgoing_address 51.x.x.x2 ip2 
tcp_outgoing_address 51.x.x.x3 ip3 
tcp_outgoing_address 51.x.x.x4 ip4 
tcp_outgoing_address 51.x.x.x5 ip4 
関連する問題