summaryrefslogtreecommitdiff
path: root/it/install-methods/tftp
diff options
context:
space:
mode:
authorHolger Wansing <holgerw@debian.org>2017-03-09 00:21:03 +0000
committerHolger Wansing <holgerw@debian.org>2017-03-09 00:21:03 +0000
commitdd817a51e841822a188d4463717cc5eeb67f72e2 (patch)
treec2d8c3bd40bbb2289c80f8da5b5658085a2c5581 /it/install-methods/tftp
parentb27006fd833265fe828df85b8d45bebe61225a0f (diff)
downloadinstallation-guide-dd817a51e841822a188d4463717cc5eeb67f72e2.zip
Convert italian translation into po format.
Diffstat (limited to 'it/install-methods/tftp')
-rw-r--r--it/install-methods/tftp/bootp.xml129
-rw-r--r--it/install-methods/tftp/dhcp.xml129
-rw-r--r--it/install-methods/tftp/rarp.xml55
3 files changed, 0 insertions, 313 deletions
diff --git a/it/install-methods/tftp/bootp.xml b/it/install-methods/tftp/bootp.xml
deleted file mode 100644
index 7a12b407c..000000000
--- a/it/install-methods/tftp/bootp.xml
+++ /dev/null
@@ -1,129 +0,0 @@
-<!-- retain these comments for translator revision tracking -->
-<!-- original version: 68620 -->
-
- <sect2 condition="supports-bootp" id="tftp-bootp">
- <!-- <title>Setting up a BOOTP server</title> -->
- <title>Attivazione di un server BOOTP</title>
-<para>
-
-<!--
-There are two BOOTP servers available for GNU/Linux. The first is CMU
-<command>bootpd</command>. The other is actually a DHCP server: ISC
-<command>dhcpd</command>. In &debian-gnu; these are contained in the
-<classname>bootp</classname> and <classname>isc-dhcp-server</classname>
-packages respectively.
--->
-
-Per GNU/Linux sono disponibili due server BOOTP. Il primo è
-<command>bootpd</command> di CMU, l'altro è un server DHCP:
-<command>dhcpd</command> di ISC. Questi server sono rispettivamente
-contenuti nei pacchetti &debian-gnu; <classname>bootp</classname> e
-<classname>isc-dhcp-server</classname>.
-
-</para><para>
-
-<!--
-To use CMU <command>bootpd</command>, you must first uncomment (or
-add) the relevant line in <filename>/etc/inetd.conf</filename>. On
-&debian-gnu;, you can run <userinput>update-inetd -enable
-bootps</userinput>, then <userinput>/etc/init.d/inetd
-reload</userinput> to do so. Just in case your BOOTP server does not
-run &debian;, the line in question should look like:
--->
-
-Per usare <command>bootpd</command> di CMU è necessario togliere i commenti
-(o aggiungere) la relativa riga in <filename>/etc/inetd.conf</filename>.
-Su &debian-gnu; è possibile usare <userinput>update-inetd --enable
-bootps</userinput> e poi <userinput>/etc/init.d/inetd reload</userinput>
-per fare questa operazione. Solo nel caso in cui il proprio server BOOTP
-non sia &debian;, la riga in questione dovrebbe essere simile a questa:
-
-<informalexample><screen>
-bootps dgram udp wait root /usr/sbin/bootpd bootpd -i -t 120
-</screen></informalexample>
-
-<!--
-Now, you must create an <filename>/etc/bootptab</filename> file. This
-has the same sort of familiar and cryptic format as the good old BSD
-<filename>printcap</filename>, <filename>termcap</filename>, and
-<filename>disktab</filename> files. See the
-<filename>bootptab</filename> manual page for more information. For
-CMU <command>bootpd</command>, you will need to know the hardware
-(MAC) address of the client. Here is an example
-<filename>/etc/bootptab</filename>:
--->
-
-Adesso è necessario creare il file <filename>/etc/bootptab</filename>.
-Questo file ha lo stesso formato criptico dei file
-<filename>printcap</filename>, <filename>termcap</filename> e
-<filename>disktab</filename> di BSD. Vedere la pagina di manuale di
-<filename>bootptab</filename> per maggiori informazioni. Per
-<command>bootpd</command> di CMU è necessario conoscere qual è
-l'indirizzo hardware (MAC) del client. Questo è un esempio di
-<filename>/etc/bootptab</filename>:
-
-<informalexample><screen>
-client:\
- hd=/tftpboot:\
- bf=tftpboot.img:\
- ip=192.168.1.90:\
- sm=255.255.255.0:\
- sa=192.168.1.1:\
- ha=0123456789AB:
-</screen></informalexample>
-
-<!--
-You will need to change at least the <quote>ha</quote> option, which
-specifies the hardware address of the client. The <quote>bf</quote>
-option specifies the file a client should retrieve via TFTP; see
-<xref linkend="tftp-images"/> for more details.
--->
-
-È necessario cambiare almeno l'opzione <quote>ha</quote> che specifica
-l'indirizzo hardware del client. L'opzione <quote>bf</quote> specifica
-quale file deve essere recuperato dal client tramite TFTP; si consulti
-<xref linkend="tftp-images"/> per ulteriori dettagli.
-
-<!--
-<phrase arch="mips">
-On SGI machines you can just enter the command monitor and type
-<userinput>printenv</userinput>. The value of the
-<userinput>eaddr</userinput> variable is the machine's MAC address.
-</phrase>
--->
-
-<phrase arch="mips">
-Sulle macchine SGI si può usare il commando monitor e inserire
-<userinput>printenv</userinput>. Il valore della variabile
-<userinput>eaddr</userinput> è l'indirizzo MAC della macchina.
-</phrase>
-
-</para><para>
-
-<!--
-By contrast, setting up BOOTP with ISC <command>dhcpd</command> is
-really easy, because it treats BOOTP clients as a moderately special
-case of DHCP clients. Some architectures require a complex
-configuration for booting clients via BOOTP. If yours is one of
-those, read the section <xref linkend="dhcpd"/>. Otherwise you
-will probably be able to get away with simply adding the
-<userinput>allow bootp</userinput> directive to the configuration
-block for the subnet containing the client in
-<filename>/etc/dhcp/dhcpd.conf</filename>, and restart
-<command>dhcpd</command> with <userinput>/etc/init.d/isc-dhcp-server
-restart</userinput>.
--->
-
-Al contrario l'impostazione di BOOTP con <command>dhcpd</command> di ISC è
-veramente semplice poiché tratta i client BOOTP come un caso moderatamente
-speciale dei client DHCP. Alcune architetture richiedono una complessa
-configurazione dei client per l'avvio con BOOTP, se si possiede una di
-queste leggere la sezione <xref linkend="dhcpd"/>. In caso contrario
-per proseguire è sufficiente aggiungere la direttiva <userinput>allow
-bootp</userinput> al blocco di configurazione della subnet a cui appartiene
-il client in <filename>/etc/dhcp/dhcpd.conf</filename> e riavviare
-<command>dhcpd</command> usando
-<userinput>/etc/init.d/isc-dhcp-server restart</userinput>.
-
-</para>
- </sect2>
diff --git a/it/install-methods/tftp/dhcp.xml b/it/install-methods/tftp/dhcp.xml
deleted file mode 100644
index ccd63b370..000000000
--- a/it/install-methods/tftp/dhcp.xml
+++ /dev/null
@@ -1,129 +0,0 @@
-<!-- retain these comments for translator revision tracking -->
-<!-- original version: 68620 -->
-
- <sect2 id="dhcpd">
- <!-- <title>Setting up a DHCP server</title> -->
- <title>Attivazione di un server DHCP</title>
-<para>
-
-<!--
-One free software DHCP server is ISC <command>dhcpd</command>.
-For &debian-gnu;, the <classname>isc-dhcp-server</classname> package is
-recommended. Here is a sample configuration file for it (see
-<filename>/etc/dhcp/dhcpd.conf</filename>):
--->
-
-Un server DHCP libero è <command>dhcpd</command> di ISC. In &debian-gnu;
-si raccomanda il pacchetto <classname>isc-dhcp-server</classname>. Segue
-un esempio del file di configurazione per questo server (di solito
-<filename>/etc/dhcp/dhcpd.conf</filename>):
-
-<informalexample><screen>
-option domain-name "example.com";
-option domain-name-servers ns1.example.com;
-option subnet-mask 255.255.255.0;
-default-lease-time 600;
-max-lease-time 7200;
-server-name "servername";
-
-subnet 192.168.1.0 netmask 255.255.255.0 {
- range 192.168.1.200 192.168.1.253;
- option routers 192.168.1.1;
-}
-
-host clientname {
- filename "/tftpboot.img";
- server-name "servername";
- next-server servername;
- hardware ethernet 01:23:45:67:89:AB;
- fixed-address 192.168.1.90;
-}
-</screen></informalexample>
-
-</para><para>
-
-<!--
-In this example, there is one server
-<replaceable>servername</replaceable> which performs all of the work
-of DHCP server, TFTP server, and network gateway. You will almost
-certainly need to change the domain-name options, as well as the
-server name and client hardware address. The
-<replaceable>filename</replaceable> option should be the name of the
-file which will be retrieved via TFTP.
--->
-
-In questo esempio c'è una macchina <replaceable>servername</replaceable>
-che fa da server DHCP, da server TFTP e da gateway di rete. Sicuramente è
-necessario cambiare le opzioni domain-name, il nome del server e anche
-l'indirizzo hardware del client. Il valore dell'opzione
-<replaceable>filename</replaceable> deve essere il nome del file che
-verrà recuperato tramite TFTP.
-
-</para><para>
-
-<!--
-After you have edited the <command>dhcpd</command> configuration file,
-restart it with <userinput>/etc/init.d/isc-dhcp-server restart</userinput>.
--->
-
-Dopo aver modificato il file di configurazione di <command>dhcpd</command>
-riavviarlo con <userinput>/etc/init.d/isc-dhcp-server restart</userinput>.
-
-</para>
-
- <sect3 arch="x86">
- <!-- <title>Enabling PXE Booting in the DHCP configuration</title> -->
- <title>Abilitare l'avvio PXE nella configurazione di DHCP</title>
-<para>
-
-<!--
-Here is another example for a <filename>dhcp.conf</filename> using the
-Pre-boot Execution Environment (PXE) method of TFTP.
--->
-
-Questo è un altro esempio di <filename>dhcp.conf</filename> che usa il
-metodo PXE (Pre-boot Execution Environment) di TFTP.
-
-<informalexample><screen>
-option domain-name "example.com";
-
-default-lease-time 600;
-max-lease-time 7200;
-
-allow booting;
-allow bootp;
-
-# The next paragraph needs to be modified to fit your case
-subnet 192.168.1.0 netmask 255.255.255.0 {
- range 192.168.1.200 192.168.1.253;
- option broadcast-address 192.168.1.255;
-# the gateway address which can be different
-# (access to the internet for instance)
- option routers 192.168.1.1;
-# indicate the dns you want to use
- option domain-name-servers 192.168.1.3;
-}
-
-group {
- next-server 192.168.1.3;
- host tftpclient {
-# tftp client hardware address
- hardware ethernet 00:10:DC:27:6C:15;
- filename "pxelinux.0";
- }
-}
-</screen></informalexample>
-
-<!--
-Note that for PXE booting, the client filename <filename>pxelinux.0</filename>
-is a boot loader, not a kernel image (see <xref linkend="tftp-images"/>
-below).
--->
-
-Notare che con l'avvio PXE, il nome del file client
-<filename>pxelinux.0</filename> è il bootloader, non l'immagine del kernel
-(si consulti <xref linkend="tftp-images"/>).
-
-</para>
- </sect3>
- </sect2>
diff --git a/it/install-methods/tftp/rarp.xml b/it/install-methods/tftp/rarp.xml
deleted file mode 100644
index 87dc06655..000000000
--- a/it/install-methods/tftp/rarp.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-<!-- retain these comments for translator revision tracking -->
-<!-- original version: 69223 -->
-
- <sect2 condition="supports-rarp" id="tftp-rarp">
- <!-- <title>Setting up RARP server</title> -->
- <title>Attivazione di un server RARP</title>
-<para>
-
-<!--
-To set up RARP, you need to know the Ethernet address (a.k.a. the MAC address)
-of the client computers to be installed.
-If you don't know this information, you can
-
-<phrase arch="sparc"> pick it off the initial OpenPROM boot messages, use the
-OpenBoot <userinput>.enet-addr</userinput> command, or </phrase>
-
-boot into <quote>Rescue</quote> mode (e.g., from the rescue floppy) and use the
-command <userinput>ip addr show dev eth0</userinput>.
--->
-
-Per impostare un server RARP è necessario conoscere l'indirizzo Ethernet
-(noto anche come indirizzo MAC) dei computer client da installare. Se non
-si conoscono queste informazioni è possibile
-<phrase arch="sparc">leggerlo nei primi messaggi durante l'avvio di OpenPROM,
-usare il comando <userinput>.enet-addr</userinput> di OpenBoot oppure</phrase>
-avviare in modalità <quote>Ripristino</quote> (p.e. da un dischetto di
-ripristino) e usare il comando <userinput>ip addr show dev eth0</userinput>.
-
-</para><para>
-
-<!--
-On a RARP server system using a Linux kernel, or Solaris/SunOS,
-you use the <command>rarpd</command> program.
-You need to ensure that the Ethernet hardware address for the client is
-listed in the <quote>ethers</quote> database (either in the
-<filename>/etc/ethers</filename> file, or via NIS/NIS+) and in the
-<quote>hosts</quote> database. Then you need to start the RARP daemon.
-Issue the command (as root): <userinput>/usr/sbin/rarpd -a</userinput>
-on most Linux systems and SunOS 5 (Solaris 2),
-<userinput>/usr/sbin/in.rarpd -a</userinput> on some other Linux systems,
-or <userinput>/usr/etc/rarpd -a</userinput> in SunOS 4 (Solaris 1).
--->
-
-Su un server RARP con kernel Linux oppure con Solaris/SunOS,
-usare il programma <command>rarpd</command>. Assicurarsi che l'indirizzo
-Ethernet del client sia elencato nel database <quote>ethers</quote> (nel
-file <filename>/etc/ethers</filename> o tramite NIS/NIS+) e nel database
-<quote>hosts</quote>. Poi si deve avviare il demone RARP eseguendo (da
-root): <userinput>/usr/sbin/rarpd -a</userinput> per la maggior parte dei
-sistemi Linux e SunOS 5 (Solaris 2), <userinput>/usr/sbin/in.rarpd
--a</userinput> per alcuni sistemi Linux oppure <userinput>/usr/etc/rarpd
--a</userinput> per SunOS 4 (Solaris 1).
-
-</para>
- </sect2>