<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: IPFW3 and NAT	</title>
	<atom:link href="https://www.dragonflydigest.com/2015/06/24/ipfw3-and-nat/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.dragonflydigest.com/2015/06/24/ipfw3-and-nat/</link>
	<description>A running description of activity related to DragonFly BSD.</description>
	<lastBuildDate>Thu, 21 Jan 2016 00:50:20 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
	<item>
		<title>
		By: bycn82		</title>
		<link>https://www.dragonflydigest.com/2015/06/24/ipfw3-and-nat/comment-page-1/#comment-357069</link>

		<dc:creator><![CDATA[bycn82]]></dc:creator>
		<pubDate>Thu, 21 Jan 2016 00:50:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.dragonflydigest.com/?p=16307#comment-357069</guid>

					<description><![CDATA[the ipfw3 doc has been moved to https://www.dragonflybsd.org/docs/ipfw3/]]></description>
			<content:encoded><![CDATA[<p>the ipfw3 doc has been moved to <a href="https://www.dragonflybsd.org/docs/ipfw3/" rel="nofollow ugc">https://www.dragonflybsd.org/docs/ipfw3/</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: bycn82		</title>
		<link>https://www.dragonflydigest.com/2015/06/24/ipfw3-and-nat/comment-page-1/#comment-347642</link>

		<dc:creator><![CDATA[bycn82]]></dc:creator>
		<pubDate>Fri, 26 Jun 2015 08:57:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.dragonflydigest.com/?p=16307#comment-347642</guid>

					<description><![CDATA[Nice,
I like your script, it is clean and clear.]]></description>
			<content:encoded><![CDATA[<p>Nice,<br />
I like your script, it is clean and clear.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nobody		</title>
		<link>https://www.dragonflydigest.com/2015/06/24/ipfw3-and-nat/comment-page-1/#comment-347603</link>

		<dc:creator><![CDATA[Nobody]]></dc:creator>
		<pubDate>Thu, 25 Jun 2015 20:59:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.dragonflydigest.com/?p=16307#comment-347603</guid>

					<description><![CDATA[Is pf also an in-kernel NAT in Dfly?]]></description>
			<content:encoded><![CDATA[<p>Is pf also an in-kernel NAT in Dfly?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: DragonCanFly		</title>
		<link>https://www.dragonflydigest.com/2015/06/24/ipfw3-and-nat/comment-page-1/#comment-347601</link>

		<dc:creator><![CDATA[DragonCanFly]]></dc:creator>
		<pubDate>Thu, 25 Jun 2015 20:09:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.dragonflydigest.com/?p=16307#comment-347601</guid>

					<description><![CDATA[&#062;&#062; it is a in-kernel NAT
&#062;&#062;
What does it mean?]]></description>
			<content:encoded><![CDATA[<p>&gt;&gt; it is a in-kernel NAT<br />
&gt;&gt;<br />
What does it mean?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nans		</title>
		<link>https://www.dragonflydigest.com/2015/06/24/ipfw3-and-nat/comment-page-1/#comment-347570</link>

		<dc:creator><![CDATA[Nans]]></dc:creator>
		<pubDate>Thu, 25 Jun 2015 13:19:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.dragonflydigest.com/?p=16307#comment-347570</guid>

					<description><![CDATA[I&#039;ve made some small changes and it worked like a charm (INT-NIC: bnx0, OUT-NIC: bnx1):

#!/bin/sh
kldload ipfw3_nat
kldload ipfw3_layer4

ipfw3 flush

ipfw3 add allow all via lo0
ipfw3 add allow all via bnx0

ipfw3 nat 1 config if bnx1
ipfw3 add nat 1 tcp via bnx1

ipfw3 add check-state
ipfw3 add deny tcp established
ipfw3 add allow all out via bnx1 keep-state

ipfw3 add deny all]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve made some small changes and it worked like a charm (INT-NIC: bnx0, OUT-NIC: bnx1):</p>
<p>#!/bin/sh<br />
kldload ipfw3_nat<br />
kldload ipfw3_layer4</p>
<p>ipfw3 flush</p>
<p>ipfw3 add allow all via lo0<br />
ipfw3 add allow all via bnx0</p>
<p>ipfw3 nat 1 config if bnx1<br />
ipfw3 add nat 1 tcp via bnx1</p>
<p>ipfw3 add check-state<br />
ipfw3 add deny tcp established<br />
ipfw3 add allow all out via bnx1 keep-state</p>
<p>ipfw3 add deny all</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anonymous		</title>
		<link>https://www.dragonflydigest.com/2015/06/24/ipfw3-and-nat/comment-page-1/#comment-347542</link>

		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Thu, 25 Jun 2015 02:39:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.dragonflydigest.com/?p=16307#comment-347542</guid>

					<description><![CDATA[it is a in-kernel NAT]]></description>
			<content:encoded><![CDATA[<p>it is a in-kernel NAT</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
