Squid を使ってプロキシサーバーを設定しています。
すべての手順を実行した後、 を再起動すると、
sudo systemctl restart squid.service
次の結果が返されました
active
。
次に、接続をテストしようとしました。
curl -v -x http://your_squid_username:your_squid_password@ipaddress:3128 http://www.google.com/
結果として、次のエラーが発生しました:
ipaddress:3128 を試行中...
ipaddress ポート 3128 への接続に失敗しました: 接続が拒否されました
1 ミリ秒後に ipaddress ポート 3128 への接続に失敗しました: 接続が拒否されました
接続 0 を閉じています
curl: (7) 1 ミリ秒後に ipaddress ポート 3128 への接続に失敗しました: 接続が拒否されました
構成ファイルには/etc/squid/squid.conf
次の設定があります。
#
# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS
#
include /etc/squid/conf.d/*.conf
auth_param basic program /usr/lib/squid/basic_ncsa_auth /etc/squid/passwords
auth_param basic realm proxy
acl authenticated proxy_auth REQUIRED
# Example rule allowing access from your local networks.
acl localnet src ipaddress
# Adapt localnet in the ACL section to list your (internal) IP networks
# from where browsing should be allowed
#http_access allow localnet
http_access allow localhost
http_access allow authenticated
# And finally deny all other access to this proxy
http_access deny all
私はついていきますこのガイド手順 3 の開始時にcurl
Squid 接続をテストするまで、すべて順調に進みました。
squid.conf
変更が必要な部分はありますか? どうすれば修正できますか?
答え1
ip2location.com や類似のサイトに表示される IP アドレスの代わりに、 はまたは のipaddress
いずれかになります。コマンドはまたは になります。127.0.0.1
localhost
curl -v -x http://your_squid_username:[email protected]:3128
curl -v -x http://your_squid_username:your_squid_password@localhost:3128