<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Complete Guide on Installing and Configuring Squid Proxy Server for Windows</title>
	<atom:link href="http://www.reaper-x.com/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.reaper-x.com/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/</link>
	<description>Technology, Games, Blogging ... Whatever</description>
	<lastBuildDate>Fri, 19 Mar 2010 06:28:13 +0700</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: jayesh</title>
		<link>http://www.reaper-x.com/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/comment-page-1/#comment-436000</link>
		<dc:creator>jayesh</dc:creator>
		<pubDate>Sat, 06 Mar 2010 14:05:37 +0000</pubDate>
		<guid isPermaLink="false">http://localhost.localdomain/blog/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/#comment-436000</guid>
		<description>I am installing a squid proxy on a windows machine which has parent proxy at 192.168.7.253.My ip address is 192.168.7.232.My prixy listens on port 8080 and parent proxy listens on port 3128.But its not working.Below are all non-commented lines in my configuration files:
acl all src all
acl manager proto cache_object
acl localhost src 127.0.0.1/32
acl to_localhost dst 127.0.0.0/8

acl localnet src 10.0.0.0/8    # RFC1918 possible internal network
acl localnet src 172.16.0.0/12    # RFC1918 possible internal network
acl localnet src 192.168.0.0/16    # RFC1918 possible internal network

acl SSL_ports port 443
acl Safe_ports port 80        # http
acl Safe_ports port 21        # ftp
acl Safe_ports port 443        # https
acl Safe_ports port 70        # gopher
acl Safe_ports port 210        # wais
acl Safe_ports port 1025-65535    # unregistered ports
acl Safe_ports port 280        # http-mgmt
acl Safe_ports port 488        # gss-http
acl Safe_ports port 591        # filemaker
acl Safe_ports port 777        # multiling http
acl CONNECT method CONNECT

http_access allow manager localhost
http_access allow localhost
http_access deny manager
# Deny requests to unknown ports
http_access deny !Safe_ports
# Deny CONNECT to other than SSL ports
http_access deny CONNECT !SSL_ports

http_access allow localnet
http_access deny all

icp_access allow localnet
icp_access deny all

http_port 8080

cache_peer 192.168.7.236 sibling 3128 3130 no-query weight=10
cache_peer 192.168.7.253 parent 8080 3130 no-query proxy-only no-digest default
cache_peer_access 192.168.7.236 allow all

hierarchy_stoplist cgi-bin ?
access_log c:/squid/var/logs/access.log squid

