diff options
author | Javier Fernandez-Sanguino Peña <jfs@debian.org> | 2006-12-29 00:32:35 +0000 |
---|---|---|
committer | Javier Fernandez-Sanguino Peña <jfs@debian.org> | 2006-12-29 00:32:35 +0000 |
commit | 105ab6b0b1ff449ee68ecf064dc8c5fd416d2127 (patch) | |
tree | 8463d5dffef193d5c1fa9c388ab0e876758f8f6d /es/install-methods/tftp/dhcp.xml | |
parent | 446d82652d0b41d699623b26568e603c2a365cd6 (diff) | |
download | installation-guide-105ab6b0b1ff449ee68ecf064dc8c5fd416d2127.zip |
Translation update
Diffstat (limited to 'es/install-methods/tftp/dhcp.xml')
-rw-r--r-- | es/install-methods/tftp/dhcp.xml | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/es/install-methods/tftp/dhcp.xml b/es/install-methods/tftp/dhcp.xml index 9c4b57a0c..69fbd0c25 100644 --- a/es/install-methods/tftp/dhcp.xml +++ b/es/install-methods/tftp/dhcp.xml @@ -1,15 +1,16 @@ <?xml version="1.0" encoding="ISO-8859-1"?> -<!-- original version: 39614 --> +<!-- original version: 43558 --> <!-- revisado por nahoo, 6 noviembre 2004 --> - <sect2 condition="supports-dhcp" id="dhcpd"> + <sect2 id="dhcpd"> <title>Configuración del servidor DHCP</title> <para> -Un servidor DHCP de software libre es el <command>dhcpd</command> de ISC. -En &debian;, está disponible en el paquete <classname>dhcp</classname>. -A continuación se muestra una configuración de ejemplo para él (generalmente -<filename>/etc/dhcpd.conf</filename>): +Un servidor DHCP de software libre es el <command>dhcpd</command> de +ISC. Se recomienda el uso del paquete +<classname>dhcp3-server</classname> en &debian;. A continuación se +muestra una configuración de ejemplo para él (consulte +<filename>/etc/dhcpd3/dhcpd.conf</filename>): <informalexample><screen> option domain-name "ejemplo.com"; @@ -33,9 +34,6 @@ host nombredecliente { } </screen></informalexample> -Nota: el nuevo (y preferido) paquete <classname>dhcp3</classname> usa -<filename>/etc/dhcp3/dhcpd.conf</filename>. - </para><para> En este ejemplo, hay un servidor @@ -49,7 +47,7 @@ se recuperará a través de TFTP. </para><para> Después de editar el fichero de configuración de <command>dhcpd</command>, -reinícielo con <userinput>/etc/init.d/dhcpd restart</userinput>. +reinícielo con <userinput>/etc/init.d/dhcpd3-server restart</userinput>. </para> @@ -80,11 +78,11 @@ subnet 192.168.1.0 netmask 255.255.255.0 { } group { - next-server 192.168.1.3; - host tftpclient { + next-server 192.168.1.3; + host tftpclient { # dirección hardware del cliente tftp hardware ethernet 00:10:DC:27:6C:15; - filename "/tftpboot/pxelinux.0"; + filename "pxelinux.0"; } } </screen></informalexample> |