Fedora 14
Sponsored Link

Proxyサーバー構築2010/11/08

  Proxyサーバーを構築しWebブラウジングを高速化します。

[1] Squid のインストールと設定
[root@lan03 ~]#
yum -y install squid


[root@lan03 ~]#
vi /etc/squid/squid.conf


# 11行目:コメントにしておく

#
acl localnet src 10.0.0.0/8
#
acl localnet src 172.16.0.0/12
#
acl localnet src 192.168.0.0/16
#
acl localnet src fc00::/7
#
acl localnet src fe80::/10
# 16行目:追記 (アクセス許可する範囲を追記)

acl lan src 10.0.0.0/24


# 55行目:コメントにしておく

#
http_access allow localnet
http_access allow localhost
# 57行目:追記('lan'を許可)

http_access allow lan

# And finally deny all other access to this proxy
http_access deny all

# 62行目:変更

http_port
8080


# 最終行:追記

request_header_access X-Forwarded-For deny all
request_header_access Via deny all
request_header_access Cache-Control deny all

# 最終行:追記 (ホスト名定義)

visible_hostname lan03.srv.world


# 最終行:追記 (IP非表示)

forwarded_for off


[root@lan03 ~]#
/etc/rc.d/init.d/squid start

init_cache_dir /var/spool/squid... Starting squid:
[  OK  ]

[root@lan03 ~]#
chkconfig squid on
[2] クライアントのWindows側での設定です。まずはブラウザを立ち上げます。 以下はインターネットエクスプローラ8の例です。 「ツール」-「インターネットオプション」を開き以下のように「接続」のタブに移動し、「LANの設定」ボタンをクリックします。
 
[3] 以下のようにプロキシサーバーの欄の「使用する」にチェックを入れ、 アドレス欄にはプロキシサーバーのホスト名を入力し、ポート欄には [1] で設定したポート番号を入力して、 OKをクリックして閉じます。これでクライアントの設定は完了です。以降はプロキシ経由でWebアクセスを行うことができます。
 
関連コンテンツ