squid:acls
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
squid:acls [2020/04/06 14:50] – [ACL Syntax] peter | squid:acls [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 16: | Line 16: | ||
acl name type definition1 definition2 definition3 ... | acl name type definition1 definition2 definition3 ... | ||
</ | </ | ||
+ | |||
+ | * **name**: | ||
+ | * **type**: | ||
+ | * **definitions...**: | ||
+ | |||
+ | |||
Examples: | Examples: | ||
Line 25: | Line 31: | ||
acl need_to_authenticate proxy_auth | acl need_to_authenticate proxy_auth | ||
</ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | You must also define the access they need - see further below. | ||
+ | </ | ||
Line 48: | Line 60: | ||
- | Defining the ACLs alone does not actually block anything – it’s just a definition. | + | |
---- | ---- | ||
Line 59: | Line 71: | ||
The most useful feature is the **http_access** statement. | The most useful feature is the **http_access** statement. | ||
- | For each request that Squid receives it will look through all the **http_access** | + | **http_access** |
- | It then either accepts or denys depending on your setting. | + | * For each request that Squid receives it will look through all the **http_access** statements in order, from top to bottom. until it finds a line that matches. |
+ | * It then either accepts or denys depending on your setting. | ||
+ | * The remaining rules are ignored. | ||
+ | * The last entry should always be **http_access deny all**. | ||
- | The remaining rules are ignored. | ||
The general syntax of an http_access line is: | The general syntax of an http_access line is: | ||
Line 74: | Line 88: | ||
< | < | ||
- | http_access allow accesses_from_admins | + | http_access allow access_from_admins |
- | http_access deny accesses_to_porn_urls | + | http_access deny access_to_porn_urls |
- | http_access allow accesses_during_lunchtime | + | http_access allow access_during_lunchtime |
http_access deny all | http_access deny all | ||
</ | </ | ||
- | This would allow accessing from the admins (whatever that ACL looks like – probably a src ACL pointing to the subnet where the admin workstations are in). | + | * This would allow accessing from the admins (whatever that ACL looks like – probably a src ACL pointing to the subnet where the admin workstations are in). |
+ | * For everyone else it will deny accesses to porn URLs. | ||
+ | * Then it would allow accesses from everyone to every web site during lunch time. | ||
+ | * And finally all other accesses would be denied. | ||
- | For everyone else it will deny accesses to porn URLs. | + | Example 2: |
- | Then it would allow accesses from everyone to every web site during lunch time. | + | < |
+ | acl localhost src 127.0.0.1/32 ::1 | ||
+ | acl all src 0.0.0.0/ | ||
+ | |||
+ | http_access allow localhost | ||
+ | http_access deny all | ||
+ | </ | ||
- | And finally | + | * localhost has free access to everything while all other hosts are denied |
+ | |||
+ | |||
+ | Example 3: | ||
+ | |||
+ | < | ||
+ | acl localhost src 127.0.0.1/ | ||
+ | acl all src 0.0.0.0/ | ||
+ | acl teachers src 192.168.10.0/ | ||
+ | acl students src 192.168.20.0-192.168.30.0/ | ||
+ | acl lunch time MTWHF 12: | ||
+ | |||
+ | http_access deny localhost | ||
+ | http_access allow teachers | ||
+ | http_access allow students lunch time | ||
+ | http_access deny all | ||
+ | </ | ||
+ | |||
+ | |||
+ | * The group teachers always has access to the Internet. | ||
+ | * The group students only has access between Monday and Friday during lunch time. | ||
+ | |||
+ | |||
+ | <WRAP tip> | ||
+ | **TIP**: | ||
+ | </ | ||
---- | ---- | ||
Line 116: | Line 164: | ||
===== Custom error pages (deny_info) ===== | ===== Custom error pages (deny_info) ===== | ||
- | By default when you deny access the user gets the error page that is stored in the ERR_ACCESS_DENIED file. | + | By default when you deny access the user gets the error page that is stored in the **ERR_ACCESS_DENIED** file. |
- | But luckily | + | But you can define your own custom error pages and display them when you deny certain |
< | < | ||
Line 137: | Line 185: | ||
</ | </ | ||
- | This will deny access only for the user from the IP address 10.0.5.16 when www.google.com is accessed. | + | * This will deny access only for the user from the IP address 10.0.5.16 when www.google.com is accessed. |
- | + | | |
- | As you can see the ACLs admin and google are combined. | + | |
- | + | ||
- | So it’s important that you define a **deny_info** for the google ACL. | + | |
---- | ---- |
squid/acls.1586184626.txt.gz · Last modified: 2020/07/15 09:30 (external edit)