refresh_pattern ^ftp:        1440    20%    10080
refresh_pattern ^gopher:    1440    0%    1440
refresh_pattern -i (/cgi-bin/&#124;\?) 0    0%    0
refresh_pattern .        0    20%    4320

acl apache rep_header Server ^Apache
broken_vary_encoding allow apache

visible_hostname localhost
announce_period 1 day
 icp_port 3130
 nonhierarchical_direct off
never_direct deny all
coredump_dir c:/squid/var/cache

Regards,
  Jayesh</description>
		<content:encoded><![CDATA[<p>I am installing a squid proxy on a windows machine which has parent proxy at 192.168.7.253.My ip address is 192.168.7.232.My prixy listens on port 8080 and parent proxy listens on port 3128.But its not working.Below are all non-commented lines in my configuration files:<br />
acl all src all<br />
acl manager proto cache_object<br />
acl localhost src 127.0.0.1/32<br />
acl to_localhost dst 127.0.0.0/8</p>
<p>acl localnet src 10.0.0.0/8    # RFC1918 possible internal network<br />
acl localnet src 172.16.0.0/12    # RFC1918 possible internal network<br />
acl localnet src 192.168.0.0/16    # RFC1918 possible internal network</p>
<p>acl SSL_ports port 443<br />
acl Safe_ports port 80        # http<br />
acl Safe_ports port 21        # ftp<br />
acl Safe_ports port 443        # https<br />
acl Safe_ports port 70        # gopher<br />
acl Safe_ports port 210        # wais<br />
acl Safe_ports port 1025-65535    # unregistered ports<br />
acl Safe_ports port 280        # http-mgmt<br />
acl Safe_ports port 488        # gss-http<br />
acl Safe_ports port 591        # filemaker<br />
acl Safe_ports port 777        # multiling http<br />
acl CONNECT method CONNECT</p>
<p>http_access allow manager localhost<br />
http_access allow localhost<br />
http_access deny manager<br />
# Deny requests to unknown ports<br />
http_access deny !Safe_ports<br />
# Deny CONNECT to other than SSL ports<br />
http_access deny CONNECT !SSL_ports</p>
<p>http_access allow localnet<br />
http_access deny all</p>
<p>icp_access allow localnet<br />
icp_access deny all</p>
<p>http_port 8080</p>
<p>cache_peer 192.168.7.236 sibling 3128 3130 no-query weight=10<br />
cache_peer 192.168.7.253 parent 8080 3130 no-query proxy-only no-digest default<br />
cache_peer_access 192.168.7.236 allow all</p>
<p>hierarchy_stoplist cgi-bin ?<br />
access_log c:/squid/var/logs/access.log squid</p>
<p>refresh_pattern ^ftp:        1440    20%    10080<br />
refresh_pattern ^gopher:    1440    0%    1440<br />
refresh_pattern -i (/cgi-bin/|\?) 0    0%    0<br />
refresh_pattern .        0    20%    4320</p>
<p>acl apache rep_header Server ^Apache<br />
broken_vary_encoding allow apache</p>
<p>visible_hostname localhost<br />
announce_period 1 day<br />
 icp_port 3130<br />
 nonhierarchical_direct off<br />
never_direct deny all<br />
coredump_dir c:/squid/var/cache</p>
<p>Regards,<br />
  Jayesh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BrSeek &#124; Configuração básica do winsquid, a versão do servidor proxy squid para o sistema operacional windows</title>
		<link>http://www.reaper-x.com/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/comment-page-1/#comment-419138</link>
		<dc:creator>BrSeek &#124; Configuração básica do winsquid, a versão do servidor proxy squid para o sistema operacional windows</dc:creator>
		<pubDate>Fri, 20 Nov 2009 17:35:21 +0000</pubDate>
		<guid isPermaLink="false">http://localhost.localdomain/blog/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/#comment-419138</guid>
		<description>[...] Complete Guide on Installing and Configuring Squid Proxy Server for Windows [...]</description>
		<content:encoded><![CDATA[<p>[...] Complete Guide on Installing and Configuring Squid Proxy Server for Windows [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: barani</title>
		<link>http://www.reaper-x.com/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/comment-page-1/#comment-410398</link>
		<dc:creator>barani</dc:creator>
		<pubDate>Wed, 21 Oct 2009 13:08:28 +0000</pubDate>
		<guid isPermaLink="false">http://localhost.localdomain/blog/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/#comment-410398</guid>
		<description>I am using Squid 2.7 stable7. I had my squid running and able to browse from client systems. But the problem is I am unable to connect to FTP server. Kindly guide.</description>
		<content:encoded><![CDATA[<p>I am using Squid 2.7 stable7. I had my squid running and able to browse from client systems. But the problem is I am unable to connect to FTP server. Kindly guide.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hanum</title>
		<link>http://www.reaper-x.com/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/comment-page-1/#comment-407697</link>
		<dc:creator>hanum</dc:creator>
		<pubDate>Wed, 14 Oct 2009 09:58:29 +0000</pubDate>
		<guid isPermaLink="false">http://localhost.localdomain/blog/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/#comment-407697</guid>
		<description>Could you tell me, hardware specifications for this squid minimum and recommended (Windows). Thank&#039;s for info sharing ^_^</description>
		<content:encoded><![CDATA[<p>Could you tell me, hardware specifications for this squid minimum and recommended (Windows). Thank&#8217;s for info sharing ^_^</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reaper-X</title>
		<link>http://www.reaper-x.com/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/comment-page-1/#comment-401430</link>
		<dc:creator>Reaper-X</dc:creator>
		<pubDate>Sun, 04 Oct 2009 09:47:12 +0000</pubDate>
		<guid isPermaLink="false">http://localhost.localdomain/blog/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/#comment-401430</guid>
		<description>Could you tell me on which Squid version are you running?</description>
		<content:encoded><![CDATA[<p>Could you tell me on which Squid version are you running?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ravi.S</title>
		<link>http://www.reaper-x.com/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/comment-page-1/#comment-401409</link>
		<dc:creator>ravi.S</dc:creator>
		<pubDate>Sun, 04 Oct 2009 09:10:16 +0000</pubDate>
		<guid isPermaLink="false">http://localhost.localdomain/blog/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/#comment-401409</guid>
		<description>i used the same configuration, but when i start the service by using squid -X, it says:

cachemgrRegister: registered config
fd_open FD 0 stdin
fd_open FD 1 stdout
fd_open FD 2 stderr
leave_suid: PID 76440 called

abnormal program termination</description>
		<content:encoded><![CDATA[<p>i used the same configuration, but when i start the service by using squid -X, it says:</p>
<p>cachemgrRegister: registered config<br />
fd_open FD 0 stdin<br />
fd_open FD 1 stdout<br />
fd_open FD 2 stderr<br />
leave_suid: PID 76440 called</p>
<p>abnormal program termination</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aziz</title>
		<link>http://www.reaper-x.com/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/comment-page-1/#comment-261399</link>
		<dc:creator>aziz</dc:creator>
		<pubDate>Wed, 11 Feb 2009 07:20:06 +0000</pubDate>
		<guid isPermaLink="false">http://localhost.localdomain/blog/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/#comment-261399</guid>
		<description>i cant start squid service when i start it that time squid is not working
 
can any one give full installation and configurations of squid proxy for windows to me 

thanks and regards

m&#114;&#46;&#109;d&#97;&#122;&#105;&#122;&#64;&#121;&#97;&#104;&#111;o.&#99;&#111;m</description>
		<content:encoded><![CDATA[<p>i cant start squid service when i start it that time squid is not working</p>
<p>can any one give full installation and configurations of squid proxy for windows to me </p>
<p>thanks and regards</p>
<p><a href="mail&#116;&#111;&#58;&#109;&#114;&#46;m&#100;a&#122;i&#122;&#64;yah&#111;&#111;.co&#109;">&#109;&#114;&#46;m&#100;aziz&#64;&#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;m</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: awzm</title>
		<link>http://www.reaper-x.com/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/comment-page-1/#comment-250174</link>
		<dc:creator>awzm</dc:creator>
		<pubDate>Thu, 15 Jan 2009 09:43:06 +0000</pubDate>
		<guid isPermaLink="false">http://localhost.localdomain/blog/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/#comment-250174</guid>
		<description>Hi Aditya,

I&#039;ve recently written an updated version of installing Squid on Windows.

http://how-to-solutions.com/installing-and-configuring-squidnt-27-on-a-windows-domain.html

I hope your readers find it useful! Thanks</description>
		<content:encoded><![CDATA[<p>Hi Aditya,</p>
<p>I&#8217;ve recently written an updated version of installing Squid on Windows.</p>
<p><a href="http://how-to-solutions.com/installing-and-configuring-squidnt-27-on-a-windows-domain.html" rel="nofollow">http://how-to-solutions.com/installing-and-configuring-squidnt-27-on-a-windows-domain.html</a></p>
<p>I hope your readers find it useful! Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BrSeek &#187; Configurando o winsquid o squid do windows.</title>
		<link>http://www.reaper-x.com/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/comment-page-1/#comment-211783</link>
		<dc:creator>BrSeek &#187; Configurando o winsquid o squid do windows.</dc:creator>
		<pubDate>Sat, 25 Oct 2008 21:33:40 +0000</pubDate>
		<guid isPermaLink="false">http://localhost.localdomain/blog/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/#comment-211783</guid>
		<description>[...] Complete Guide on Installing and Configuring Squid Proxy Server for Windows [...]</description>
		<content:encoded><![CDATA[<p>[...] Complete Guide on Installing and Configuring Squid Proxy Server for Windows [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kamal Kumar</title>
		<link>http://www.reaper-x.com/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/comment-page-1/#comment-126389</link>
		<dc:creator>Kamal Kumar</dc:creator>
		<pubDate>Wed, 11 Jun 2008 12:00:10 +0000</pubDate>
		<guid isPermaLink="false">http://localhost.localdomain/blog/2006/07/18/complete-guide-on-installing-and-configuring-squid-proxy-server-for-windows/#comment-126389</guid>
		<description>first of all, what i download squid is squid 2.7for NT and somone suggest to run as 
Simply unzip in the root of C: and run c:\squid\sbin\squid -i. Rename and edit the files in c:\squid\etc and run net start squid or start squid via services.msc. Also, make sure to create c:\squid\var\cache and run squid -z to create swap directories (or you might spend a long time trying to figure out the cryptic &quot;abnormal program termination&quot; message like I did! :) ) 

but not able to run squid on winxp
(also squid port 3168 also not workin)

Plz send guide on Installing and Configuring Squid Proxy Server for WindowsXP in more simple way 

also how we connect JAP to squid

plz respond on mail, i shell be thankful to your goodself

regards
kamal
boss_kamal(at)indiatimes(dot)com</description>
		<content:encoded><![CDATA[<p>first of all, what i download squid is squid 2.7for NT and somone suggest to run as<br />
Simply unzip in the root of C: and run c:\squid\sbin\squid -i. Rename and edit the files in c:\squid\etc and run net start squid or start squid via services.msc. Also, make sure to create c:\squid\var\cache and run squid -z to create swap directories (or you might spend a long time trying to figure out the cryptic &#8220;abnormal program termination&#8221; message like I did! :) ) </p>
<p>but not able to run squid on winxp<br />
(also squid port 3168 also not workin)</p>
<p>Plz send guide on Installing and Configuring Squid Proxy Server for WindowsXP in more simple way </p>
<p>also how we connect JAP to squid</p>
<p>plz respond on mail, i shell be thankful to your goodself</p>
<p>regards<br />
kamal<br />
boss_kamal(at)indiatimes(dot)com</p>
]]></content:encoded>
	</item>
</channel>
</rss>
