summaryrefslogtreecommitdiff
path: root/fr/install-methods/tftp/dhcp.xml
diff options
context:
space:
mode:
Diffstat (limited to 'fr/install-methods/tftp/dhcp.xml')
-rw-r--r--fr/install-methods/tftp/dhcp.xml21
1 files changed, 9 insertions, 12 deletions
diff --git a/fr/install-methods/tftp/dhcp.xml b/fr/install-methods/tftp/dhcp.xml
index 780121030..92fba58bd 100644
--- a/fr/install-methods/tftp/dhcp.xml
+++ b/fr/install-methods/tftp/dhcp.xml
@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
-<!-- original version 39614 -->
+<!-- original version 43558 -->
- <sect2 condition="supports-dhcp" id="dhcpd">
+ <sect2 id="dhcpd">
<title>Configurer un serveur DHCP</title>
<para>
-Il existe un seul serveur DHCP libre, <command>dhcpd</command> ISC. Dans
-&debian;, il est disponible dans le paquet <classname>dhcp</classname>.
+Il existe un serveur DHCP libre, <command>dhcpd</command> ISC. Pour
+&debian;, le paquet <classname>dhcp3-server</classname> est recommandé.
Voici un exemple de fichier de configuration (habituellement
-<filename>/etc/dhcpd.conf</filename>)&nbsp;:
+<filename>/etc/dhcp3/dhcpd.conf</filename>)&nbsp;:
<informalexample><screen>
option domain-name "example.com";
@@ -33,9 +33,6 @@ host clientname {
}
</screen></informalexample>
-Note&nbsp;: dans le nouveau paquet <classname>dhcp3</classname>, ce fichier
-s'appelle <filename>/etc/dhcp3/dhcpd.conf</filename>.
-
</para><para>
Dans cet exemple, il y a un serveur <replaceable>servername</replaceable>
@@ -49,7 +46,7 @@ par TFTP.
Après avoir modifié le fichier de configuration de <command>dhcpd</command>,
relancez <command>dhcpd</command> par
-<userinput>/etc/init.d/dhcpd restart</userinput>.
+<userinput>/etc/init.d/dhcpd3-server restart</userinput>.
</para>
@@ -81,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 {
# Adresse matérielle du client TFTP
hardware ethernet 00:10:DC:27:6C:15;
- filename "/tftpboot/pxelinux.0";
+ filename "pxelinux.0";
}
}
</screen></informalexample>