<?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>TodoTecnologia.net &#187; directorio</title>
	<atom:link href="http://www.todotecnologia.net/tag/directorio/feed" rel="self" type="application/rss+xml" />
	<link>http://www.todotecnologia.net</link>
	<description>Todotecnologia.net es un blog dedicado a crear tutoriales de herramientas informáticas y dar a conocer las novedades de la Tecnología haciendo enfasis en la informática y las telecomunicaciones.</description>
	<lastBuildDate>Fri, 23 Jul 2010 18:49:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Manual para instalar y configurar un Servidor DNS en Linux</title>
		<link>http://www.todotecnologia.net/tutorial-instalar-y-configurar-servidor-dns-en-linux-mint-ubuntu-debian-con-bind.htm</link>
		<comments>http://www.todotecnologia.net/tutorial-instalar-y-configurar-servidor-dns-en-linux-mint-ubuntu-debian-con-bind.htm#comments</comments>
		<pubDate>Thu, 27 Aug 2009 17:21:46 +0000</pubDate>
		<dc:creator>ju4ns3</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Informática]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[archivos]]></category>
		<category><![CDATA[directorio]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Instalar]]></category>
		<category><![CDATA[IP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[manual]]></category>
		<category><![CDATA[Mint]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[servidor]]></category>
		<category><![CDATA[sistema]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.todotecnologia.net/?p=1250</guid>
		<description><![CDATA[Hoy les comparto un pequeño y fácil manual para la instalación y la configuración de un servidor DNS en nuestras máquinas Linux. En mi caso lo hice en Linux Mint 7, por lo que funciona también en distribuciones basadas en debian, como Ubuntu. En otros sistemas como fedora, es muy similar, lo que cambia es [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Hoy les comparto un pequeño y fácil manual para la instalación y la configuración de un servidor DNS en nuestras máquinas Linux. En mi caso lo hice en Linux Mint 7, por lo que funciona también en distribuciones basadas en debian, como Ubuntu. En otros sistemas como fedora, es muy similar, lo que cambia es la ubicación de los archivos.</p>
<p style="text-align: center;">
<p style="text-align: center;"><img class="size-full wp-image-1258 aligncenter" title="DNS" src="http://www.todotecnologia.net/wp-content/uploads/2009/08/DNS.jpg" alt="DNS Manual para instalar y configurar un Servidor DNS en Linux" width="377" height="226" /></p>
<p style="text-align: justify;"><span id="more-1250"></span></p>
<p style="text-align: justify;">Para los que no saben, DNS (Domain Name Server) es una base de datos distribuida, que contiene la información para traducir los nombres de dominio, es decir, los nombres que usamos habitualmente para entrar a cualquier página en internet, como www.google.com, o www.facebook.com, a las direcciones IP de los servidores que alojan dichas web&#8217;s y viceversa.</p>
<p style="text-align: justify;">Para configurar el DNS vamos a utilizar un servidor muy conocido en la red, llamado BIND. Este es un servidor que permite configurar de una manera muy sencilla nuestro DNS, y funciona a la perfección.</p>
<p style="text-align: justify;">Ahora empecemos con el manual.</p>
<p style="text-align: justify;">1. Instalar el Bind, para lo que escribimos en una terminal:</p>
<p style="text-align: justify;"><span style="color: #3366ff;">sudo apt-get install bind9 dnsutils</span>, si no te funciona, actualiza tus repositorios con el comando sudo <span style="color: #3366ff;">apt-get update &amp;&amp; apt-get upgrade</span>, y luego vuelve a intentar.</p>
<p style="text-align: justify;">2. Al haber finalizado la instalación, detenemos el servicio con el comando</p>
<p style="text-align: justify;"><span style="color: #3366ff;">sudo /etc/init.d/bind9 stop</span></p>
<p style="text-align: justify;">3. Ahora pasamos a configurar los archivos más importantes. El primero de ellos es el Resolv.conf, donde se encuentra la información del dominio al que perteneces y el servidor de nombres de dominio que estás usando. Para entrar a configurar el archivo usamos el siguiente comando:</p>
<p style="text-align: justify;"><span style="color: #3366ff;">sudo gedit /etc/resolv.conf</span>, dentro del archivo cambiamos los dominios, por el que nosotros queramos usar, para este manual el dominio va a ser juanse.com, pero puedes utilizar el que quieras. El archivo debe quedar de la siguiente manera:</p>
<p style="text-align: justify;"><span style="color: #000080;">domain juanse.com</span></p>
<p style="text-align: justify;"><span style="color: #000080;">search juanse.com</span></p>
<p style="text-align: justify;"><span style="color: #000080;">nameserver 10.0.19.21 #Esta es la dirección de red local de tu pc, en donde se va a instalar el DNS</span></p>
<p style="text-align: justify;"><span style="color: #000080;">nameserver 10.0.18.1 #Esta puede ser o tu servidor de DNS preferido o tu gateway</span></p>
<p style="text-align: justify;">Hay que tener en cuenta, que este archivo se cambia automáticamente cada que se cambia la configuración de la red, o se conecta a una red diferente.</p>
<p style="text-align: justify;">4. Ahora configuramos el archivo named.conf.options y descomentamos las lneas que dice forwarders, de la siguiente manera:</p>
<p style="text-align: justify;"><span style="color: #3366ff;">sudo gedit /etc/bind/named.conf.options</span></p>
<p style="text-align: justify;"><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } --></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;">forwarders {sudo gedit /etc/bind/named.conf.options</span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;">4.2.2.2; #Utilizar DNS valida o la que tengamos con el proveedor ISP.</span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;">};</span></p>
<p style="margin-bottom: 0cm; text-align: justify;">Con la dirección de ejemplo 4.2.2.2 funciona sin problemas.</p>
<p style="margin-bottom: 0cm; text-align: justify;">5. Creación de las zonas: Para este manual, vamos a crear dos zonas, una que va a manejar mi nombre de dominio, y la otra va a manejar las direcciones reversas. Para las zonas recomiendo crear un directorio llamado zones o como quieras.</p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #3366ff;">sudo mkdir /etc/bind/zones</span></p>
<p style="margin-bottom: 0cm; text-align: justify;">Allí creamos la primera zona que la llamaremos como mi nombre de dominio &#8220;juanse.com&#8221;:</p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #3366ff;">sudo gedit /etc/bind/zones/juanse.com</span>, allí copiamos lo siguiente</p>
<p style="text-align: justify;"><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } --></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">$TTL 3D </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><br />
</span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">@       IN      SOA     ns1.juanse.com. hostmaster.juanse.com. ( </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">200808161       ; serial, fecha AAAA-MM-DD + serial </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;"> 8H              ; refrescamiento, en segundos </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;"> 2H              ; reentrar, segundos </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;"> 4W              ; expira, segundos </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;"> 1D )            ; minimo, segundos </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">; </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">TXT     &#8220;juanse.com, servicio de DNS&#8221; </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">NS      ns1             ; Direccion Inet del servidor de dominio </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">NS      ns2 </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">MX      10 mail        ; Exchanger de Mail primario </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">localhost         A        127.0.0.1 </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">juanse.com.     A        10.0.19.21 </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">ns1                     A        10.0.19.21 </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">ns2                     A        10.0.19.21 </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">www                     CNAME    ns1 </span></span></p>
<p style="margin-bottom: 0cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">correo               CNAME    ns2</span></span></p>
<p style="text-align: justify;">No olviden cambiar juanse.com por el dominio que hayan escogido. Pueden colocar cuantos NS (Nameservers) quieran, y el CNAME (canonic name) sirve para asignarle el nombre a cualquiera de los ns. Por ejemplo al final del manual, voy a poder hacerle un ping a correo.juanse.com o www.juanse.com. El comando A, lo que hace es traducir el dominio a las direcciones ip, para que el computador las reconozca.</p>
<p style="text-align: justify;">6. El siguiente paso es crear la zona para las direcciones en reversa, la creamos de la misma forma que la anterior y en el mismo directorio. Para este manual, la llame 10.0 por lo que estoy trabajando en ese segmento.</p>
<p style="text-align: justify;"><span style="color: #3366ff;">sudo gedit /etc/bind/zones/10.0</span>, allí copiamos lo siguiente:</p>
<p style="text-align: justify;"><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } --></p>
<p style="margin-bottom: 0.5cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">$TTL   86400 </span></span></p>
<p style="margin-bottom: 0.5cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">@            IN SOA       juanse.com.       hostmaster.juanse.com. ( </span></span></p>
<p style="margin-bottom: 0.5cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;"> 200808051   ; serial (d. adams) </span></span></p>
<p style="margin-bottom: 0.5cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;"> 8H          ; refresh </span></span></p>
<p style="margin-bottom: 0.5cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;"> 2H          ; retry </span></span></p>
<p style="margin-bottom: 0.5cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;"> 1W          ; expiry </span></span></p>
<p style="margin-bottom: 0.5cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;"> 1D )        ; minimum </span></span></p>
<p style="margin-bottom: 0.5cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">; </span></span></p>
<p style="margin-bottom: 0.5cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">@     IN            NS    juanse.com. </span></span></p>
<p style="margin-bottom: 0.5cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">19.21                        PTR         juanse.com. </span></span></p>
<p style="margin-bottom: 0.5cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">19.21         IN          PTR          correo.juanse.com. </span></span></p>
<p style="margin-bottom: 0.5cm; text-align: justify;"><span style="color: #000080;"><span style="font-family: DejaVu Sans Mono,sans-serif;">;Estaciones</span></span></p>
<p style="margin-bottom: 0.5cm; text-align: justify;">El comando PTR sirve para convertir las direcciones ip en los nombres de dominio, no olviden cambiar juanse.com por el dominio que hayan escogido. Observen que solo estoy asignando los ultimos dos octetos de mi dirección ip 10.0.19.21. en el siguiente paso se darán cuenta porque.</p>
<p style="margin-bottom: 0.5cm; text-align: justify;">7. El paso siguiente es modificar el archivo named.conf.local, de la siguiente manera:</p>
<p style="margin-bottom: 0.5cm; text-align: justify;"><span style="color: #3366ff;">sudo gedit /etc/bind/named.conf.local</span>, y allí vamos a copiar las dos zonas que acabamos de crear:</p>
<p style="text-align: justify;"><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } --></p>
<pre style="margin-bottom: 0.5cm; text-align: justify;"><span style="color: #000080;">zone "juanse.com" {
        type master;
        file "/etc/bind/zones/juanse.com";
	};

	zone "0.10.in-addr.arpa" IN {
        type master;
        file "/etc/bind/zones/10.0";
        allow-update { none; };
};</span></pre>
<p style="text-align: justify;">Fíjense en la segunda zona, llamada zone &#8220;0.10.in-addr.arpa&#8221; IN {, noten que estoy utilizando los dos primeros octetos en forma inversa, es decir 10.0, y es por esta razón que en la zona como tal, se deben utilizar los ultimos dos octetos. Esto puede ser modificado para que solo se usen uno dos o tres octetos.</p>
<p style="margin-bottom: 0.5cm; text-align: justify;">Esto es todo, lo último que hay que hacer es reiniciar el servicio bind con el comando sudo <span style="color: #3366ff;">/etc/init.d/bind9 restart</span>. Para probar nuestro DNS hacemos ping desde una terminal a cualquiera de los dominios que asignamos en las zonas.</p>
<p style="margin-bottom: 0.5cm; text-align: justify;">Por ejemplo ping www.juanse.com ó ns1.juanse.com ó correo.juanse.com.</p>
<pre style="margin-bottom: 0.5cm; text-align: justify;"><a href="http://www.todotecnologia.net/wp-content/uploads/2009/08/ping.png" rel="lightbox[1250]"><img class="aligncenter size-full wp-image-1257" style="border: 0pt none;" title="ping" src="http://www.todotecnologia.net/wp-content/uploads/2009/08/ping.png" border="0" alt="ping Manual para instalar y configurar un Servidor DNS en Linux" width="277" height="173" /></a></pre>
<p style="margin-bottom: 0.5cm; text-align: justify;">Hay varias herramientas con las que se pueden probar los servidores DNS, como lo son nslookup y Dig. Espero les sirva, dudas o comentarios, serán respondidos a la mayor brevedad.</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 2345px; width: 1px; height: 1px; text-align: center;">r las direcciones ip en los nombres de dominio, no olviden cambiar juanse.com por el dominio que hayan</div>
<h3  class="related_post_title">También puede interesarte...</h3><ul class="related_post"><li><a href="http://www.todotecnologia.net/como-configurar-un-servidor-dhcp-en-linux.htm" title="Como configurar un servidor dhcp en linux">Como configurar un servidor dhcp en linux</a></li><li><a href="http://www.todotecnologia.net/descargar-gratis-linux-mint-7-gloria.htm" title="Descargar Gratis Linux Mint 7 Gloria">Descargar Gratis Linux Mint 7 Gloria</a></li><li><a href="http://www.todotecnologia.net/ipod.htm" title="Activar o Desactivar indexación (Búsqueda) en Windows 7">Activar o Desactivar indexación (Búsqueda) en Windows 7</a></li><li><a href="http://www.todotecnologia.net/driver-instalar-y-configurar-lector-de-huellas-digital-en-linux-ubuntu-debian-mint.htm" title="Instalar y Configurar lector de Huellas Digital en Linux">Instalar y Configurar lector de Huellas Digital en Linux</a></li><li><a href="http://www.todotecnologia.net/descargar-linux-mint-7-gloria.htm" title="Descargar Linux Mint 7 &#8220;Gloria&#8221;">Descargar Linux Mint 7 &#8220;Gloria&#8221;</a></li><li><a href="http://www.todotecnologia.net/como-configurar-un-cliente-openvpn-en-windows.htm" title="Cómo configurar un cliente OpenVPN en windows.">Cómo configurar un cliente OpenVPN en windows.</a></li><li><a href="http://www.todotecnologia.net/como-configurar-un-servidor-openvpn-en-windows.htm" title="Cómo configurar un Servidor OpenVPN en Windows.">Cómo configurar un Servidor OpenVPN en Windows.</a></li><li><a href="http://www.todotecnologia.net/descargar-gratis-opera-10-0-ultima-version.htm" title="Descargar Gratis Opera 10.0 Ultima Versión">Descargar Gratis Opera 10.0 Ultima Versión</a></li></ul><!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d1250').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Compartir</em></strong></a>
<br />
<div class="d1250" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.todotecnologia.net%2Ftutorial-instalar-y-configurar-servidor-dns-en-linux-mint-ubuntu-debian-con-bind.htmsubmitHeadline=Manual+para+instalar+y+configurar+un+Servidor+DNS+en+LinuxsubmitSummary=" rel="nofollow" title="Agregar a&nbsp;Buzz"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/buzz.png" title="Agregar a&nbsp;Buzz" alt="Agregar a&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.todotecnologia.net%2Ftutorial-instalar-y-configurar-servidor-dns-en-linux-mint-ubuntu-debian-con-bind.htmtitle=Manual+para+instalar+y+configurar+un+Servidor+DNS+en+Linux" rel="nofollow" title="Agregar a&nbsp;Del.icio.us"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/delicious.png" title="Agregar a&nbsp;Del.icio.us" alt="Agregar a&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2url=http%3A%2F%2Fwww.todotecnologia.net%2Ftutorial-instalar-y-configurar-servidor-dns-en-linux-mint-ubuntu-debian-con-bind.htmtitle=Manual+para+instalar+y+configurar+un+Servidor+DNS+en+Linux" rel="nofollow" title="Agregar a&nbsp;digg"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/digg.png" title="Agregar a&nbsp;digg" alt="Agregar a&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.todotecnologia.net%2Ftutorial-instalar-y-configurar-servidor-dns-en-linux-mint-ubuntu-debian-con-bind.htm" rel="nofollow" title="Agregar a&nbsp;Facebook"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/facebook.png" title="Agregar a&nbsp;Facebook" alt="Agregar a&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=editoutput=popupbkmk=http%3A%2F%2Fwww.todotecnologia.net%2Ftutorial-instalar-y-configurar-servidor-dns-en-linux-mint-ubuntu-debian-con-bind.htmtitle=Manual+para+instalar+y+configurar+un+Servidor+DNS+en+Linux" rel="nofollow" title="Agregar a&nbsp;Google Bookmarks"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/google.png" title="Agregar a&nbsp;Google Bookmarks" alt="Agregar a&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurlbm_url=http%3A%2F%2Fwww.todotecnologia.net%2Ftutorial-instalar-y-configurar-servidor-dns-en-linux-mint-ubuntu-debian-con-bind.htmbm_description=Manual+para+instalar+y+configurar+un+Servidor+DNS+en+Linux" rel="nofollow" title="Agregar a&nbsp;Mister Wong"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Agregar a&nbsp;Mister Wong" alt="Agregar a&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.todotecnologia.net%2Ftutorial-instalar-y-configurar-servidor-dns-en-linux-mint-ubuntu-debian-con-bind.htmT=Manual+para+instalar+y+configurar+un+Servidor+DNS+en+Linux" rel="nofollow" title="Agregar a&nbsp;Netscape"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/netscape.png" title="Agregar a&nbsp;Netscape" alt="Agregar a&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.todotecnologia.net%2Ftutorial-instalar-y-configurar-servidor-dns-en-linux-mint-ubuntu-debian-con-bind.htmtitle=Manual+para+instalar+y+configurar+un+Servidor+DNS+en+Linux" rel="nofollow" title="Agregar a&nbsp;reddit"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/reddit.png" title="Agregar a&nbsp;reddit" alt="Agregar a&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.todotecnologia.net%2Ftutorial-instalar-y-configurar-servidor-dns-en-linux-mint-ubuntu-debian-con-bind.htmtitle=Manual+para+instalar+y+configurar+un+Servidor+DNS+en+Linux" rel="nofollow" title="Agregar a&nbsp;Stumble Upon"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Agregar a&nbsp;Stumble Upon" alt="Agregar a&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.todotecnologia.net%2Ftutorial-instalar-y-configurar-servidor-dns-en-linux-mint-ubuntu-debian-con-bind.htm" rel="nofollow" title="Agregar a&nbsp;Technorati"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/technorati.png" title="Agregar a&nbsp;Technorati" alt="Agregar a&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.todotecnologia.net%2Ftutorial-instalar-y-configurar-servidor-dns-en-linux-mint-ubuntu-debian-con-bind.htm" rel="nofollow" title="Agregar a&nbsp;Tip'd"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/tipd.png" title="Agregar a&nbsp;Tip'd" alt="Agregar a&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Manual+para+instalar+y+configurar+un+Servidor+DNS+en+Linux+@+http%3A%2F%2Fwww.todotecnologia.net%2Ftutorial-instalar-y-configurar-servidor-dns-en-linux-mint-ubuntu-debian-con-bind.htm" rel="nofollow" title="Agregar a&nbsp;Twitter"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/twitter.png" title="Agregar a&nbsp;Twitter" alt="Agregar a&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.todotecnologia.net%2Ftutorial-instalar-y-configurar-servidor-dns-en-linux-mint-ubuntu-debian-con-bind.htmt=Manual+para+instalar+y+configurar+un+Servidor+DNS+en+Linux" rel="nofollow" title="Agregar a&nbsp;Yahoo My Web"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Agregar a&nbsp;Yahoo My Web" alt="Agregar a&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d1250').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.todotecnologia.net/tutorial-instalar-y-configurar-servidor-dns-en-linux-mint-ubuntu-debian-con-bind.htm/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Ver Trailers de las últimas peliculas de cine</title>
		<link>http://www.todotecnologia.net/ver-trailers-de-las-ultimas-peliculas-de-cine.htm</link>
		<comments>http://www.todotecnologia.net/ver-trailers-de-las-ultimas-peliculas-de-cine.htm#comments</comments>
		<pubDate>Tue, 23 Jun 2009 18:25:30 +0000</pubDate>
		<dc:creator>AlejoCendek</dc:creator>
				<category><![CDATA[Informática]]></category>
		<category><![CDATA[directorio]]></category>
		<category><![CDATA[estrenos]]></category>
		<category><![CDATA[peliculas de cine]]></category>
		<category><![CDATA[Tecnologia]]></category>
		<category><![CDATA[trailer]]></category>
		<category><![CDATA[trailers]]></category>
		<category><![CDATA[trailers de peliculas]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.todotecnologia.net/?p=1160</guid>
		<description><![CDATA[Gracias a youtube ya disponemos de un canal digital en el cual podemos ver los trailers oficiales de las películas que están en cartelera, de los próximos estrenos, o simplemente de el trailer que queramos ver. También tenemos la opción de ver los Trailers de peliculas más populares lo cual nos permitirá darnos una idea [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.todotecnologia.net/wp-content/uploads/2009/06/trailers-youtube.jpg" rel="lightbox[1160]"><img class="aligncenter size-full wp-image-1164" style="border: 0px initial initial;" title="trailers youtube" src="http://www.todotecnologia.net/wp-content/uploads/2009/06/trailers-youtube.jpg" alt="trailers youtube" width="415" height="286" border=0 /></a></p>
<p>Gracias a youtube ya disponemos de un canal digital en el cual podemos ver los <em>trailers oficiales de las películas que están en cartelera</em>, de los <em>próximos estrenos</em>, o simplemente de el trailer que queramos ver. También tenemos la opción de ver los <strong>Trailers de peliculas más populares </strong>lo cual nos permitirá darnos una idea de que películas vale la pena ver.</p>
<p>Para ver todo esto basta con entrar a <a href="http://www.youtube.com/trailers?s=trit">http://www.youtube.com/trailers</a> y podremos ver un directorio de trailers completamente interactivo.</p>
<p>Esto que vemos acá es un gran avance para youtube, en cuanto a la publicidad, y también para nosotros los usuarios de youtube a quienes nos gusta el cine, y quisieramos mantener actualizados.</p>
<p>Espero les sea útil!!&#8230;.</p>
<h3  class="related_post_title">También puede interesarte...</h3><ul class="related_post"><li><a href="http://www.todotecnologia.net/descargar-gratis-linux-mint-7-gloria.htm" title="Descargar Gratis Linux Mint 7 Gloria">Descargar Gratis Linux Mint 7 Gloria</a></li><li><a href="http://www.todotecnologia.net/project-natal-xbox-360-que-se-maneja-con-el-cuerpo.htm" title="Project Natal, Xbox 360 que se Maneja con el Cuerpo">Project Natal, Xbox 360 que se Maneja con el Cuerpo</a></li><li><a href="http://www.todotecnologia.net/que-es-google-wave.htm" title="Google Wave, Una nueva Forma de Comunicarnos en la Red">Google Wave, Una nueva Forma de Comunicarnos en la Red</a></li><li><a href="http://www.todotecnologia.net/descargar-nuevo-msn-2010-beta.htm" title="Descargar última Versión de MSN">Descargar última Versión de MSN</a></li><li><a href="http://www.todotecnologia.net/actualizar-adobe-flash-player-parche-de-seguridad.htm" title="Actualizar Adobe Flash Player &#8211; Parche de Seguridad">Actualizar Adobe Flash Player &#8211; Parche de Seguridad</a></li><li><a href="http://www.todotecnologia.net/iniciar-sesion-en-windows-por-reconocimiento-facial.htm" title="Iniciar sesión en Windows por Reconocimiento Facial">Iniciar sesión en Windows por Reconocimiento Facial</a></li><li><a href="http://www.todotecnologia.net/bloquear-y-desbloquear-contactos-en-facebook.htm" title="Cómo Bloquear un amigo en Facebook">Cómo Bloquear un amigo en Facebook</a></li><li><a href="http://www.todotecnologia.net/como-reducir-el-tamano-de-un-documento-word.htm" title="Cómo reducir el Tamaño de un Documento Word">Cómo reducir el Tamaño de un Documento Word</a></li></ul><!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d1160').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Compartir</em></strong></a>
<br />
<div class="d1160" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http%3A%2F%2Fwww.todotecnologia.net%2Fver-trailers-de-las-ultimas-peliculas-de-cine.htmsubmitHeadline=Ver+Trailers+de+las+%C3%BAltimas+peliculas+de+cinesubmitSummary=" rel="nofollow" title="Agregar a&nbsp;Buzz"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/buzz.png" title="Agregar a&nbsp;Buzz" alt="Agregar a&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.todotecnologia.net%2Fver-trailers-de-las-ultimas-peliculas-de-cine.htmtitle=Ver+Trailers+de+las+%C3%BAltimas+peliculas+de+cine" rel="nofollow" title="Agregar a&nbsp;Del.icio.us"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/delicious.png" title="Agregar a&nbsp;Del.icio.us" alt="Agregar a&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2url=http%3A%2F%2Fwww.todotecnologia.net%2Fver-trailers-de-las-ultimas-peliculas-de-cine.htmtitle=Ver+Trailers+de+las+%C3%BAltimas+peliculas+de+cine" rel="nofollow" title="Agregar a&nbsp;digg"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/digg.png" title="Agregar a&nbsp;digg" alt="Agregar a&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.todotecnologia.net%2Fver-trailers-de-las-ultimas-peliculas-de-cine.htm" rel="nofollow" title="Agregar a&nbsp;Facebook"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/facebook.png" title="Agregar a&nbsp;Facebook" alt="Agregar a&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=editoutput=popupbkmk=http%3A%2F%2Fwww.todotecnologia.net%2Fver-trailers-de-las-ultimas-peliculas-de-cine.htmtitle=Ver+Trailers+de+las+%C3%BAltimas+peliculas+de+cine" rel="nofollow" title="Agregar a&nbsp;Google Bookmarks"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/google.png" title="Agregar a&nbsp;Google Bookmarks" alt="Agregar a&nbsp;Google Bookmarks" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurlbm_url=http%3A%2F%2Fwww.todotecnologia.net%2Fver-trailers-de-las-ultimas-peliculas-de-cine.htmbm_description=Ver+Trailers+de+las+%C3%BAltimas+peliculas+de+cine" rel="nofollow" title="Agregar a&nbsp;Mister Wong"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Agregar a&nbsp;Mister Wong" alt="Agregar a&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.todotecnologia.net%2Fver-trailers-de-las-ultimas-peliculas-de-cine.htmT=Ver+Trailers+de+las+%C3%BAltimas+peliculas+de+cine" rel="nofollow" title="Agregar a&nbsp;Netscape"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/netscape.png" title="Agregar a&nbsp;Netscape" alt="Agregar a&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.todotecnologia.net%2Fver-trailers-de-las-ultimas-peliculas-de-cine.htmtitle=Ver+Trailers+de+las+%C3%BAltimas+peliculas+de+cine" rel="nofollow" title="Agregar a&nbsp;reddit"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/reddit.png" title="Agregar a&nbsp;reddit" alt="Agregar a&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.todotecnologia.net%2Fver-trailers-de-las-ultimas-peliculas-de-cine.htmtitle=Ver+Trailers+de+las+%C3%BAltimas+peliculas+de+cine" rel="nofollow" title="Agregar a&nbsp;Stumble Upon"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Agregar a&nbsp;Stumble Upon" alt="Agregar a&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.todotecnologia.net%2Fver-trailers-de-las-ultimas-peliculas-de-cine.htm" rel="nofollow" title="Agregar a&nbsp;Technorati"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/technorati.png" title="Agregar a&nbsp;Technorati" alt="Agregar a&nbsp;Technorati" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http%3A%2F%2Fwww.todotecnologia.net%2Fver-trailers-de-las-ultimas-peliculas-de-cine.htm" rel="nofollow" title="Agregar a&nbsp;Tip'd"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/tipd.png" title="Agregar a&nbsp;Tip'd" alt="Agregar a&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Ver+Trailers+de+las+%C3%BAltimas+peliculas+de+cine+@+http%3A%2F%2Fwww.todotecnologia.net%2Fver-trailers-de-las-ultimas-peliculas-de-cine.htm" rel="nofollow" title="Agregar a&nbsp;Twitter"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/twitter.png" title="Agregar a&nbsp;Twitter" alt="Agregar a&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.todotecnologia.net%2Fver-trailers-de-las-ultimas-peliculas-de-cine.htmt=Ver+Trailers+de+las+%C3%BAltimas+peliculas+de+cine" rel="nofollow" title="Agregar a&nbsp;Yahoo My Web"><img class="social_img" src="http://www.todotecnologia.net/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Agregar a&nbsp;Yahoo My Web" alt="Agregar a&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d1160').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.todotecnologia.net/ver-trailers-de-las-ultimas-peliculas-de-cine.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
