Tftp-Server: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
Zeile 13: Zeile 13:
 
*netstat -lnu | grep 69
 
*netstat -lnu | grep 69
 
  udp        0      0 0.0.0.0:69              0.0.0.0:*
 
  udp        0      0 0.0.0.0:69              0.0.0.0:*
 
+
=Installation tftp Client=
*Installation tftp Client
+
*apt-get install tftp
root@lydia:~# apt-get install tftp
+
=Kann man einen Datei ziehen?=
 
+
*tftp 192.168.11.50
*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

Version vom 15. Februar 2023, 16:19 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


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
Received 900983 bytes in 0.6 seconds
tftp> quit