CentOS 6
Sponsored Link

Squid - インストール/設定2014/08/12

 
Squid をインストールし、Proxy サーバーを構築します。
[1] Squid をインストールします。
[root@prox ~]#
yum -y install squid
[2] 一般的なフォワードプロキシとして設定します。内部 LAN 専用で、外部ネットワークからは Proxy サーバーを利用できないようにします。
[root@prox ~]#
vi /etc/squid/squid.conf
acl CONNECT method CONNECT
# 29行目:追記 (ACLの定義追加)

acl lan src 10.0.0.0/24
http_access allow localhost
# 57行目:追記 (定義したACLの許可)

http_access allow lan
# 最終行に追記 (匿名サーバー化)

request_header_access Referer deny all
request_header_access X-Forwarded-For deny all
request_header_access Via deny all
request_header_access Cache-Control deny all
# クライアント情報を表示しない

forwarded_for off
[root@prox ~]#
/etc/rc.d/init.d/squid start

Starting squid:     [ OK ]
[root@prox ~]#
chkconfig squid on

[3] IPTables を有効にしている場合は、Proxy ポートの許可が必要です。
「-I INPUT 5」の箇所は自身の環境を確認して、適切な値に置き換えてください。
[root@prox ~]#
iptables -I INPUT 5 -p tcp -m state --state NEW -m tcp --dport 3128 -j ACCEPT
関連コンテンツ