Tftpd-hpa (Linux): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
Zeile 15: Zeile 15:
<pre>
<pre>
TFTP_DIRECTORY="/srv/tftp"
TFTP_DIRECTORY="/srv/tftp"
</pre>
== Testen ==
<pre>
sudo apt-get install tftp
</pre>
<pre>
tftp 192.168.1.1
tftp> get test.txt
tftp> q
</pre>
</pre>



Version vom 20. September 2020, 12:14 Uhr

Installation

sudo apt-get install -y tftpd-hpa

Konfiguration

sudo vi /etc/default/tftpd-hpa

Standardverzeichnis ist:

TFTP_DIRECTORY="/srv/tftp"

Testen

sudo apt-get install tftp
tftp 192.168.1.1
tftp> get test.txt
tftp> q

Links

http://chschneider.eu/linux/server/tftpd-hpa.shtml


Zurück zu Ubuntu