- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Configuring Squid Proxy server
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 08:38 PM
06-28-2004 08:38 PM
Iam using Squid Proxy Server.
I want to block some of the web sites to some of the systems in the network.I want to know , how to do this.
Shetty.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 09:02 PM
06-28-2004 09:02 PM
SolutionYou can find it out in the next manual:
http://squid-docs.sourceforge.net/latest/book-full.html#AEN1389
HTH,
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 09:03 PM
06-28-2004 09:03 PM
Re: Configuring Squid Proxy server
We can block the url's with different type of acl setup on squid.
url_regex
It will expect the full url to block
urlpath_regex
It will block the url which contains the specific regex pattern there
dstdomain
It is used to block the domains as *.yahoo.com urls.
dstdom_regex
It is used to block the destination domain which contains the specific domain.
dst
it is used to block the destination with it's IP-Address.
urlpath_raw_regex
It is not updated in squid-2.5.5. It is used to block the regexp with it's ascii code. Example. p can be written as %50. It will block that too.
Use this
http://www.squid-cache.org/Doc/FAQ/FAQ-10.html to know about them.
Regards,
Muthukumar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 09:06 PM
06-28-2004 09:06 PM
Re: Configuring Squid Proxy server
To know the acl setup with examples refer this link,
http://squid.visolve.com/squid/squid24s1/access_controls.htm#acl
We can use -i option to ignore the case-type and files to contain all the url(s) or domain(s).
Regards,
Muthukumar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 10:10 PM
06-28-2004 10:10 PM
Re: Configuring Squid Proxy server
Thank u very much for your fast support.
Shetty.