<?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: LINUX as a router in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/linux-as-a-router/m-p/4846605#M86803</link>
    <description>Closed...</description>
    <pubDate>Thu, 24 Feb 2005 13:01:34 GMT</pubDate>
    <dc:creator>Norman_21</dc:creator>
    <dc:date>2005-02-24T13:01:34Z</dc:date>
    <item>
      <title>LINUX as a router</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-as-a-router/m-p/4846600#M86798</link>
      <description>Hi guys,&lt;BR /&gt;&lt;BR /&gt;I have a laptop without a floppy drive, I'm trying to configure my linux as a router with cable modem internet connection but most of the documents that I went through, states that I have to creat a floppy drive. anyone can advise please for step by step configuration without having to boot from a floppy drive.&lt;BR /&gt;appreciate your support.</description>
      <pubDate>Tue, 01 Oct 2002 19:18:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-as-a-router/m-p/4846600#M86798</guid>
      <dc:creator>Norman_21</dc:creator>
      <dc:date>2002-10-01T19:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: LINUX as a router</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-as-a-router/m-p/4846601#M86799</link>
      <description>Are you trying to run Linux on your laptop?  Do you have two NIC's on the Linux machine?  I think that you should look at the ipchains documentation for NAT'ing devices.&lt;BR /&gt;&lt;BR /&gt;GL,&lt;BR /&gt;C</description>
      <pubDate>Tue, 01 Oct 2002 19:27:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-as-a-router/m-p/4846601#M86799</guid>
      <dc:creator>Craig Rants</dc:creator>
      <dc:date>2002-10-01T19:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: LINUX as a router</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-as-a-router/m-p/4846602#M86800</link>
      <description>Hi Craig,&lt;BR /&gt;&lt;BR /&gt;Yes, that's exactly the case. I do have two NICs in my loptop. Could you provide me with some good links for configuring the IPCHAINS as NAT.</description>
      <pubDate>Wed, 02 Oct 2002 02:01:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-as-a-router/m-p/4846602#M86800</guid>
      <dc:creator>Norman_21</dc:creator>
      <dc:date>2002-10-02T02:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: LINUX as a router</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-as-a-router/m-p/4846603#M86801</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;try this link:&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x14d20bce6f33d6118fff0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x14d20bce6f33d6118fff0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;or do a search here itself on IPCHAINS. You have tons of information.&lt;BR /&gt;&lt;BR /&gt;Also, an example Linux ipchains NAT:&lt;BR /&gt;==============================&lt;BR /&gt;Linux 2.2 redirecting eth0 TCP port 80 to Squid on port 3128 &lt;BR /&gt;Kernel options: &lt;BR /&gt;CONFIG_IP_FIREWALL=y &lt;BR /&gt;&lt;BR /&gt;CONFIG_IP_ALWAYS_DEFRAG=y &lt;BR /&gt;ipchains ruleset &lt;BR /&gt;# Accept local traffic &lt;BR /&gt;&lt;BR /&gt;ipchains -A input -j ACCEPT -i eth0 -d 10.11.12.13/32 &lt;BR /&gt;# Redirect port 80 to Squid on port 3128 &lt;BR /&gt;ipchains -A input -j REDIRECT 3128 -i eth0 -p tcp -d 0.0.0.0/0 80&lt;BR /&gt;&lt;BR /&gt;==============================&lt;BR /&gt;&lt;BR /&gt;Hope this helps!&lt;BR /&gt;Best Regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Wed, 02 Oct 2002 02:57:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-as-a-router/m-p/4846603#M86801</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2002-10-02T02:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: LINUX as a router</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-as-a-router/m-p/4846604#M86802</link>
      <description>Have you thought about upgrading to IPTables ?&lt;BR /&gt;I use to use IPChains and the rules get VERY messy if you want to use the advanced filtering features.&lt;BR /&gt;&lt;BR /&gt;IPTables is a HUGE improvement in packet handling and also will allow you to do simple NAT (NAT Overload Mode) in one single command, something impossible with IPchains.&lt;BR /&gt;&lt;BR /&gt;It takes abit of time to get use to them but I assue you, you will not regret it once you get the hang of them.&lt;BR /&gt;&lt;BR /&gt;If you have used IPchains and understand them, then IPTables will be easy for you.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;Chris P.&lt;BR /&gt;&lt;A href="http://www.firewall.cx" target="_blank"&gt;www.firewall.cx&lt;/A&gt;</description>
      <pubDate>Fri, 11 Oct 2002 14:43:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-as-a-router/m-p/4846604#M86802</guid>
      <dc:creator>Admin32_1</dc:creator>
      <dc:date>2002-10-11T14:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: LINUX as a router</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-as-a-router/m-p/4846605#M86803</link>
      <description>Closed...</description>
      <pubDate>Thu, 24 Feb 2005 13:01:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-as-a-router/m-p/4846605#M86803</guid>
      <dc:creator>Norman_21</dc:creator>
      <dc:date>2005-02-24T13:01:34Z</dc:date>
    </item>
  </channel>
</rss>

