<?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: IP Nating problem in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/ip-nating-problem/m-p/3968420#M82760</link>
    <description>If it stopped working when you removed squid from the router-machine, chances are that you need to change the browser on the client to _not_ use proxy any more. If the router machine NATÂ´s all traffic from the local net it should work fine. &lt;BR /&gt;&lt;BR /&gt;- Jarle</description>
    <pubDate>Mon, 26 Mar 2007 14:17:10 GMT</pubDate>
    <dc:creator>Jarle Bjorgeengen</dc:creator>
    <dc:date>2007-03-26T14:17:10Z</dc:date>
    <item>
      <title>IP Nating problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ip-nating-problem/m-p/3968417#M82757</link>
      <description>hi &lt;BR /&gt;I was using IP forwarding and proxy for internet in RHEL 3 Advance server. After changing ISP's IP, I removed sqied.&lt;BR /&gt;Now i can  browse from server. I can ping DNS, Yahoo, Google etc from client end but can't browse.&lt;BR /&gt;&lt;BR /&gt;Please help me how to browse from client end.&lt;BR /&gt;&lt;BR /&gt;best regard&lt;BR /&gt;shahid&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 25 Mar 2007 03:03:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ip-nating-problem/m-p/3968417#M82757</guid>
      <dc:creator>Mohammed Shahidul Islam</dc:creator>
      <dc:date>2007-03-25T03:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: IP Nating problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ip-nating-problem/m-p/3968418#M82758</link>
      <description>Hi Mohammed,&lt;BR /&gt;&lt;BR /&gt;Did you check the client side proxy settings well. &lt;BR /&gt;&lt;BR /&gt;May be the client is still using the old ISP setup for the proxy.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Rasheed Tamton.</description>
      <pubDate>Sun, 25 Mar 2007 05:45:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ip-nating-problem/m-p/3968418#M82758</guid>
      <dc:creator>Rasheed Tamton</dc:creator>
      <dc:date>2007-03-25T05:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: IP Nating problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ip-nating-problem/m-p/3968419#M82759</link>
      <description>Shahid,&lt;BR /&gt;&lt;BR /&gt;Open Firefox and select the "tools-&amp;gt;Options-&amp;gt;Advanced-&amp;gt;Network-&amp;gt;Settings" and ensure that you are set-up to directly access the Internet.&lt;BR /&gt;&lt;BR /&gt;From the shell prompt enter: "dig &lt;A href="http://www.ibm.com" target="_blank"&gt;www.ibm.com&lt;/A&gt;" or some site you regularly use, to ensure that DNS is working. Next run: "wget &lt;A href="http://www.ibm.com" target="_blank"&gt;www.ibm.com&lt;/A&gt;" to ensure you get a valid response (lot's of text) from the site.&lt;BR /&gt;&lt;BR /&gt;Assuming this works then the only problems remaining are routing, nameserver and IP-Addressing problems, all of which should be discussed with your ISP.</description>
      <pubDate>Mon, 26 Mar 2007 02:08:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ip-nating-problem/m-p/3968419#M82759</guid>
      <dc:creator>Andrew Cowan</dc:creator>
      <dc:date>2007-03-26T02:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: IP Nating problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ip-nating-problem/m-p/3968420#M82760</link>
      <description>If it stopped working when you removed squid from the router-machine, chances are that you need to change the browser on the client to _not_ use proxy any more. If the router machine NATÂ´s all traffic from the local net it should work fine. &lt;BR /&gt;&lt;BR /&gt;- Jarle</description>
      <pubDate>Mon, 26 Mar 2007 14:17:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ip-nating-problem/m-p/3968420#M82760</guid>
      <dc:creator>Jarle Bjorgeengen</dc:creator>
      <dc:date>2007-03-26T14:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: IP Nating problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ip-nating-problem/m-p/3968421#M82761</link>
      <description>Check your clients browser configuration, as already been said. If no proxy is configured on the clients, there's a good chance your linux server is redirecting HTTP requests to itself (transparent proxy) or just blocking them so the users have to use your proxy. It can also be a forwarding problem.&lt;BR /&gt;&lt;BR /&gt;The following commands may solve your problem but they will loosen up the security in your firewall regarding client access to the internet. These are just for testing purposes. You should improve these rules using by specifying the authorized clients/destinations for your network.&lt;BR /&gt;&lt;BR /&gt;iptables -t nat -I PREROUTING -p tcp -dport 80 -j ACCEPT&lt;BR /&gt;iptables -I FORWARD -p tcp --dport 80 -j ACCEPT&lt;BR /&gt;iptables -I FORWARD -p tcp --sport 80 -m state --state ESTABLISHED,RELATED -j ACCEPT&lt;BR /&gt;&lt;BR /&gt;Try it and let us know how it goes.&lt;BR /&gt;&lt;BR /&gt;To remove those rules from your firewall just retype them replacing the -I with -D.&lt;BR /&gt;&lt;BR /&gt;Bruno Facca&lt;BR /&gt;</description>
      <pubDate>Tue, 27 Mar 2007 06:12:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ip-nating-problem/m-p/3968421#M82761</guid>
      <dc:creator>Bruno Facca</dc:creator>
      <dc:date>2007-03-27T06:12:47Z</dc:date>
    </item>
  </channel>
</rss>

