Tftp-Server: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
K (Thomas.will verschob die Seite Tftp-Sever nach Tftp-Server)
 
(Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt)
Zeile 17: Zeile 17:
 
=Kann man einen Datei ziehen?=  
 
=Kann man einen Datei ziehen?=  
 
*tftp 192.168.11.50
 
*tftp 192.168.11.50
tftp> get 1545_sender
 
Received 900983 bytes in 0.6 seconds
 
tftp> quit
 
 
 
root@xinux-desktop:~# service tftpd-hpa restart
 
 
===Kontrolle===
 
*Ist der tftp Port geöffnet
 
root@ubuntu-server:/etc/dhcp3# netstat -lnu | grep 69
 
udp        0      0 0.0.0.0:69              0.0.0.0:*
 
 
*Installation tftp Client
 
root@lydia:~# apt-get install tftp
 
 
*Kann man einen Datei ziehen?
 
root@lydia:~# tftp 192.168.11.50
 
 
  tftp> get 1545_sender
 
  tftp> get 1545_sender
 
  Received 900983 bytes in 0.6 seconds
 
  Received 900983 bytes in 0.6 seconds
 
  tftp> quit
 
  tftp> quit

Aktuelle Version vom 15. Februar 2023, 17:17 Uhr

Installation tftp-Server

  • apt install tftpd-hpa

Start als alleinstehender Server

  • cat /etc/default/tftpd-hpa
TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/srv/tftp"
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS="-l -s"

Starten

  • systemctl start tftpd-hpa

Kontrolle

  • Ist der tftp Port geöffnet
  • netstat -lnu | grep 69
udp        0      0 0.0.0.0:69              0.0.0.0:*

Installation tftp Client

  • apt-get install tftp

Kann man einen Datei ziehen?

  • tftp 192.168.11.50
tftp> get 1545_sender
Received 900983 bytes in 0.6 seconds
tftp> quit