<?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>Guru Informatico Evasoft &#187; NAT</title>
	<atom:link href="http://www.blog.evasoftperu.com/tag/nat/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blog.evasoftperu.com</link>
	<description>Conocimiento Hecho Blog</description>
	<lastBuildDate>Wed, 15 Sep 2010 20:20:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ejemplo de Configuracion NAT Dinamico en Routers Cisco</title>
		<link>http://www.blog.evasoftperu.com/2009/12/05/ejemplo-de-configuracion-nat-dinamico-en-routers-cisco/</link>
		<comments>http://www.blog.evasoftperu.com/2009/12/05/ejemplo-de-configuracion-nat-dinamico-en-routers-cisco/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 16:33:16 +0000</pubDate>
		<dc:creator>Gouken</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Configuración]]></category>
		<category><![CDATA[Dinamico]]></category>
		<category><![CDATA[Ejemplo]]></category>
		<category><![CDATA[NAT]]></category>
		<category><![CDATA[Routers]]></category>

		<guid isPermaLink="false">http://www.blog.evasoftperu.com/?p=142</guid>
		<description><![CDATA[El NAT dinamico está diseñado para mapear una dirección IP privada a una dirección pública de entre un pool de direcciones públicas ya establecido. Es decir, Cualquier dirección IP pública de este pool se asigna a un host de la red interna.
1) Primero definir un pool de direcciones (las direcciones públicas que nos asigne nuestro [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-143   alignright" title="logo_cisco" src="http://www.blog.evasoftperu.com/wp-content/uploads/2009/12/logo_cisco.jpg" alt="logo_cisco" width="159" height="100" />El <strong><a title="nat" href="http://www.adslfaqs.com.ar/que-es-nat-network-address-translation/">NAT</a> </strong>dinamico está diseñado para mapear una dirección <strong>IP privada </strong>a <strong>una dirección pública </strong>de entre un <strong>pool de direcciones públicas </strong>ya establecido. Es decir, Cualquier dirección <strong>IP pública </strong>de este <strong>pool </strong>se asigna a un <strong>host de la red interna</strong>.</p>
<p><strong>1)</strong> Primero definir un pool de direcciones (las direcciones públicas que nos asigne nuestro ISP)<br />
<span style="color: #0000ff;">Router-Cisco</span><span style="color: #0000ff;">#configure treminal<br />
</span><span style="color: #0000ff;">Router-Cisco</span><span style="color: #0000ff;">(config)# ip nat pool 1 200.42.1.1 200.42.1.10 netmask 255.255.255.0</span></p>
<p><strong>2)</strong> Crear una lista de acceso estándard que permita las direcciones internas que se deben traducir.<br />
<span style="color: #0000ff;">Router-Cisco</span><span style="color: #0000ff;">(config)# access-list 1 permit 172.16.129.0 0 0.0.0.255</span></p>
<p><strong>3)</strong> Configurar la <strong>NAT <a style="cursor: hand; color: #006600; border-bottom: 1px dotted; text-decoration: underline;" onclick="hwClick2117744(undefined);return false;" onmouseover="hw2117744(event, this, 'undefined'); this.style.cursor='hand'; this.style.textDecoration='underline'; this.style.borderBottom='solid';" onmouseout="hideMaybe('HOTWordsTitle'); this.style.cursor='hand'; this.style.textDecoration='underline'; this.style.borderBottom='dotted 1px'; " href="http://www.adslfaqs.com.ar/ejemplo-de-configuracion-nat-dinamico-en-routers-cisco/#">dinamico</a> </strong>basada en la dirección de origen especificando la lista de acceso definida en el paso anterior.<br />
<span style="color: #0000ff;">Router-Cisco</span><span style="color: #0000ff;">(config)# ip nat inside source list 1 pool 1</span></p>
<p><strong>4)</strong> Especificar la interfaz interna y marcarla como <a style="cursor: hand; color: #006600; border-bottom: 1px dotted; text-decoration: underline;" onclick="hwClick0117744(undefined);return false;" onmouseover="hw0117744(event, this, 'undefined'); this.style.cursor='hand'; this.style.textDecoration='underline'; this.style.borderBottom='solid';" onmouseout="hideMaybe('HOTWordsTitle'); this.style.cursor='hand'; this.style.textDecoration='underline'; this.style.borderBottom='dotted 1px'; " href="http://www.adslfaqs.com.ar/ejemplo-de-configuracion-nat-dinamico-en-routers-cisco/#">conectada</a> al interior.<br />
<span style="color: #0000ff;">Router-Cisco</span><span style="color: #0000ff;">(config)# interface etherne 0<br />
</span><span style="color: #0000ff;">Router-Cisco</span><span style="color: #0000ff;">(config-if)# ip nat inside<br />
</span><span style="color: #0000ff;">Router-Cisco</span><span style="color: #0000ff;">(config-if)# exit </span></p>
<p><strong>5)</strong> Especificar la interfaz externa y marcarla como conectada al exterior.<br />
<span style="color: #0000ff;">Router-Cisco</span><span style="color: #0000ff;">(config)# interface serial 0<br />
</span><span style="color: #0000ff;">Router-Cisco</span><span style="color: #0000ff;">(config)# ip nat outside</span></p>
<p>Comandos para verificación de la <strong>tabla NAT</strong></p>
<p><span style="color: #0000ff;">show ip nat translations<br />
show ip nat statistics<br />
debug ip nat</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.evasoftperu.com/2009/12/05/ejemplo-de-configuracion-nat-dinamico-en-routers-cisco/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

