View Single Post
  #1 (permalink)  
Old 06-14-2006, 10:41 PM
rcordeiro rcordeiro is offline
Member
User
 
Join Date: Jun 2006
Location: Aveiro, Portugal
Posts: 37
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
rcordeiro
Default Problems With SQUID Proxy

Hi All.
I'm a researcher at a telecom institute on our university campus, being served internet through our university proxy.
What I need to do is to set up our own internal proxy to forward all our port 80 connections to port 3128, making it a transparent proxy.
I've been on tldp and on other posts from nixcraft and they all talk about direct connections, not proxy to proxy connections.

this is my current squid.conf output:
hierarchy_stoplist cgi-bin ?
acl QUERY urlpath_regex cgi-bin \?
no_cache deny QUERY
hosts_file /etc/hosts
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern . 0 20% 4320
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
acl to_localhost dst 127.0.0.0/8
acl purge method PURGE
acl CONNECT method CONNECT
http_access allow manager localhost
http_access deny manager
http_access allow purge localhost
http_access deny purge
acl lan src 192.168.7.0/255.255.255.0
http_access allow localhost
http_access allow lan
http_access deny all
http_reply_access allow all
icp_access allow all
visible_hostname hng.av.it.pt
coredump_dir /var/spool/squid
httpd_accel_host virtual
httpd_accel_port 80
httpd_accel_with_proxy on
httpd_accel_uses_host_header on
acl lan src 192.168.1.1 192.168.2.0/24
http_access allow localhost
http_access allow lan


Thanks, just dont know what to do anymore
Rick
Reply With Quote