請位各位大大....
squid 可以限制上什麼網站...
但可以限制上傳檔案嗎? 不是限制下載檔案喔...
acl allowed_mime req_mime_type -i ^application/mspowerpoint$ acl allowed_mime req_mime_type -i ^application/octet-stream$ ... http_access deny !allowed_mime ...
Google 可找到:
http://www.squid-cache.org/mail-archive/squid-users/200508/0503.html
及其接續的相關討論,以下的相關設定有助您的問題解決:
<pre class="c" name="code">
acl my_net src 10.0.0.1/255.255.255.0
acl USERA src 10.0.0.1/255.255.255.255
# acl UPLIMIT req_header Content-Length [5-9][0-9]{5,}
acl UPLIMIT req_header Content-Length [5-9][0-9]{5} [0-9]{7,}
#可擋 500KB.
acl UPLIMIT req_header Content-Length [0-9]{8,}
#可擋 >= 10000000 (10MB)
acl UPMETH method post
http_access deny USERA UPMETH UPLIMIT
http_access allow my_net
http_access deny_all
提供一个不错的网址哦.
http://linux.vbird.org/
:squid 的 process owner 與 cache directory owner
:最簡易的 squid 設定方法
:記憶體與磁碟快取留存百分比設定
:acl 的用法與用途
:上層 Proxy 的選擇與負載分流的設定方法
:與時間相關的設定值 ( connect_timeout, request_timeout )
:總是系統自己來捉資料(always_direct)
:限制使用 proxy 使用者與 proxy 目標的方式 (acl and http_access )