Tftp-Server
Version vom 15. Februar 2023, 16:19 Uhr von Thomas.will (Diskussion | Beiträge) (→Installation tftp-Server)
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
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
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