<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>"Technically" Advanced &#187; NAT</title>
	<atom:link href="http://www.lecaptain.org/tag/nat/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lecaptain.org</link>
	<description>Random thoughts, words, deeds, and sometimes, even something technical!</description>
	<lastBuildDate>Tue, 06 Jan 2009 03:22:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Cisco IOS Port Range Forwarding</title>
		<link>http://www.lecaptain.org/cisco/cisco-ios-port-range-forwarding/</link>
		<comments>http://www.lecaptain.org/cisco/cisco-ios-port-range-forwarding/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 03:12:49 +0000</pubDate>
		<dc:creator>Curt</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[NAT]]></category>
		<category><![CDATA[PAT]]></category>
		<category><![CDATA[Port Forwards]]></category>

		<guid isPermaLink="false">http://www.lecaptain.org/?p=15</guid>
		<description><![CDATA[Do you find yourself annoyed, as I do, with having to enter a NAT statement for each port forward?  Want to fix that?  Here&#8217;s how I do it:
Assumption is that we&#8217;re using a device like an 871 Router, where FastEthernet4 is our Outside Interface, and we&#8217;re using an internal IP scheme of 192.168.1.0/24, and the [...]]]></description>
			<content:encoded><![CDATA[<p>Do you find yourself annoyed, as I do, with having to enter a NAT statement for each port forward?  Want to fix that?  Here&#8217;s how I do it:</p>
<p>Assumption is that we&#8217;re using a device like an 871 Router, where FastEthernet4 is our Outside Interface, and we&#8217;re using an internal IP scheme of 192.168.1.0/24, and the internal IP address that we&#8217;re port forwarding to is 192.168.1.10, and we want to port forward the ports 6800-7000 TCP and 5100-5105 UDP:</p>
<pre>ip nat inside source route-map NAT_MAP interface FastEthernet4 overload
ip nat pool POOL_NAME 192.168.1.10 192.168.1.10 netmask 255.255.255.0 type rotary
ip nat destination list DEST_LIST pool POOL_NAME
!
ip access-list extended DEST_LIST
 permit tcp any any range 6800 7000
 permit udp any any range 5100 5105</pre>
<p>This will forward the ports 6800-7000 TCP and 5100-5105 UDP to 192.168.1.10 using the IP address that is on the outside interface FastEthernet4.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lecaptain.org/cisco/cisco-ios-port-range-forwarding/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

