- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Controling interenet access with Squid proxy
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
Discussions
Discussions
Discussions
Forums
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
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
тАО05-23-2005 02:44 AM
тАО05-23-2005 02:44 AM
Controling interenet access with Squid proxy
Do I need to user RADIUS server for authentication, or Squid proxy can authenticate them?
Miro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2005 03:21 AM
тАО05-23-2005 03:21 AM
Re: Controling interenet access with Squid proxy
acl ups dstdomain www.ups.com
http_access deny all
http_access allow ups
A good resource is the Squid faq located here: http://www.squid-cache.org/Doc/FAQ/FAQ-10.html#ss10.1
It explains ACL's and the different ways you can go about setting them up quite well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2005 03:31 AM
тАО05-23-2005 03:31 AM
Re: Controling interenet access with Squid proxy
Thank you for information. This looks to me like it will deny access for EVERYBODY to anything except UPS. My next question would be if I could accomplish the same, but based on a single user or group.
Miro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2005 03:44 AM
тАО05-23-2005 03:44 AM
Re: Controling interenet access with Squid proxy
The FAQ (url in the previous answer) has all the answers you are looking for. Just read through it a bit more, and you'll answer your questions.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2005 03:55 AM
тАО05-23-2005 03:55 AM
Re: Controling interenet access with Squid proxy
could use something like the following:
acl client src 192.168.2.0
acl domain dstdomain .ups.com
http_access allow client domain
http_access deny all
If you are looking to implement this for more than 10 users, I would look into proxy_auth.. you can find all of the relevant informaton for proxy_auth here: http://www.squid-cache.org/Doc/FAQ/FAQ-19.html#configuring-proxy-auth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2005 05:34 AM
тАО05-23-2005 05:34 AM
Re: Controling interenet access with Squid proxy
I still don't understaned how can this be done if the Squid proxy is in DMZ, and computers are running in trusted zone.
Miro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2005 05:44 AM
тАО05-23-2005 05:44 AM
Re: Controling interenet access with Squid proxy
Does that make any sense?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2005 12:13 PM
тАО05-23-2005 12:13 PM
Re: Controling interenet access with Squid proxy
Expanding on Ian's example..
acl Courier_Users proxy_auth
acl ALL proxy_auth REQUIRED
acl domain dstdomain .ups.com .fedex.com
http_access allow Courier_Users domain
http_access deny all Courier_Users
(expanded from sections 10 and 19 of the FAQ)
You'll need to set up an external Auth program (see the documentation on that), but this should restrict '
If you aren't in a NAT'd environment, then you can tie it down to workstation, either by src, or by something else.