* アクセス制御設定 [#l52765ca]

** 接続元ドメインによるアクセス制御 [#r8cd5e62]
 acl uqwimax srcdomain .uqwimax.jp

** ベーシック認証によるアクセス制御 [#v6ba1412]
*** パスワードファイルを作成する [#dbaeb9e7]
 htpasswd -c /etc/squid/basic_passwd user01

*** /etc/squid.confを設定する [#la925f8f]
 auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid/basic_passwd
 auth_param basic children 5
 auth_param basic realm Squid proxy-caching web server
 auth_param basic credentialsttl 2 hours
 auth_param basic casesensitive off
 
 acl my_net src 192.168.0.0/255.255.255.0
 acl proxy_auth_user proxy_auth REQUIRED
 
 http_access allow proxy_auth_user my_net

*** htpasswdコマンドのインストール [#w8df0541]
 yum install httpd-tools


トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS