squid:acls:acl_example_usage
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
squid:acls:acl_example_usage [2020/04/06 14:44] – [http_access allow ACL_NAME] peter | squid:acls:acl_example_usage [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 2: | Line 2: | ||
- | ===== ACL Syntax ===== | ||
- | |||
- | The syntax for ACL is: | ||
- | |||
- | < | ||
- | acl ACL_NAME TYPE DATA | ||
- | </ | ||
- | |||
- | * **ACL_NAME**: | ||
- | * **TYPE**: | ||
- | * **DATA**: | ||
- | |||
- | |||
- | ==== http_access allow ACL_NAME ==== | ||
- | |||
- | * **http_access** defines who is allowed to use the proxy and who can access what on the Internet. | ||
- | * This ACL must be defined. | ||
- | * **localhost** and **all** have already been defined above for which you can deny or allow access via deny or allow. | ||
- | * A list containing any number of http_access entries can be created, processed from top to bottom. | ||
- | * The last entry should always be **http_access deny all**. | ||
- | < | ||
- | acl localhost src 127.0.0.1/ | ||
- | acl all src 0.0.0.0/ | ||
- | | ||
- | http_access allow localhost | ||
- | http_access deny all | ||
- | </ | ||
- | |||
- | * In another example using these rules, the group teachers always has access to the Internet. The group students only has access between Monday and Friday during lunch time: | ||
- | < | ||
- | http_access deny localhost | ||
- | http_access allow teachers | ||
- | http_access allow students lunch time | ||
- | http_access deny all | ||
- | </ | ||
- | |||
- | * For readability, | ||
- | | ||
- | ==== url_rewrite_program PATH ==== | ||
- | |||
- | * With this option, specify a URL rewriter. | ||
- | |||
- | ==== auth_param basic program PATH ==== | ||
- | |||
- | * If users must be authenticated on the proxy, set a corresponding program, such as / | ||
- | < | ||
- | acl password proxy_auth REQUIRED | ||
- | |||
- | http_access allow password | ||
- | http_access deny all | ||
- | </ | ||
- | |||
- | * In the acl proxy_auth option, using REQUIRED means that all valid user names are accepted. REQUIRED can also be replaced with a list of permitted user names. | ||
- | |||
- | ==== ident_lookup_access allow ACL_NAME ==== | ||
- | |||
- | * With this option, have an ident request run to find each user's identity for all clients defined by an ACL of the type src. Alternatively, | ||
- | * All clients covered by ident_lookup_access must run an ident daemon. On Linux, you can use pidentd (package pidentd ) as the ident daemon. For other operating systems, free software is usually available. To ensure that only clients with a successful ident lookup are permitted, define a corresponding ACL: | ||
- | < | ||
- | acl identhosts ident REQUIRED | ||
- | |||
- | http_access allow identhosts | ||
- | http_access deny all | ||
- | </ | ||
- | |||
- | * In the acl identhosts ident option, using REQUIRED means that all valid user names are accepted. REQUIRED can also be replaced with a list of permitted user names. | ||
- | * Using ident can slow down access time, because ident lookups are repeated for each request. | ||
- | |||
- | |||
- | ---- | ||
===== Allowed Subnets ===== | ===== Allowed Subnets ===== | ||
Line 372: | Line 302: | ||
</ | </ | ||
+ | ---- | ||
+ | |||
+ | ===== url_rewrite_program PATH ===== | ||
+ | |||
+ | * With this option, specify a URL rewriter. | ||
+ | * Squid doesn' | ||
+ | < | ||
+ | url_rewrite_program c:/ | ||
+ | </ | ||
+ | |||
+ | The actual rewriter script that is called would be something like this: | ||
+ | |||
+ | <code perl> | ||
+ | # | ||
+ | $|=1; | ||
+ | while (<>) { | ||
+ | $url = m/^([^ ]*)/; | ||
+ | if ($url !~ / | ||
+ | $url =~ s@^http:// | ||
+ | print " | ||
+ | } else { | ||
+ | print " | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | If it exists with abnormal program termination and this is in the cache.log: | ||
+ | |||
+ | <code bash> | ||
+ | 2012/03/23 19:26:12| helperOpenServers: | ||
+ | 2012/03/23 19:26:12| ipcCreate: CHILD: c: | ||
+ | 2012/03/23 19:26:12| ipcCreate: PARENT: OK read test failed | ||
+ | 2012/03/23 19:26:13| --> read returned 4 | ||
+ | </ | ||
+ | |||
+ | Then could be to not place quotes around the path... | ||
---- | ---- | ||
+ | |||
+ | ===== auth_param basic program PATH ===== | ||
+ | |||
+ | * If users must be authenticated on the proxy, set a corresponding program, such as / | ||
+ | < | ||
+ | acl password proxy_auth REQUIRED | ||
+ | |||
+ | http_access allow password | ||
+ | http_access deny all | ||
+ | </ | ||
+ | |||
+ | * In the acl proxy_auth option, using **REQUIRED** means that all valid user names are accepted. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== ident_lookup_access allow ACL_NAME ===== | ||
+ | |||
+ | * With this option, have an ident request run to find each user's identity for all clients defined by an ACL of the type src. Alternatively, | ||
+ | * All clients covered by ident_lookup_access must run an ident daemon. On Linux, you can use pidentd (package pidentd ) as the ident daemon. For other operating systems, free software is usually available. To ensure that only clients with a successful ident lookup are permitted, define a corresponding ACL: | ||
+ | < | ||
+ | acl identhosts ident REQUIRED | ||
+ | |||
+ | http_access allow identhosts | ||
+ | http_access deny all | ||
+ | </ | ||
+ | |||
+ | * In the acl identhosts ident option, using REQUIRED means that all valid user names are accepted. REQUIRED can also be replaced with a list of permitted user names. | ||
+ | * Using ident can slow down access time, because ident lookups are repeated for each request. | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
===== References ===== | ===== References ===== |
squid/acls/acl_example_usage.1586184272.txt.gz · Last modified: 2020/07/15 09:30 (external edit)