View Single Post
  #1 (permalink)  
Old 05-01-2007, 06:32 PM
Prasad Prasad is offline
Junior Member
User
 
Join Date: Jan 2007
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
Prasad
Default Unable to push the data through Squid

Hi,

I am using Squid 2.6 stable on Red Hat 9. It is working fine if we access it through web browser (IE). Now I want to upload and download the the data from the server of my vendor. To do this I have a client software installed on the PC which uses ssl connection for data transmission. I have configured this client using Squid proxy.. With this I am able to download the data but I am not able to send the data. The error which I come across while sending the data is as mentioned below.

access.log:
1168005701.832 8 192.9.225.28 TCP_DENIED/407 1731 CONNECT db1.com:443 - NONE/- text/html
1168005701.906 0 192.9.225.28 TCP_DENIED/407 1731 CONNECT db1.com:443 - NONE/- text/html
1168005701.915 1 192.9.225.28 TCP_DENIED/407 1731 CONNECT db1.com:443 - NONE/- text/html

I have also tried changing the firwall rules but could not find the solution.

The contents of squid.conf is as mentioned below for the reference.

http_port 3128
hierarchy_stoplist cgi-bin ?
acl QUERY urlpath_regex cgi-bin \?
cache deny QUERY
acl apache rep_header Server ^Apache
broken_vary_encoding allow apache
cache_mem 16 MB
cache_dir ufs /usr/local/squid/var/cache 5120 16 256
access_log /usr/local/squid/var/logs/access.log squid
cache_store_log none
auth_param basic program /usr/local/squid/libexec/ncsa_auth /usr/local/squid/etc/passwd
auth_param basic children 5
auth_param basic children 5
auth_param basic realm Proxy Server
auth_param basic credentialsttl 5 minute
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern . 0 20% 4320
half_closed_clients off
acl auth_users proxy_auth REQUIRED
http_access allow auth_users
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 SSL_ports port 443
acl Safe_ports port 80 # http
acl Safe_ports port 443 # https
acl CONNECT method CONNECT
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
acl my_network src 192.9.225.1-192.9.225.254 192.9.226.5-192.9.226.254
http_access allow my_network
http_access allow localhost
http_access deny all
http_reply_access allow all
icp_access allow all
cache_effective_user admin
visible_hostname baflproxy
coredump_dir /usr/local/squid/var/cache


Can anybody help and guide me on how to resolve this issue.

Regards
Prasad
Reply With Quote