InterviewSolution
| 1. |
What Are The Important Acl Elements In Squid ? |
|
Answer» A few important type of ACL ELEMENTS are listed below: SRC : Source i.e. client’s IP addresses dst : Destination i.e. server’s IP addresses srcdomain : Source i.e. client’s domain name dstdomain : Destination i.e. server’s domain name time : Time of DAY and day of week url_regex : URL regular EXPRESSION pattern matching urlpath_regex: URL-path regular expression pattern matching, leaves out the protocol and hostname proxy_auth : User authentication through external processes maxconn : Maximum number of connections limit from a single client IP address To apply the controls, one has to first define SET of ACL and then apply rules on them. The format of an ACL statement is acl acl_element_name type_of_acl_element values_to_acl A few important type of ACL elements are listed below: src : Source i.e. client’s IP addresses dst : Destination i.e. server’s IP addresses srcdomain : Source i.e. client’s domain name dstdomain : Destination i.e. server’s domain name time : Time of day and day of week url_regex : URL regular expression pattern matching urlpath_regex: URL-path regular expression pattern matching, leaves out the protocol and hostname proxy_auth : User authentication through external processes maxconn : Maximum number of connections limit from a single client IP address To apply the controls, one has to first define set of ACL and then apply rules on them. The format of an ACL statement is acl acl_element_name type_of_acl_element values_to_acl |
|