summaryrefslogtreecommitdiff
path: root/fr/install-methods/tftp
diff options
context:
space:
mode:
authorPhilippe Batailler <philippe.batailler@free.fr>2006-12-27 18:04:37 +0000
committerPhilippe Batailler <philippe.batailler@free.fr>2006-12-27 18:04:37 +0000
commit6e2bd4f4984e641c3d9eb86e54fb06c55bddc6a6 (patch)
tree480ef0f4e4e2bd3b1fe8e47fb05d08fae37912e7 /fr/install-methods/tftp
parent1aa3cde6183526af049f10d40cefe856a8b392e2 (diff)
downloadinstallation-guide-6e2bd4f4984e641c3d9eb86e54fb06c55bddc6a6.zip
French update
Diffstat (limited to 'fr/install-methods/tftp')
-rw-r--r--fr/install-methods/tftp/bootp.xml8
-rw-r--r--fr/install-methods/tftp/dhcp.xml21
2 files changed, 13 insertions, 16 deletions
diff --git a/fr/install-methods/tftp/bootp.xml b/fr/install-methods/tftp/bootp.xml
index 9ed8e0e3b..cf3115f8f 100644
--- a/fr/install-methods/tftp/bootp.xml
+++ b/fr/install-methods/tftp/bootp.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
-<!-- original version: 36841 -->
+<!-- original version: 43558 -->
<sect2 condition="supports-bootp" id="tftp-bootp">
@@ -9,7 +9,7 @@
Il existe deux serveurs BOOTP pour GNU/Linux, <command>bootpd</command> CMU
et <command>dhcpd</command> ISC&nbsp;; le second est en fait un serveur DHCP.
On peut trouver ces serveurs dans les paquets <classname>bootp</classname> et
-<classname>dhcp</classname> dans &debian;.
+<classname>dhcp3-server</classname> dans &debian;.
</para><para>
@@ -60,10 +60,10 @@ En comparaison, configurer BOOTP avec <command>dhcpd</command> ISC est très
facile parce qu'il traite les clients BOOTP comme des clients DHCP légèrement
spéciaux. Certaines architectures requièrent une configuration complexe pour
amorcer les clients par BOOTP. Si la vôtre en fait partie, lisez la
-<xref linkend="dhcpd"/>. Sinon, vous pouvez simplement ajouter la directive
+<xref linkend="dhcpd"/>. Dans ce cas vous pouvez simplement ajouter la directive
<userinput>allow bootp</userinput> au bloc de configuration pour le
sous-réseau contenant le client, puis redémarrer <command>dhcpd</command>
-avec <userinput>/etc/init.d/dhcpd restart</userinput>.
+avec <userinput>/etc/init.d/dhcpd3-server restart</userinput>.
</para>
</sect2>
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>