オープンソースで行っとこ!

LinuxやMovableType、XOOPSなどに挑戦してこうっと

squid.confの設定

2006-12-14 22:20:23 | Squid
# vi /etc/squid/squid.conf
|### Gikan Arenged ###

|# All Sorce address
|acl all src 0.0.0.0/0.0.0.0 ・・・ここはコメントでよいと思う

|# Comitte Sorce Address
|acl MDS src 192.168.10.0/24
|acl Central src 192.168.11.0/24
|acl ME-Tec src 192.168.12.0/24

|acl manager proto cache_object
|acl localhost src 127.0.0.1/255.255.255.255
|acl to_localhost dst 127.0.0.0/8
|acl SSL_ports port 443 563
|acl Safe_ports port 80 # http
|acl Safe_ports port 21 # ftp
|acl Safe_ports port 443 563 # https, snews
|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 allow-ip dst 10.20.300.123/255.255.255.255
|acl allow-ip dst 10.20.300.124/255.255.255.255

|http_access allow allow-ip
|  ・
|  ・