<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic squid3 transparent proxy using wccp in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/squid3-transparent-proxy-using-wccp/m-p/1896036#M437352</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;OL&gt;&lt;LI&gt;No idea&lt;/LI&gt;&lt;LI&gt;Your grammar is terrible. English is my second language and I would never write like that - even online. Please take some lessons in grammar - unless of course you write bad on purpose, in which case, please stop.&lt;/LI&gt;&lt;LI&gt;Your question has very little to do with the topic of this thread&lt;/LI&gt;&lt;LI&gt;This thread has been dead for almost 6 months (assuming that one guy talking to himself could be considered alive in the first place). You may want to start a new topic for your question&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 17 Nov 2012 15:01:43 GMT</pubDate>
    <dc:creator>vzvonarov1</dc:creator>
    <dc:date>2012-11-17T15:01:43Z</dc:date>
    <item>
      <title>squid3 transparent proxy using wccp</title>
      <link>https://community.cisco.com/t5/network-security/squid3-transparent-proxy-using-wccp/m-p/1896032#M437342</link>
      <description>&lt;P&gt;Lately I've been trying to get a squid server to work with WCCP on our network so that client traffic transparently goes through the proxy. The problem is, having very little experience with squid, I've hit a brick wall and despite spending days searching the web and reading through tons of material, I can't seem to move past it. Maybe you guys can spot the problem. Here's what I have so far.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Network Diagram -&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.cisco.com/legacyfs/online/legacy/4/3/3/89334-squid%20problem.png" alt="squid problem.png" class="jive-image-thumbnail jive-image" onclick="" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm pretty sure my Cisco router is configured properly. The Cisco router ACL is NOT blocking anything coming from or going to the squid server. The linux firewall (iptables) is also NOT blocking anything. 'show ip wccp' on the router shows that squid registers with the router, and wireshark on the squid server shows that the GRE tunnel is receiving packets. The iptables rule that is meant to redirect all traffic from the GRE tunnel to the squid port shows that it's getting hits (iptables -t nat -nvL PREROUTING). The thing is - squid logs don't show that it's receiving any kind of requests. The client machine (the only machine that WCCP should be sending HTTP traffic to squid from) basically can't load any web page once the squid daemon is started on the squid server - it just times out. Is there something wrong with the iptables rule? Could it be something else? I have a feeling it's just one simple thing I'm missing somewhere. Here are the different sections:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Router:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ip wccp web-cache redirect-list 120 group-list 10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface GigabitEthernet0/2&lt;/P&gt;&lt;P&gt; ip address 192.168.13.1 255.255.255.0&lt;/P&gt;&lt;P&gt; ip wccp web-cache redirect in&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ip access-list standard 10&lt;/P&gt;&lt;P&gt;&amp;nbsp; permit 10.10.10.2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ip access-list extended 120&lt;/P&gt;&lt;P&gt;&amp;nbsp; deny&amp;nbsp;&amp;nbsp; ip host 10.10.10.2 any&lt;/P&gt;&lt;P&gt;&amp;nbsp; permit tcp host 192.168.13.250 any eq www&lt;/P&gt;&lt;P&gt;&amp;nbsp; deny&amp;nbsp;&amp;nbsp; ip any any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Squid server:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iptunnel add gre1 mode gre remote [external IP of router] local 10.10.10.2 dev eth0&lt;/P&gt;&lt;P&gt;ip addr add 10.10.10.2/32 dev gre1&lt;/P&gt;&lt;P&gt;ip link set gre1 up&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;echo 1 &amp;gt; /proc/sys/net/ipv4/ip_forward&lt;/P&gt;&lt;P&gt;echo 0 &amp;gt; /proc/sys/net/ipv4/conf/default/rp_filter&lt;/P&gt;&lt;P&gt;echo 0 &amp;gt; /proc/sys/net/ipv4/conf/all/rp_filter&lt;/P&gt;&lt;P&gt;echo 0 &amp;gt; /proc/sys/net/ipv4/conf/eth0/rp_filter&lt;/P&gt;&lt;P&gt;echo 0 &amp;gt; /proc/sys/net/ipv4/conf/lo/rp_filter&lt;/P&gt;&lt;P&gt;echo 0 &amp;gt; /proc/sys/net/ipv4/conf/gre1/rp_filter&lt;/P&gt;&lt;P&gt;iptables -t nat -A PREROUTING -i gre1 -p tcp -m tcp --dport 80 -j DNAT --to-destination 10.10.10.2:3128&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;squid.conf:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;acl manager proto cache_object&lt;/P&gt;&lt;P&gt;acl localhost src 127.0.0.1/32 ::1&lt;/P&gt;&lt;P&gt;acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1&lt;/P&gt;&lt;P&gt;acl localnet src 192.168.13.0/24&lt;/P&gt;&lt;P&gt;acl SSL_ports port 443&lt;/P&gt;&lt;P&gt;acl Safe_ports port 80&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # http&lt;/P&gt;&lt;P&gt;acl Safe_ports port 21&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # ftp&lt;/P&gt;&lt;P&gt;acl Safe_ports port 443&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # https&lt;/P&gt;&lt;P&gt;acl Safe_ports port 70&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # gopher&lt;/P&gt;&lt;P&gt;acl Safe_ports port 210&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # wais&lt;/P&gt;&lt;P&gt;acl Safe_ports port 1025-65535&amp;nbsp;&amp;nbsp;&amp;nbsp; # unregistered ports&lt;/P&gt;&lt;P&gt;acl Safe_ports port 280&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # http-mgmt&lt;/P&gt;&lt;P&gt;acl Safe_ports port 488&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # gss-http&lt;/P&gt;&lt;P&gt;acl Safe_ports port 591&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # filemaker&lt;/P&gt;&lt;P&gt;acl Safe_ports port 777&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # multiling http&lt;/P&gt;&lt;P&gt;acl CONNECT method CONNECT&lt;/P&gt;&lt;P&gt;http_access allow manager localhost&lt;/P&gt;&lt;P&gt;http_access deny manager&lt;/P&gt;&lt;P&gt;http_access deny !Safe_ports&lt;/P&gt;&lt;P&gt;http_access deny CONNECT !SSL_ports&lt;/P&gt;&lt;P&gt;http_access allow localnet&lt;/P&gt;&lt;P&gt;http_access allow localhost&lt;/P&gt;&lt;P&gt;http_access deny all&lt;/P&gt;&lt;P&gt;http_port 3128 transparent&lt;/P&gt;&lt;P&gt;hierarchy_stoplist cgi-bin ?&lt;/P&gt;&lt;P&gt;coredump_dir /var/spool/squid&lt;/P&gt;&lt;P&gt;refresh_pattern ^ftp:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1440&amp;nbsp;&amp;nbsp;&amp;nbsp; 20%&amp;nbsp;&amp;nbsp;&amp;nbsp; 10080&lt;/P&gt;&lt;P&gt;refresh_pattern ^gopher:&amp;nbsp;&amp;nbsp;&amp;nbsp; 1440&amp;nbsp;&amp;nbsp;&amp;nbsp; 0%&amp;nbsp;&amp;nbsp;&amp;nbsp; 1440&lt;/P&gt;&lt;P&gt;refresh_pattern -i (/cgi-bin/|\?) 0&amp;nbsp;&amp;nbsp;&amp;nbsp; 0%&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;refresh_pattern .&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp; 20%&amp;nbsp;&amp;nbsp;&amp;nbsp; 4320&lt;/P&gt;&lt;P&gt;wccp2_router 10.10.10.1&lt;/P&gt;&lt;P&gt;wccp_version 4&lt;/P&gt;&lt;P&gt;wccp2_forwarding_method gre&lt;/P&gt;&lt;P&gt;wccp2_return_method gre&lt;/P&gt;&lt;P&gt;wccp2_service standard 0&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 23:04:42 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/squid3-transparent-proxy-using-wccp/m-p/1896032#M437342</guid>
      <dc:creator>vzvonarov1</dc:creator>
      <dc:date>2019-03-11T23:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: squid3 transparent proxy using wccp</title>
      <link>https://community.cisco.com/t5/network-security/squid3-transparent-proxy-using-wccp/m-p/1896033#M437344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anyone? Perhaps I'm missing commands on the Cisco to setup the GRE tunnel? Could it be that I'm missing something like &lt;A href="http://beeznest.wordpress.com/2008/07/14/gre-tunnels-between-cisco-and-linux-routers-using-iproute/"&gt;this&lt;/A&gt;?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2012 14:10:06 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/squid3-transparent-proxy-using-wccp/m-p/1896033#M437344</guid>
      <dc:creator>vzvonarov1</dc:creator>
      <dc:date>2012-06-01T14:10:06Z</dc:date>
    </item>
    <item>
      <title>squid3 transparent proxy using wccp</title>
      <link>https://community.cisco.com/t5/network-security/squid3-transparent-proxy-using-wccp/m-p/1896034#M437346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow! After weeks of trying to get this to work (on and off), and reading every howto on google relating to wccp and squid, I finally came across a line on some website that read:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"For Squid to work with WCCP2 and the Cisco firewall, the Squid server must be on a common subnet with the web client..."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As soon as I made this happen, everything finally started working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2012 15:42:06 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/squid3-transparent-proxy-using-wccp/m-p/1896034#M437346</guid>
      <dc:creator>vzvonarov1</dc:creator>
      <dc:date>2012-06-08T15:42:06Z</dc:date>
    </item>
    <item>
      <title>squid3 transparent proxy using wccp</title>
      <link>https://community.cisco.com/t5/network-security/squid3-transparent-proxy-using-wccp/m-p/1896035#M437349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;congratulations&amp;nbsp; ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i want to ask u ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can we enable ipv6 to work with squid cache 3 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have u tried it ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Nov 2012 09:18:31 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/squid3-transparent-proxy-using-wccp/m-p/1896035#M437349</guid>
      <dc:creator>Dr.X</dc:creator>
      <dc:date>2012-11-17T09:18:31Z</dc:date>
    </item>
    <item>
      <title>squid3 transparent proxy using wccp</title>
      <link>https://community.cisco.com/t5/network-security/squid3-transparent-proxy-using-wccp/m-p/1896036#M437352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;OL&gt;&lt;LI&gt;No idea&lt;/LI&gt;&lt;LI&gt;Your grammar is terrible. English is my second language and I would never write like that - even online. Please take some lessons in grammar - unless of course you write bad on purpose, in which case, please stop.&lt;/LI&gt;&lt;LI&gt;Your question has very little to do with the topic of this thread&lt;/LI&gt;&lt;LI&gt;This thread has been dead for almost 6 months (assuming that one guy talking to himself could be considered alive in the first place). You may want to start a new topic for your question&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Nov 2012 15:01:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/squid3-transparent-proxy-using-wccp/m-p/1896036#M437352</guid>
      <dc:creator>vzvonarov1</dc:creator>
      <dc:date>2012-11-17T15:01:43Z</dc:date>
    </item>
    <item>
      <title>squid3 transparent proxy using wccp</title>
      <link>https://community.cisco.com/t5/network-security/squid3-transparent-proxy-using-wccp/m-p/1896037#M437355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;thanks for your reply ,&lt;/P&gt;&lt;P&gt;i think that talking about squid cache in all fourms in the internet will dead the post , i dont know why .&lt;/P&gt;&lt;P&gt;it may be most of people dont like to deal with &lt;SPAN __jive_emoticon_name="confused" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/4.5.4/images/tiny_mce3/plugins/jiveemoticons/images/spacer.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyway , i would like to ask you special questions about only squid&amp;nbsp; operation in linux .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can i ask you ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Nov 2012 16:54:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/squid3-transparent-proxy-using-wccp/m-p/1896037#M437355</guid>
      <dc:creator>Dr.X</dc:creator>
      <dc:date>2012-11-17T16:54:43Z</dc:date>
    </item>
    <item>
      <title>squid3 transparent proxy using wccp</title>
      <link>https://community.cisco.com/t5/network-security/squid3-transparent-proxy-using-wccp/m-p/1896038#M437357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have a squid question for me that has nothing to do with this topic, you might want to send me a private message instead of continuing to post here. Also, I'm not a squid expert, and you might be better off trying the squid mailing lists where the real experts are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.squid-cache.org/Support/mailing-lists.html"&gt;http://www.squid-cache.org/Support/mailing-lists.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;They are always active, and always happy to answer squid questions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Nov 2012 17:10:55 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/squid3-transparent-proxy-using-wccp/m-p/1896038#M437357</guid>
      <dc:creator>vzvonarov1</dc:creator>
      <dc:date>2012-11-17T17:10:55Z</dc:date>
    </item>
  </channel>
</rss>

