<?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>Comentarios en: Cómo montar un servidor DHCP</title>
	<atom:link href="http://rm-rf.es/como-montar-servidor-dhcp/feed/" rel="self" type="application/rss+xml" />
	<link>http://rm-rf.es/como-montar-servidor-dhcp/</link>
	<description>Administración de sistemas, Unix, Linux, FreeBSD, Windows, hosting, dominios, servidores...</description>
	<lastBuildDate>Wed, 08 Feb 2012 21:17:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Por: joaquin arias</title>
		<link>http://rm-rf.es/como-montar-servidor-dhcp/#comment-16072</link>
		<dc:creator>joaquin arias</dc:creator>
		<pubDate>Sun, 09 Oct 2011 01:44:40 +0000</pubDate>
		<guid isPermaLink="false">http://rm-rf.es/?p=1079#comment-16072</guid>
		<description>Muy bueno</description>
		<content:encoded><![CDATA[<p>Muy bueno</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Cyo</title>
		<link>http://rm-rf.es/como-montar-servidor-dhcp/#comment-15644</link>
		<dc:creator>Cyo</dc:creator>
		<pubDate>Fri, 02 Sep 2011 16:29:33 +0000</pubDate>
		<guid isPermaLink="false">http://rm-rf.es/?p=1079#comment-15644</guid>
		<description>Hola Alex, asi es. de hecho aquí esta mi confoguración:

server-identifier servidor.red-cyo.net;
ddns-update-style interim;
ignore client-updates;
authoritative;
default-lease-time 900;
max-lease-time 7200;
option ip-forwarding off;
option domain-name &quot;red-cyo.net&quot;;

# Copiar tan cual contenido del fichero /etc/rndc.key
# Ésto se utiliza para posteriormente, poder comunicar el servidor DHCP con el
# servidor DNS, y poder gestionar zonas dinámicas desde el servidor DHCP.
# Jamás utilizar la clave ejemplificada a continuación para producción.
key &quot;rndckey&quot; {
    algorithm    hmac-md5;
    secret        &quot;Ab7M6BqFi94hb3cHVhlLkJlFcXwy4gra6Vusw2fI7ebQh25hFln7Oz87wpbC&quot;;
};

shared-network miredcyo {
    subnet 192.168.30.0 netmask 255.255.255.0 {
        option routers 192.168.30.1;
        option subnet-mask 255.255.255.0;
        option broadcast-address 192.168.30.18;
        option domain-name-servers 8.8.8.8, 8.8.4.4;
        option netbios-name-servers 192.168.30.1;
        option ntp-servers 200.23.51.205, 132.248.81.29, 148.234.7.30;
        range 192.168.30.2 192.168.30.11;
    }    
    host cyo {
        option host-name &quot;cyo.red-cyo.net&quot;;
        hardware ethernet 00:xx:xx:xx:xx:xx;
        fixed-address 192.168.30.12;
        }
    host comproom {
        option host-name &quot;comproom.red-cyo.net&quot;;
        hardware ethernet 00:xx:xx:xx:xx:xx;
        fixed-address 192.168.30.13;
        }
    host teacher {
        option host-name &quot;teacher.red-cyo.net&quot;;
        hardware ethernet 00:xx:xx:xx:xx:xx;
        fixed-address 172.16.30.14;
        }
    host nemax {
        option host-name &quot;nemax.red-cyo.net&quot;;
        hardware ethernet 00:xx:xx:xx:xx:xx;
        fixed-address 192.168.30.15;
        }
    host apeng {
        option host-name &quot;apeng.red-cyo.net&quot;;
        hardware ethernet 00:xx:xx:xx:xx:xx;
        fixed-address 192.168.30.16;
        }
    host repeatereng {
        option host-name &quot;repeatereng.red-cyo.net&quot;;
        hardware ethernet 00:xx:xx:xx:xx:xx;
        fixed-address 192.168.30.17;
        }
}

Es lo que tengo en mi archivo, dhcpd.conf.

Por favor ayudame. gracias</description>
		<content:encoded><![CDATA[<p>Hola Alex, asi es. de hecho aquí esta mi confoguración:</p>
<p>server-identifier servidor.red-cyo.net;<br />
ddns-update-style interim;<br />
ignore client-updates;<br />
authoritative;<br />
default-lease-time 900;<br />
max-lease-time 7200;<br />
option ip-forwarding off;<br />
option domain-name &#8220;red-cyo.net&#8221;;</p>
<p># Copiar tan cual contenido del fichero /etc/rndc.key<br />
# Ésto se utiliza para posteriormente, poder comunicar el servidor DHCP con el<br />
# servidor DNS, y poder gestionar zonas dinámicas desde el servidor DHCP.<br />
# Jamás utilizar la clave ejemplificada a continuación para producción.<br />
key &#8220;rndckey&#8221; {<br />
    algorithm    hmac-md5;<br />
    secret        &#8220;Ab7M6BqFi94hb3cHVhlLkJlFcXwy4gra6Vusw2fI7ebQh25hFln7Oz87wpbC&#8221;;<br />
};</p>
<p>shared-network miredcyo {<br />
    subnet 192.168.30.0 netmask 255.255.255.0 {<br />
        option routers 192.168.30.1;<br />
        option subnet-mask 255.255.255.0;<br />
        option broadcast-address 192.168.30.18;<br />
        option domain-name-servers 8.8.8.8, 8.8.4.4;<br />
        option netbios-name-servers 192.168.30.1;<br />
        option ntp-servers 200.23.51.205, 132.248.81.29, 148.234.7.30;<br />
        range 192.168.30.2 192.168.30.11;<br />
    }<br />
    host cyo {<br />
        option host-name &#8220;cyo.red-cyo.net&#8221;;<br />
        hardware ethernet 00:xx:xx:xx:xx:xx;<br />
        fixed-address 192.168.30.12;<br />
        }<br />
    host comproom {<br />
        option host-name &#8220;comproom.red-cyo.net&#8221;;<br />
        hardware ethernet 00:xx:xx:xx:xx:xx;<br />
        fixed-address 192.168.30.13;<br />
        }<br />
    host teacher {<br />
        option host-name &#8220;teacher.red-cyo.net&#8221;;<br />
        hardware ethernet 00:xx:xx:xx:xx:xx;<br />
        fixed-address 172.16.30.14;<br />
        }<br />
    host nemax {<br />
        option host-name &#8220;nemax.red-cyo.net&#8221;;<br />
        hardware ethernet 00:xx:xx:xx:xx:xx;<br />
        fixed-address 192.168.30.15;<br />
        }<br />
    host apeng {<br />
        option host-name &#8220;apeng.red-cyo.net&#8221;;<br />
        hardware ethernet 00:xx:xx:xx:xx:xx;<br />
        fixed-address 192.168.30.16;<br />
        }<br />
    host repeatereng {<br />
        option host-name &#8220;repeatereng.red-cyo.net&#8221;;<br />
        hardware ethernet 00:xx:xx:xx:xx:xx;<br />
        fixed-address 192.168.30.17;<br />
        }<br />
}</p>
<p>Es lo que tengo en mi archivo, dhcpd.conf.</p>
<p>Por favor ayudame. gracias</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Alex</title>
		<link>http://rm-rf.es/como-montar-servidor-dhcp/#comment-15586</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sat, 27 Aug 2011 19:07:26 +0000</pubDate>
		<guid isPermaLink="false">http://rm-rf.es/?p=1079#comment-15586</guid>
		<description>Hola Cyo,

Has especificado la puerta de enlace en la configuración del dhcp?

&lt;strong&gt;option routers 192.168.1.1;&lt;/strong&gt;

Saludos</description>
		<content:encoded><![CDATA[<p>Hola Cyo,</p>
<p>Has especificado la puerta de enlace en la configuración del dhcp?</p>
<p><strong>option routers 192.168.1.1;</strong></p>
<p>Saludos</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Cyo</title>
		<link>http://rm-rf.es/como-montar-servidor-dhcp/#comment-15581</link>
		<dc:creator>Cyo</dc:creator>
		<pubDate>Sat, 27 Aug 2011 13:36:10 +0000</pubDate>
		<guid isPermaLink="false">http://rm-rf.es/?p=1079#comment-15581</guid>
		<description>Hola tengo todo el archivo de dhcp.conf y bien configurado.

El problema que estoy teniendo es:

Conectado a mi tarjeta de red eth0 es el modem de TelMex que está con DHCP de .1.x y la otra tarjeta estaría con mi dhcp (eth1), el cual está asignando IP de .30.x.
De hecho en los nodos el servidor DHCP me está asignando los IPs pero sin salida de internet. He estado revisando la tabla de ruteo pero aun asi, sigo son mala suerte. Los nodos de la red .30.x no tiene acesso a la web. Me podría decir desde que punto voy mal por favor, gracias?</description>
		<content:encoded><![CDATA[<p>Hola tengo todo el archivo de dhcp.conf y bien configurado.</p>
<p>El problema que estoy teniendo es:</p>
<p>Conectado a mi tarjeta de red eth0 es el modem de TelMex que está con DHCP de .1.x y la otra tarjeta estaría con mi dhcp (eth1), el cual está asignando IP de .30.x.<br />
De hecho en los nodos el servidor DHCP me está asignando los IPs pero sin salida de internet. He estado revisando la tabla de ruteo pero aun asi, sigo son mala suerte. Los nodos de la red .30.x no tiene acesso a la web. Me podría decir desde que punto voy mal por favor, gracias?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Cantinflas</title>
		<link>http://rm-rf.es/como-montar-servidor-dhcp/#comment-11348</link>
		<dc:creator>Cantinflas</dc:creator>
		<pubDate>Wed, 11 Aug 2010 22:51:01 +0000</pubDate>
		<guid isPermaLink="false">http://rm-rf.es/?p=1079#comment-11348</guid>
		<description>Muchas gracias amigooo&lt;a href=&quot;http://illesbalears.site11.com/&quot; rel=&quot;nofollow&quot;&gt;.&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Muchas gracias amigooo<a href="http://illesbalears.site11.com/" rel="nofollow">.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Andimon</title>
		<link>http://rm-rf.es/como-montar-servidor-dhcp/#comment-11277</link>
		<dc:creator>Andimon</dc:creator>
		<pubDate>Fri, 06 Aug 2010 08:16:03 +0000</pubDate>
		<guid isPermaLink="false">http://rm-rf.es/?p=1079#comment-11277</guid>
		<description>Currazo de copon muchas gracias por tu trabajo de nuevo, eres un genio !!


&lt;a href=&quot;http://hostinggratuito.host22.com/Dominio.php&quot; rel=&quot;nofollow&quot;&gt;Mi Web&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Currazo de copon muchas gracias por tu trabajo de nuevo, eres un genio !!</p>
<p><a href="http://hostinggratuito.host22.com/Dominio.php" rel="nofollow">Mi Web</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Guía de instalación GNU/Linux Debian » rm-rf.es</title>
		<link>http://rm-rf.es/como-montar-servidor-dhcp/#comment-9158</link>
		<dc:creator>Guía de instalación GNU/Linux Debian » rm-rf.es</dc:creator>
		<pubDate>Sun, 13 Dec 2009 18:02:13 +0000</pubDate>
		<guid isPermaLink="false">http://rm-rf.es/?p=1079#comment-9158</guid>
		<description>[...] para la instalación del sistema operativo, etc. El sistema buscará automáticamente un servidor DHCP para configurar la red y tener conectividad, en caso satisfactorio, os pedirá el hostname que [...]</description>
		<content:encoded><![CDATA[<p>[...] para la instalación del sistema operativo, etc. El sistema buscará automáticamente un servidor DHCP para configurar la red y tener conectividad, en caso satisfactorio, os pedirá el hostname que [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Alex</title>
		<link>http://rm-rf.es/como-montar-servidor-dhcp/#comment-8861</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Tue, 10 Nov 2009 18:14:30 +0000</pubDate>
		<guid isPermaLink="false">http://rm-rf.es/?p=1079#comment-8861</guid>
		<description>Hola Gabriel,

no hay puertos específicos para la pornografía, entiendo que lo que quieres es filtrar el contenido, para ello supongo que lo más adecuado es utilizar un proxy, de este modo controlas lo que quieres que se pueda accede y lo que no. Revise Squid a ver si te sirve:

http://www.gulix.cl/wiki/Proxy_squid</description>
		<content:encoded><![CDATA[<p>Hola Gabriel,</p>
<p>no hay puertos específicos para la pornografía, entiendo que lo que quieres es filtrar el contenido, para ello supongo que lo más adecuado es utilizar un proxy, de este modo controlas lo que quieres que se pueda accede y lo que no. Revise Squid a ver si te sirve:</p>
<p><a href="http://www.gulix.cl/wiki/Proxy_squid" rel="nofollow">http://www.gulix.cl/wiki/Proxy_squid</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Gabriel</title>
		<link>http://rm-rf.es/como-montar-servidor-dhcp/#comment-8849</link>
		<dc:creator>Gabriel</dc:creator>
		<pubDate>Tue, 10 Nov 2009 02:40:13 +0000</pubDate>
		<guid isPermaLink="false">http://rm-rf.es/?p=1079#comment-8849</guid>
		<description>hola, muy exelente solo que hy una duda, ya manejando linux ya no es necesario meter otro servidor como proxy para las salidas al exterior en el caso de una empresa?
2-.como bloqueo los puertos como las de pornografia y mensajeros en linux?

agradezco tu ayuda que me puedas ofrecer. mi correo es gabrielj_f@hotmail.com</description>
		<content:encoded><![CDATA[<p>hola, muy exelente solo que hy una duda, ya manejando linux ya no es necesario meter otro servidor como proxy para las salidas al exterior en el caso de una empresa?<br />
2-.como bloqueo los puertos como las de pornografia y mensajeros en linux?</p>
<p>agradezco tu ayuda que me puedas ofrecer. mi correo es <a href="mailto:gabrielj_f@hotmail.com">gabrielj_f@hotmail.com</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

