<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://es.wiki.guifi.net/w/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es">
		<id>http://es.wiki.guifi.net/w/index.php?action=history&amp;feed=atom&amp;title=Dhcp3-server</id>
		<title>Dhcp3-server - Historial de revisiones</title>
		<link rel="self" type="application/atom+xml" href="http://es.wiki.guifi.net/w/index.php?action=history&amp;feed=atom&amp;title=Dhcp3-server"/>
		<link rel="alternate" type="text/html" href="http://es.wiki.guifi.net/w/index.php?title=Dhcp3-server&amp;action=history"/>
		<updated>2026-07-29T02:43:43Z</updated>
		<subtitle>Historial de revisiones para esta página en el wiki</subtitle>
		<generator>MediaWiki 1.22.0</generator>

	<entry>
		<id>http://es.wiki.guifi.net/w/index.php?title=Dhcp3-server&amp;diff=3876&amp;oldid=prev</id>
		<title>Al: 1 revisión: Artículos técnicos</title>
		<link rel="alternate" type="text/html" href="http://es.wiki.guifi.net/w/index.php?title=Dhcp3-server&amp;diff=3876&amp;oldid=prev"/>
				<updated>2014-01-11T22:35:56Z</updated>
		
		<summary type="html">&lt;p&gt;1 revisión: Artículos técnicos&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;tr style='vertical-align: top;'&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Revisión anterior&lt;/td&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Revisión de 22:35 11 ene 2014&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan='2' style='text-align: center;'&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(Sin diferencias)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Al</name></author>	</entry>

	<entry>
		<id>http://es.wiki.guifi.net/w/index.php?title=Dhcp3-server&amp;diff=3875&amp;oldid=prev</id>
		<title>92.250.140.237: Página creada con 'Servidor DHCP  DHCP es Dynamic Host Configuration Protocol o Protocolo de Configuración Dinámica de Servidores, bien, ahora en lenguaje común esto es una manera para que una ...'</title>
		<link rel="alternate" type="text/html" href="http://es.wiki.guifi.net/w/index.php?title=Dhcp3-server&amp;diff=3875&amp;oldid=prev"/>
				<updated>2011-10-04T18:13:39Z</updated>
		
		<summary type="html">&lt;p&gt;Página creada con &amp;#039;Servidor DHCP  DHCP es Dynamic Host Configuration Protocol o Protocolo de Configuración Dinámica de Servidores, bien, ahora en lenguaje común esto es una manera para que una ...&amp;#039;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nueva&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Servidor DHCP&lt;br /&gt;
&lt;br /&gt;
DHCP es Dynamic Host Configuration Protocol o Protocolo de Configuración Dinámica de Servidores, bien, ahora en lenguaje común esto es una manera para que una computadora se configure automáticamente para poder conectarse a una red, esto es estableciendo por medio de este protocolo su IP, su mascara, su puerta de enlace, sus DNS entre otros.&lt;br /&gt;
&lt;br /&gt;
Partimos de la base supuesta de que tenemos una una red con los siguiente parámetros&lt;br /&gt;
Red: 192.168.1.0&lt;br /&gt;
Mascara: 255.255.255.0&lt;br /&gt;
Puerta de Enlace: 192.168.1.1&lt;br /&gt;
Un equipo Linux con Ubuntu Gutsy ya previamente configurado para compartir una conexión a Internet por lo que tenemos en este servidor 2 tarjetas de red: eth0 que es donde esta conectada la conexión a Internet eth1 que es la conexión a la red a la que se les esta dando la conexión y a donde vamos a prestar el servicio de DHCP, el procedimiento es el siguiente.&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install dhcp3-server&lt;br /&gt;
&lt;br /&gt;
sudo nano /etc/default/dhcp3-server&lt;br /&gt;
&lt;br /&gt;
Buscar una línea que dice INTERFACES=&amp;quot; &amp;quot;&lt;br /&gt;
Agregar entre las comillas el dispositivo de red que va a proveer el servicio de DHCP, en este caso eth1 INTERFACES=&amp;quot;eth1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Guardar el archivo.&lt;br /&gt;
&lt;br /&gt;
Editar el siguiente:&lt;br /&gt;
&lt;br /&gt;
sudo nano /etc/dhcp3/dhcpd.conf&lt;br /&gt;
&lt;br /&gt;
Buscar las líneas que dicen:&lt;br /&gt;
option definitions common to all supported networks...;&lt;br /&gt;
option domain-name &amp;quot;example.org&amp;quot;;&lt;br /&gt;
option domain-name-servers ns1.example.org, ns2.example.org;&lt;br /&gt;
default-lease-time 600;&lt;br /&gt;
max-lease-time 7200;&lt;br /&gt;
&lt;br /&gt;
Comentarlas para que queden así:&lt;br /&gt;
# option definitions common to all supported networks... ;&lt;br /&gt;
#option domain-name &amp;quot;example.org&amp;quot;;&lt;br /&gt;
#option domain-name-servers ns1.example.org, ns2.example.org;&lt;br /&gt;
#default-lease-time 600;&lt;br /&gt;
#max-lease-time 7200;&lt;br /&gt;
&lt;br /&gt;
Establecer la configuración que va a manejar el DHCP y el rango de IPs con las que puede trabajar.&lt;br /&gt;
Elegimos para el ejemplo&lt;br /&gt;
IPs 192.168.1.100 a 192.168.1.149&lt;br /&gt;
DNS 200.52.12.131 y 200.52.12.132&lt;br /&gt;
&lt;br /&gt;
En el mismo archivo /etc/dhcp3/dhcpd.conf&lt;br /&gt;
&lt;br /&gt;
Buscar las líneas:&lt;br /&gt;
# A slightly different configuration for an internal subnet.&lt;br /&gt;
#subnet 10.5.5.0 netmask 255.255.255.224 {&lt;br /&gt;
# range 10.5.5.26 10.5.5.30;&lt;br /&gt;
# option domain-name-servers ns1.internal.example.org;&lt;br /&gt;
# option domain-name &amp;quot;internal.example.org&amp;quot;;&lt;br /&gt;
# option routers 10.5.5.1;&lt;br /&gt;
# option broadcast-address 10.5.5.31;&lt;br /&gt;
# default-lease-time 600;&lt;br /&gt;
# max-lease-time 7200;&lt;br /&gt;
#}&lt;br /&gt;
&lt;br /&gt;
Dejarlas así:&lt;br /&gt;
# A slightly different configuration for an internal subnet.&lt;br /&gt;
subnet 192.168.1.0 netmask 255.255.255.0 {&lt;br /&gt;
range 192.168.1.100 192.168.1.149;&lt;br /&gt;
option domain-name-servers 200.52.12.131, 200.52.12.132;&lt;br /&gt;
# option domain-name &amp;quot;tm.net.my&amp;quot;;&lt;br /&gt;
option routers 192.168.1.1;&lt;br /&gt;
option broadcast-address 192.168.1.255;&lt;br /&gt;
default-lease-time 600;&lt;br /&gt;
max-lease-time 7200;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
Guardar el archivo.&lt;br /&gt;
&lt;br /&gt;
Reiniciar el servidor de DHCP.&lt;br /&gt;
&lt;br /&gt;
sudo /etc/init.d/dhcp3-server restart&lt;/div&gt;</summary>
		<author><name>92.250.140.237</name></author>	</entry>

	</feed>