<?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: Iptable forwarding code needed in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318245#M86151</link>
    <description>I'm pretty sure I have this licked but...&lt;BR /&gt;&lt;BR /&gt;I'm willing to hand out another bunny.&lt;BR /&gt;&lt;BR /&gt;The last section of Stuart's code doesn't work. The I option doesn't work and I can't seem to debug it.&lt;BR /&gt;&lt;BR /&gt;The real issue here was the W2K3 server.&lt;BR /&gt;&lt;BR /&gt;The default firewall setup blocked VPN. Since there are already two firewalls inclduing this one between the public Internet and the W2K3 box, I've shut down the firewall on Windows.&lt;BR /&gt;&lt;BR /&gt;Still, I'd like this code to work well.&lt;BR /&gt;&lt;BR /&gt;A bunny for the fix to Stuart's code(8 points if he fixes it himself ) and a bunny for someone two translates it to /etc/sysconfig/iptables format.&lt;BR /&gt;&lt;BR /&gt;Lazy,need the project in the bag. YES!&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Fri, 23 Jul 2004 14:22:24 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2004-07-23T14:22:24Z</dc:date>
    <item>
      <title>Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318241#M86147</link>
      <description>I need to forward port 47 and 1723 and maybe 500,1701, and 4500 to an internal Windows 2003 Server.&lt;BR /&gt;&lt;BR /&gt;I have looked at many suggestions but need a proven Windows 2003 Server solution.&lt;BR /&gt;&lt;BR /&gt;See this thread if there are issues that need to be dealt with on the Windows 2003 Server side.&lt;BR /&gt;&lt;BR /&gt;Linux ES 3.0 2.4.x kernel iptables, two NIC. eth0 is on the public internet, eth1 is on the internal.&lt;BR /&gt;&lt;BR /&gt;I am travelling the next two weeks, but can reconfigure the firewall. I can't test it and there may be a long delay in point assignment.&lt;BR /&gt;&lt;BR /&gt;Points for all participation, but if the solution isn't proven to work with Windows 2003 Server you have no chance of getting bunny or near bunny pointage.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 29 Jun 2004 10:45:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318241#M86147</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-06-29T10:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318242#M86148</link>
      <description>The link:&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=624076" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=624076&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 29 Jun 2004 10:48:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318242#M86148</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-06-29T10:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318243#M86149</link>
      <description>(Re-type 2: I hit 'clear' instead of preview *sob*sob*sob*)&lt;BR /&gt;&lt;BR /&gt;Although not tested with W2K3 specifically, the following rules are the sort of things required:&lt;BR /&gt;&lt;BR /&gt;filter:-&lt;BR /&gt;&lt;BR /&gt;iptables -t filter -N VPNIn&lt;BR /&gt;iptables -t filter -N VPNOut&lt;BR /&gt;&lt;BR /&gt;iptables -t filter -A VPNIn -p tcp --dport 47 -j ACCEPT&lt;BR /&gt;iptables -t filter -A VPNIn -p tcp --dport 500 -j ACCEPT&lt;BR /&gt;iptables -t filter -A VPNIn -p tcp --dport 1701 -j ACCEPT&lt;BR /&gt;iptables -t filter -A VPNIn -p tcp --dport 1723 -j ACCEPT&lt;BR /&gt;iptables -t filter -A VPNIn -p tcp --dport 4500 -j ACCEPT&lt;BR /&gt;&lt;BR /&gt;iptables -t filter -A VPNOut -p tcp --sport 47 -j ACCEPT&lt;BR /&gt;iptables -t filter -A VPNOut -p tcp --sport 500 -j ACCEPT&lt;BR /&gt;iptables -t filter -A VPNOut -p tcp --sport 1701 -j ACCEPT&lt;BR /&gt;iptables -t filter -A VPNOut -p tcp --sport 1723 -j ACCEPT&lt;BR /&gt;iptables -t filter -A VPNOut -p tcp --sport 4500 -j ACCEPT&lt;BR /&gt;&lt;BR /&gt;iptables -t filter -I FORWARD -j VPNIn -i eth0 -o eth1&lt;BR /&gt;iptables -t filter -I FORWARD -j VPNOut -i eth1 -o eth0&lt;BR /&gt;&lt;BR /&gt;nat:-&lt;BR /&gt;&lt;BR /&gt;iptables -t nat I PREROUTING -j DNAT -i eth0 -p tcp --dport 47 --to W2K3IP:47&lt;BR /&gt;iptables -t nat I PREROUTING -j DNAT -i eth0 -p tcp --dport 500 --to W2K3IP:47&lt;BR /&gt;iptables -t nat I PREROUTING -j DNAT -i eth0 -p tcp --dport 1701 --to W2K3IP:47&lt;BR /&gt;iptables -t nat I PREROUTING -j DNAT -i eth0 -p tcp --dport 1723 --to W2K3IP:47&lt;BR /&gt;iptables -t nat I PREROUTING -j DNAT -i eth0 -p tcp --dport 4500 --to W2K3IP:47&lt;BR /&gt;&lt;BR /&gt;Discussion:-&lt;BR /&gt;&lt;BR /&gt;We've done this using W2K before on older Linux boxes, but as we were using a specific VPN style (port 1723), we only had one rule a piece.&lt;BR /&gt;&lt;BR /&gt;As the data will be going both ways, we need the VPNIn traffic (from external sites) and the VPNOut traffic (from the server, you could tie that down to a given '-s W2K3IP' if you wanted, but *shrug*) allowed through the 'FORWARD' chain.  A '-m state --state ESTABLISHED,RELATED' might cover it but I'm not 100% sure about that.&lt;BR /&gt;&lt;BR /&gt;The DNAT rules in the Nat tables translate the external connection to the specified ports to the internal machine 'W2K3IP'.</description>
      <pubDate>Tue, 29 Jun 2004 19:08:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318243#M86149</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2004-06-29T19:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318244#M86150</link>
      <description>I am sorry for the point delay Stuart. I just don't have access to the Windows 2003 server for tests. I believe your solution will solve the problem and essentially provide my chosen users the access they get on my internal network.&lt;BR /&gt;&lt;BR /&gt;So 10 points without a test. What can I say.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 13 Jul 2004 13:59:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318244#M86150</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-07-13T13:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318245#M86151</link>
      <description>I'm pretty sure I have this licked but...&lt;BR /&gt;&lt;BR /&gt;I'm willing to hand out another bunny.&lt;BR /&gt;&lt;BR /&gt;The last section of Stuart's code doesn't work. The I option doesn't work and I can't seem to debug it.&lt;BR /&gt;&lt;BR /&gt;The real issue here was the W2K3 server.&lt;BR /&gt;&lt;BR /&gt;The default firewall setup blocked VPN. Since there are already two firewalls inclduing this one between the public Internet and the W2K3 box, I've shut down the firewall on Windows.&lt;BR /&gt;&lt;BR /&gt;Still, I'd like this code to work well.&lt;BR /&gt;&lt;BR /&gt;A bunny for the fix to Stuart's code(8 points if he fixes it himself ) and a bunny for someone two translates it to /etc/sysconfig/iptables format.&lt;BR /&gt;&lt;BR /&gt;Lazy,need the project in the bag. YES!&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 23 Jul 2004 14:22:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318245#M86151</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-07-23T14:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318246#M86152</link>
      <description>Oh&lt;BR /&gt;&lt;BR /&gt;-I&lt;BR /&gt;&lt;BR /&gt;Duh.&lt;BR /&gt;&lt;BR /&gt;If someone wants to translate this to config format, it would be appreciated and rewarded.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 23 Jul 2004 14:25:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318246#M86152</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-07-23T14:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318247#M86153</link>
      <description>Yea, sorry about that.. Didn't notice it.&lt;BR /&gt;&lt;BR /&gt;For the 'etc/sysconfig/iptables' format, just drop 'iptables -t &lt;TABLE&gt;' off the head of each of them, and preceed the table section with ':table', i.e.:&lt;BR /&gt;&lt;BR /&gt;&lt;INTO existing=""&gt;&lt;BR /&gt;:VPNIn - [0:0]&lt;BR /&gt;[0:0] -A VPNIn -p tcp --dport 47 -j ACCEPT&lt;BR /&gt;[0:0] -A VPNIn -p tcp --dport 500 -j ACCEPT&lt;BR /&gt;[0:0] -A VPNIn -p tcp --dport 1701 -j ACCEPT&lt;BR /&gt;[0:0] -A VPNIn -p tcp --dport 1723 -j ACCEPT&lt;BR /&gt;[0:0] -A VPNIn -p tcp --dport 4500 -j ACCEPT&lt;BR /&gt;:VPNOut - [0:0]&lt;BR /&gt;[0:0] -A VPNOut -p tcp --sport 47 -j ACCEPT&lt;BR /&gt;[0:0] -A VPNOut -p tcp --sport 500 -j ACCEPT&lt;BR /&gt;[0:0] -A VPNOut -p tcp --sport 1701 -j ACCEPT&lt;BR /&gt;[0:0] -A VPNOut -p tcp --sport 1723 -j ACCEPT&lt;BR /&gt;[0:0] -A VPNOut -p tcp --sport 4500 -j ACCEPT&lt;BR /&gt;&lt;INTO your="" existing="" forward="" section=""&gt;&lt;BR /&gt;[0:0] -I FORWARD -j VPNIn -i eth0 -o eth1&lt;BR /&gt;[0:0] -I FORWARD -j VPNOut -i eth1 -o eth0&lt;BR /&gt;&lt;BR /&gt;&lt;INTO existing=""&gt;&lt;BR /&gt;&lt;INTO existing="" prerouting="" section=""&gt;&lt;BR /&gt;[0:0] -I PREROUTING -j DNAT -i eth0 -p tcp --dport 47 --to W2K3IP:47&lt;BR /&gt;[0:0] -I PREROUTING -j DNAT -i eth0 -p tcp --dport 500 --to W2K3IP:47&lt;BR /&gt;[0:0] -I PREROUTING -j DNAT -i eth0 -p tcp --dport 1701 --to W2K3IP:47&lt;BR /&gt;[0:0] -I PREROUTING -j DNAT -i eth0 -p tcp --dport 1723 --to W2K3IP:47&lt;BR /&gt;[0:0] -I PREROUTING -j DNAT -i eth0 -p tcp --dport 4500 --to W2K3IP:47&lt;/INTO&gt;&lt;/INTO&gt;&lt;/INTO&gt;&lt;/INTO&gt;&lt;/TABLE&gt;</description>
      <pubDate>Sun, 25 Jul 2004 19:48:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318247#M86153</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2004-07-25T19:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318248#M86154</link>
      <description>What I did Stuart was this:&lt;BR /&gt;&lt;BR /&gt;service iptables restart&lt;BR /&gt;&lt;BR /&gt;then i ran my corrections on your code as a script.&lt;BR /&gt;&lt;BR /&gt;then i ran iptables-save &amp;gt; /etc/sysconfig/iptables&lt;BR /&gt;&lt;BR /&gt;this of course after a backup.&lt;BR /&gt;&lt;BR /&gt;Worked like a champ.&lt;BR /&gt;&lt;BR /&gt;The only issue I have left is W2K3 Server says it doesn't have a certificate.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 26 Jul 2004 11:16:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318248#M86154</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-07-26T11:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318249#M86155</link>
      <description>Can't help you with that one.  Haven't touched W2K3 at all.</description>
      <pubDate>Mon, 26 Jul 2004 18:44:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318249#M86155</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2004-07-26T18:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318250#M86156</link>
      <description>Wondering if i should see these little packets passing through on the firewall log. Somehow I'm back to not answering as a response again. Infuriating.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 26 Jul 2004 20:14:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318250#M86156</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-07-26T20:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318251#M86157</link>
      <description>I'd like a way to verify once and for all if the packets are being passed through. I don't think they are.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 26 Jul 2004 20:43:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318251#M86157</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-07-26T20:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318252#M86158</link>
      <description>Two ways:&lt;BR /&gt;&lt;BR /&gt;1) watch the counters.  you should see the packet/byte values for the appropriate rules increase.&lt;BR /&gt;&lt;BR /&gt;2) tcpdump.  Tie one to each interface that the packets are traversing, and watch as they come in one, and out the other with a different address.</description>
      <pubDate>Tue, 27 Jul 2004 00:15:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318252#M86158</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2004-07-27T00:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318253#M86159</link>
      <description>I'll add three other points to Stuart's :&lt;BR /&gt;&lt;BR /&gt;. Why not temporarly add logging to forwarding rules ? You could then see what's happening.&lt;BR /&gt;. Why not try the applications that are acessing this ports and see if they are running ?&lt;BR /&gt;. Use telnet on specified ports.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Tue, 27 Jul 2004 05:13:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318253#M86159</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2004-07-27T05:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318254#M86160</link>
      <description>Watch the counters?&lt;BR /&gt;&lt;BR /&gt;How? Which ones?&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 27 Jul 2004 09:45:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318254#M86160</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-07-27T09:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318255#M86161</link>
      <description>09:40:09.738866 shell2.speakeasy.net.56236 &amp;gt; jerusalem.investmenttool.com.1723: S 1612265629:1612265629(0) win 5840 &lt;MSS 1460=""&gt; (DF)&lt;BR /&gt;&lt;BR /&gt;So, was the packet forwarded?&lt;BR /&gt;&lt;BR /&gt;SEP&lt;/MSS&gt;</description>
      <pubDate>Tue, 27 Jul 2004 09:53:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318255#M86161</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-07-27T09:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318256#M86162</link>
      <description>SEP to watch network tratic i use iptraf from root if you do not have this use &lt;BR /&gt;# tcpdump eth0 &lt;BR /&gt;&lt;BR /&gt;then try connection to the "forward port" from a system on the Internet to your ip using&lt;BR /&gt;&lt;BR /&gt;#telnet 'ip_address' 'port_number'&lt;BR /&gt;&lt;BR /&gt;this should feed your "iptraf or tcpdump" and should also log into /etc/var/* &lt;BR /&gt;&lt;BR /&gt;I hope this helps your or else I am not getting the whole picture...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Jean-Pierre</description>
      <pubDate>Tue, 27 Jul 2004 11:31:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318256#M86162</guid>
      <dc:creator>Huc_1</dc:creator>
      <dc:date>2004-07-27T11:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318257#M86163</link>
      <description>I'm going to run a tcpdump with a full vpn test.&lt;BR /&gt;&lt;BR /&gt;Its now obvious to me that some port that Microsoft needs to authenticate with is being blocked by the firewall.&lt;BR /&gt;&lt;BR /&gt;I say this because on the internal network the VPN connects without error.&lt;BR /&gt;&lt;BR /&gt;So guy's we missed something. I am willing to prove this by forwarding ALL traffic to the Microsoft server.&lt;BR /&gt;&lt;BR /&gt;It would still be useful if someone who actually did a Linux firewall forward to a Windows 2003 VPN server chimed in. We're gonna get this bear.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 27 Jul 2004 11:38:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318257#M86163</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-07-27T11:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318258#M86164</link>
      <description>Sorry SEP &lt;BR /&gt;Had not read/seen your last message.&lt;BR /&gt;&lt;BR /&gt;I think this means the package has been forwarded but perhaps it is rejected by W-2003&lt;BR /&gt;&lt;BR /&gt;perhaps you could get ethereal for the W-2003 and see what it see ?&lt;BR /&gt;&lt;BR /&gt;Jean-Pierre&lt;BR /&gt;</description>
      <pubDate>Tue, 27 Jul 2004 11:38:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318258#M86164</guid>
      <dc:creator>Huc_1</dc:creator>
      <dc:date>2004-07-27T11:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318259#M86165</link>
      <description>Great idea Huc.&lt;BR /&gt;&lt;BR /&gt;Thats why you got the rabbit.&lt;BR /&gt;&lt;BR /&gt;Going to do that. That should prove definitively where the problem is. Gotta know where the issue is before you can fix it.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 27 Jul 2004 11:58:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318259#M86165</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-07-27T11:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: Iptable forwarding code needed</title>
      <link>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318260#M86166</link>
      <description>Fred,&lt;BR /&gt;&lt;BR /&gt;Though there is no way you could know that, full logging is enabled.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 27 Jul 2004 11:59:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/iptable-forwarding-code-needed/m-p/3318260#M86166</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-07-27T11:59:52Z</dc:date>
    </item>
  </channel>
</rss>

