squid.conf
1acl SSL_ports port 443 2acl Safe_ports port 80 # http 3# acl Safe_ports port 21 # ftp 4acl Safe_ports port 443 # https 5# acl Safe_ports port 70 # gopher 6# acl Safe_ports port 210 # wais 7# acl Safe_ports port 1025-65535 # unregistered ports 8# acl Safe_ports port 280 # http-mgmt 9# acl Safe_ports port 488 # gss-http 10# acl Safe_ports port 591 # filemaker 11# acl Safe_ports port 777 # multiling http 12 13 14acl CONNECT method CONNECT 15 16acl client1 src <クライアントIP> 17 18http_access deny !Safe_ports 19 20http_access deny CONNECT !SSL_ports 21 22http_access allow localhost manager 23http_access deny manager 24 25http_access allow client1 26http_access allow localhost 27http_access deny all 28 29# Squid listens to port 30http_port 8080 31 32# ParentProxySetting 33cache_peer <親プロキシのPrivateIP> parent 8080 0 no-query 34 35acl whitelist dstdomain "/etc/squid/whitelist" 36 37 38cache_peer_access <親プロキシのプライベートIP> allow whitelist 39cache_peer_access <親プロキシのプライベートIP> deny all 40never_direct allow all 41 42# Uncomment and adjust the following to add a disk cache directory. 43# cache_dir ufs /var/spool/squid 100 16 256 44# cache_mem 256MB 45 46# Leave coredumps in the first cache dir 47coredump_dir /var/spool/squid 48 49no_cache deny all 50 51# 52# Add any of your own refresh_pattern entries above these. 53# 54refresh_pattern ^ftp: 1440 20% 10080 55refresh_pattern ^gopher: 1440 0% 1440 56refresh_pattern -i (/cgi-bin/|?) 0 0% 0 57refresh_pattern . 0 20% 4320 58 59logformat squid [%{%Y/%m/%d.%H:%M:%S}tl] %6tr %>a %Ss/%03>Hs %<st %rm %ru %[un %Sh/%<a %mt 60 61#logrotate setting 62
whitelist
1.cman.jp 2.directcloud.jp 3www.air-japan.jp 4216.58.220.142
squidのホワイトリストで、サイトのURLではなくIPを許可したいのですが、どのように記述すればいいのでしょうか。
試しにgoogleのIP(216.58.220.142)をそのまま記述してみたのですが、うまくいきませんでした。
ご存知の方、ご教授いただければ幸いです。
追記します。多段プロキシ構成となっており、主なホワイトリスト制限は子プロキシでかけるため、子プロキシの設定ファイルを記述しております。また、上手くいかないのはwhitelistのIPで記述した箇所のみであり、それ以外のサブドメインなどで記述したものは適用されています。
回答1件
あなたの回答
tips
プレビュー