Squid3 TCP_DENIED/403(TIMEOUT_FIRST_UP_PARENT 포함)

Squid3 TCP_DENIED/403(TIMEOUT_FIRST_UP_PARENT 포함)

다음과 같은 계층 구조가 있습니다.

여기에 이미지 설명을 입력하세요

P1그리고P2다음과 같이 구성됩니다.

acl manager proto cache_object
acl localhost src 127.0.0.1/32 ::1
acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1
acl localnet src 192.168.56.0/24
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
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost
acl localnet src 192.168.0.0/16
http_access allow localnet
http_access deny all
icp_access allow localnet
icp_access deny all
http_port 3128
icp_port 3130
cache_mem 8 MB
coredump_dir /var/spool/squid3
refresh_pattern ^ftp:   1440  20% 10080
refresh_pattern ^gopher:  1440  0%  1440
refresh_pattern -i (/cgi-bin/|\?) 0 0%  0
refresh_pattern (Release|Packages(.gz)*)$      0       20%     2880
refresh_pattern .   0 20% 4320
cache_dir ufs /var/spool/squid3 100 16 16
client_netmask 255.255.255.255
cache_store_log /var/log/squid3/store.log

P1IP 192.168.56.101및 추가 항목이 있음cache_peer 192.168.56.102 parent 3128 3130 default

P2IP가 있음192.168.56.102

케이요구

curl -x 192.168.56.102:3128 http://www.google.com/

불행히도 나는 P2에 도착합니다.

1413829721.803      0 192.168.56.101 TCP_DENIED/403 3770 GET http://localhost:3128/squid-internal-periodic/store_digest - NONE/- text/html
1413829721.807      0 192.168.56.101 TCP_DENIED/403 3641 GET http://www.google.pl/ - NONE/- text/html

그리고 P1에서:

1413829719.645      6 192.168.56.1 TCP_MISS/403 3743 GET http://www.google.pl/ - TIMEOUT_FIRST_UP_PARENT/192.168.56.102 text/html

내가 도대체 ​​뭘 잘못하고있는 겁니까?

관련 정보