1

Windows マシン (Win2K8 サーバー、64 ビット) で squid プロキシを使用しています。このリンクを参照して、NCSA 認証を有効にしました。インストールはうまくいき、サービスを開始できますが、それでもユーザー名とパスワードのプロンプトが表示されません。

以下は私のイカの設定です。投稿のサイズを小さくするために、元の squid 構成ファイルからコメント行をすべて削除したことに注意してください (スタックの文字制限のため)。

#   WELCOME TO SQUID 2.7.STABLE8
#   ----------------------------
#

    auth_param basic program c:/squid/libexec/ncsa_auth.exe c:/squid/etc/passwd
    auth_param basic children 5
    auth_param basic realm Squid proxy-caching web server
    auth_param basic credentialsttl 2 hours
    auth_param basic casesensitive off
#
#Recommended minimum configuration:
acl all src all
acl manager proto cache_object
acl localhost src 127.0.0.1/32
acl to_localhost dst 127.0.0.0/8 0.0.0.0/32
#
# Example rule allowing access from your local networks.
# Adapt to list your (internal) IP networks from where browsing
# should be allowed
acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
#acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
#acl localnet src 192.168.0.0/16    # RFC1918 possible internal network
#
acl SSL_ports port 443
acl Safe_ports port 80      # http
acl Safe_ports port 21      # ftp
acl Safe_ports port 443     # https
acl Safe_ports port 70      # gopher
acl Safe_ports port 210     # wais
acl Safe_ports port 1025-65535  # unregistered ports
acl Safe_ports port 280     # http-mgmt
acl Safe_ports port 488     # gss-http
acl Safe_ports port 591     # filemaker
acl Safe_ports port 777     # multiling http
acl CONNECT method CONNECT
acl ncsa_users proxy_auth REQUIRED
http_access allow ncsa_users

http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localnet

http_access deny all

icp_access allow localnet
icp_access deny all
# Squid normally listens to port 3128
http_port 3128

hierarchy_stoplist cgi-bin ?


#Default:
 cache_mem 8 MB

access_log c:/squid/var/logs/access.log squid

# none

#Suggested default:
refresh_pattern ^ftp:       1440    20% 10080
refresh_pattern ^gopher:    1440    0%  1440
refresh_pattern -i (/cgi-bin/|\?) 0 0%  0
refresh_pattern .       0   20% 4320


coredump_dir c:/squid/var/cache

これを使用してpasswdファイルを生成しました 助けてください。私は先週からこの仕事をしようとしています:(

4

1 に答える 1

0

あなたのルールを見る:

http_access allow ncsa_users
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localnet

http_access deny all

ncsa_users と localnet の両方を許可しているようです。10.0 ネットワーク内からこれにアクセスしている場合 (説明には表示されません)、次のルールを使用して認証なしですべてのトラフィックを許可しています: acl localnet src 10.0.0.0/8 # RFC1918 possible internal network 1 つをコメントアウトして、機能するかどうかを確認してください。

于 2013-10-08T18:41:38.300 に答える