Tình hình là mình đang dựng thử 1 cái proxy với mục đích như sau mà ko biết có đúng ko:
- Cấm tất cả internal network ko đc download file hay nghe mp3 ngoại trừ VIP IP thì đc đi Full Internet.
acl allow_IP_VIP srs "/etc/squid/IP_VIP.txt"
acl home_network src 192.168.1.0/255.255.255.0
acl download_files urlpath_regex "/etc/squid/block_download_list.txt"
http_access allow allow_IP_VIP
http_access deny downloadfiles
http_access allow home_network
http_access deny all
- Cấm tất cả internal network ko đc download file hay nghe mp3 ngoại trừ VIP IP thì đc đi Full Internet.
acl allow_IP_VIP srs "/etc/squid/IP_VIP.txt"
acl home_network src 192.168.1.0/255.255.255.0
acl download_files urlpath_regex "/etc/squid/block_download_list.txt"
http_access allow allow_IP_VIP
http_access deny downloadfiles
http_access allow home_network
http_access deny all
Comment