<?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 Re: Squid proxy // Problem in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/squid-proxy-problem/m-p/4466968#M82222</link>
    <description>Ok, so your clients all have their default gateway pointing to the switch, which uses static routes directed towards the squid server.&lt;BR /&gt;&lt;BR /&gt;If your clients have an actual proxy config, such that the browsers specifically look for your squid server by ip, but have a different default gateway (the switch, which then goes where?) we need more info again.&lt;BR /&gt;&lt;BR /&gt;You still haven't clarified whether or not your squid server is a transparent proxy as it could very well be in this situation. If it is which I suspect, you probably have an iptables rule to redirect 80/443 into 3128, correct? You can simply masq icmp with an iptables rule as well and perform nat. Any rule I write is likely not going to work without seeing your actual config. Post your iptables config with any sanitized private info.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 29 Jul 2009 03:37:07 GMT</pubDate>
    <dc:creator>Joseph L. Casale</dc:creator>
    <dc:date>2009-07-29T03:37:07Z</dc:date>
    <item>
      <title>Squid proxy // Problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/squid-proxy-problem/m-p/4466963#M82217</link>
      <description>All Concern,&lt;BR /&gt;Good Day.&lt;BR /&gt;My LAN user's are having problem while using squid proxy server. They can't ping external network (i,e:&lt;A href="http://www.google.com)from" target="_blank"&gt;www.google.com)from&lt;/A&gt; the LAN. I want my LAN users will never get Internet connectivity for browsing without the proxy server but they must ping to the outer world.&lt;BR /&gt;&lt;BR /&gt;How do i solve the problem.&lt;BR /&gt;&lt;BR /&gt;My Configurations:&lt;BR /&gt;# grep -v "^#" /etc/squid/squid.conf | sed -e '/^$/d'&lt;BR /&gt;&lt;BR /&gt;http_port 3128&lt;BR /&gt;hierarchy_stoplist cgi-bin ?&lt;BR /&gt;acl QUERY urlpath_regex cgi-bin \?&lt;BR /&gt;cache deny QUERY&lt;BR /&gt;acl apache rep_header Server ^Apache&lt;BR /&gt;broken_vary_encoding allow apache&lt;BR /&gt;access_log /var/log/squid/access.log squid&lt;BR /&gt;refresh_pattern ^ftp:           1440    20%     10080&lt;BR /&gt;refresh_pattern ^gopher:        1440    0%      1440&lt;BR /&gt;refresh_pattern .               0       20%     4320&lt;BR /&gt;acl all src 0.0.0.0/0.0.0.0&lt;BR /&gt;acl manager proto cache_object&lt;BR /&gt;acl localhost src 127.0.0.1/255.255.255.255&lt;BR /&gt;acl to_localhost dst 127.0.0.0/8&lt;BR /&gt;acl SSL_ports port 443&lt;BR /&gt;acl Safe_ports port 80          # http&lt;BR /&gt;acl Safe_ports port 21          # ftp&lt;BR /&gt;acl Safe_ports port 443         # https&lt;BR /&gt;acl Safe_ports port 70          # gopher&lt;BR /&gt;acl Safe_ports port 210         # wais&lt;BR /&gt;acl Safe_ports port 1025-65535  # unregistered ports&lt;BR /&gt;acl Safe_ports port 280         # http-mgmt&lt;BR /&gt;acl Safe_ports port 488         # gss-http&lt;BR /&gt;acl Safe_ports port 591         # filemaker&lt;BR /&gt;acl Safe_ports port 777         # multiling http&lt;BR /&gt;acl CONNECT method CONNECT&lt;BR /&gt;acl deny dstdom_regex "/etc/squid/squid-block"&lt;BR /&gt;http_access deny deny&lt;BR /&gt;http_access allow manager localhost&lt;BR /&gt;http_access deny manager&lt;BR /&gt;http_access deny !Safe_ports&lt;BR /&gt;http_access deny CONNECT !SSL_ports&lt;BR /&gt;acl NNC src 172.16.10.0/24&lt;BR /&gt;http_access allow NNC&lt;BR /&gt;http_access allow localhost&lt;BR /&gt;http_access deny all&lt;BR /&gt;http_reply_access allow all&lt;BR /&gt;icp_access allow all&lt;BR /&gt;visible_hostname NNC&lt;BR /&gt;coredump_dir /var/spool/squid&lt;BR /&gt;&lt;BR /&gt;Regards;</description>
      <pubDate>Mon, 27 Jul 2009 04:29:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/squid-proxy-problem/m-p/4466963#M82217</guid>
      <dc:creator>txtraz</dc:creator>
      <dc:date>2009-07-27T04:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Squid proxy // Problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/squid-proxy-problem/m-p/4466964#M82218</link>
      <description>You would solve that problem by proxying icmp with an application that can:) Squid is web proxy, not "any" protocol proxy.&lt;BR /&gt;&lt;BR /&gt;Not knowing your network topology, I can't tell you how to do it. Your hosts wont instinctively send icmp through a configured proxy so you need to allow this on the default gateway they use. If that is in fact the proxy, and you redirect 80 into 3128, then you could also create iptables rules to masq icmp for them as well...</description>
      <pubDate>Mon, 27 Jul 2009 23:04:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/squid-proxy-problem/m-p/4466964#M82218</guid>
      <dc:creator>Joseph L. Casale</dc:creator>
      <dc:date>2009-07-27T23:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: Squid proxy // Problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/squid-proxy-problem/m-p/4466965#M82219</link>
      <description>Thanks for your response but i'm not clear what i've to do. Can you please let me know the specific in this regards.&lt;BR /&gt;&lt;BR /&gt;It' will be very best for me if you let me know the step by step.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks once again</description>
      <pubDate>Tue, 28 Jul 2009 08:12:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/squid-proxy-problem/m-p/4466965#M82219</guid>
      <dc:creator>txtraz</dc:creator>
      <dc:date>2009-07-28T08:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: Squid proxy // Problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/squid-proxy-problem/m-p/4466966#M82220</link>
      <description>I need more details about your lan.&lt;BR /&gt;&lt;BR /&gt;How are you specifying the proxy to the clients?&lt;BR /&gt;&lt;BR /&gt;What is the clients default gateway? What acts as your default gateway, is it a router, firewall, Linux server performing masquerading etc?</description>
      <pubDate>Tue, 28 Jul 2009 10:23:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/squid-proxy-problem/m-p/4466966#M82220</guid>
      <dc:creator>Joseph L. Casale</dc:creator>
      <dc:date>2009-07-28T10:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Squid proxy // Problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/squid-proxy-problem/m-p/4466967#M82221</link>
      <description>Dood day.&lt;BR /&gt;Actually my proxy server is connected to a VLAN. There is 14VLAN in a  Core Switch with intervlan routing. All traffic from different vlan are comming to my Proxy server via the core switch for Internet connectivity. All the VLAN's gatewate are connected to my Proxy Server with static routing.&lt;BR /&gt;&lt;BR /&gt;Now i want all my LAN users will be able to ping outerworld (i,e; &lt;A href="http://www.google.com)" target="_blank"&gt;www.google.com)&lt;/A&gt; but they must not get internet with the proxy server.&lt;BR /&gt;&lt;BR /&gt;Please help me in this regards..&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Wed, 29 Jul 2009 02:32:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/squid-proxy-problem/m-p/4466967#M82221</guid>
      <dc:creator>txtraz</dc:creator>
      <dc:date>2009-07-29T02:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: Squid proxy // Problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/squid-proxy-problem/m-p/4466968#M82222</link>
      <description>Ok, so your clients all have their default gateway pointing to the switch, which uses static routes directed towards the squid server.&lt;BR /&gt;&lt;BR /&gt;If your clients have an actual proxy config, such that the browsers specifically look for your squid server by ip, but have a different default gateway (the switch, which then goes where?) we need more info again.&lt;BR /&gt;&lt;BR /&gt;You still haven't clarified whether or not your squid server is a transparent proxy as it could very well be in this situation. If it is which I suspect, you probably have an iptables rule to redirect 80/443 into 3128, correct? You can simply masq icmp with an iptables rule as well and perform nat. Any rule I write is likely not going to work without seeing your actual config. Post your iptables config with any sanitized private info.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 29 Jul 2009 03:37:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/squid-proxy-problem/m-p/4466968#M82222</guid>
      <dc:creator>Joseph L. Casale</dc:creator>
      <dc:date>2009-07-29T03:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: Squid proxy // Problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/squid-proxy-problem/m-p/4466969#M82223</link>
      <description>Please check the IPTABLES&lt;BR /&gt;----------------------------------&lt;BR /&gt;&lt;BR /&gt;[root@proxy ~]# cat /etc/sysconfig/iptables&lt;BR /&gt;# Firewall configuration written by system-config-securitylevel&lt;BR /&gt;# Manual customization of this file is not recommended.&lt;BR /&gt;*filter&lt;BR /&gt;:INPUT ACCEPT [0:0]&lt;BR /&gt;:FORWARD ACCEPT [0:0]&lt;BR /&gt;:OUTPUT ACCEPT [0:0]&lt;BR /&gt;:RH-Firewall-1-INPUT - [0:0]&lt;BR /&gt;-A INPUT -j RH-Firewall-1-INPUT&lt;BR /&gt;-A FORWARD -j RH-Firewall-1-INPUT&lt;BR /&gt;-A RH-Firewall-1-INPUT -i lo -j ACCEPT&lt;BR /&gt;-A RH-Firewall-1-INPUT -i eth1 -j ACCEPT&lt;BR /&gt;-A RH-Firewall-1-INPUT -i eth0 -j ACCEPT&lt;BR /&gt;-A RH-Firewall-1-INPUT -p icmp --icmp-type any -j ACCEPT&lt;BR /&gt;-A RH-Firewall-1-INPUT -p 50 -j ACCEPT&lt;BR /&gt;-A RH-Firewall-1-INPUT -p 51 -j ACCEPT&lt;BR /&gt;-A RH-Firewall-1-INPUT -p udp --dport 5353 -d 224.0.0.251 -j ACCEPT&lt;BR /&gt;-A RH-Firewall-1-INPUT -p udp -m udp --dport 631 -j ACCEPT&lt;BR /&gt;-A RH-Firewall-1-INPUT -p tcp -m tcp --dport 631 -j ACCEPT&lt;BR /&gt;-A RH-Firewall-1-INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT&lt;BR /&gt;-A RH-Firewall-1-INPUT -j REJECT --reject-with icmp-host-prohibited&lt;BR /&gt;COMMIT&lt;BR /&gt;# Generated by webmin&lt;BR /&gt;*mangle&lt;BR /&gt;:FORWARD ACCEPT [0:0]&lt;BR /&gt;:INPUT ACCEPT [0:0]&lt;BR /&gt;:OUTPUT ACCEPT [0:0]&lt;BR /&gt;:PREROUTING ACCEPT [0:0]&lt;BR /&gt;:POSTROUTING ACCEPT [0:0]&lt;BR /&gt;COMMIT&lt;BR /&gt;# Completed&lt;BR /&gt;# Generated by webmin&lt;BR /&gt;*nat&lt;BR /&gt;:OUTPUT ACCEPT [0:0]&lt;BR /&gt;:PREROUTING ACCEPT [0:0]&lt;BR /&gt;:POSTROUTING ACCEPT [0:0]&lt;BR /&gt;COMMIT&lt;BR /&gt;# Completed&lt;BR /&gt;[root@proxy ~]# iptables -L&lt;BR /&gt;Chain INPUT (policy ACCEPT)&lt;BR /&gt;target     prot opt source               destination         &lt;BR /&gt;RH-Firewall-1-INPUT  all  --  anywhere             anywhere            &lt;BR /&gt;&lt;BR /&gt;Chain FORWARD (policy ACCEPT)&lt;BR /&gt;target     prot opt source               destination         &lt;BR /&gt;RH-Firewall-1-INPUT  all  --  anywhere             anywhere            &lt;BR /&gt;&lt;BR /&gt;Chain OUTPUT (policy ACCEPT)&lt;BR /&gt;target     prot opt source               destination         &lt;BR /&gt;&lt;BR /&gt;Chain RH-Firewall-1-INPUT (2 references)&lt;BR /&gt;target     prot opt source               destination         &lt;BR /&gt;ACCEPT     all  --  anywhere             anywhere            &lt;BR /&gt;ACCEPT     all  --  anywhere             anywhere            &lt;BR /&gt;ACCEPT     all  --  anywhere             anywhere            &lt;BR /&gt;ACCEPT     icmp --  anywhere             anywhere            icmp any &lt;BR /&gt;ACCEPT     esp  --  anywhere             anywhere            &lt;BR /&gt;ACCEPT     ah   --  anywhere             anywhere            &lt;BR /&gt;ACCEPT     udp  --  anywhere             224.0.0.251         udp dpt:mdns &lt;BR /&gt;ACCEPT     udp  --  anywhere             anywhere            udp dpt:ipp &lt;BR /&gt;ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:ipp &lt;BR /&gt;ACCEPT     all  --  anywhere             anywhere            state RELATED,ESTABLISHED &lt;BR /&gt;REJECT     all  --  anywhere             anywhere            reject-with icmp-host-prohibited &lt;BR /&gt;[root@proxy ~]# &lt;BR /&gt;</description>
      <pubDate>Wed, 29 Jul 2009 05:02:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/squid-proxy-problem/m-p/4466969#M82223</guid>
      <dc:creator>txtraz</dc:creator>
      <dc:date>2009-07-29T05:02:01Z</dc:date>
    </item>
  </channel>
</rss>

