This is an old revision of the document!


TFTP Server

  • Ubuntu 10.04 x86 in vmware Player
sudo apt-get install xinetd tftpd tftp

Zur Konfiguration von TFTP muss die Datei /etc/xinetd.d/tftp erstellt und mit folgenden Inhalt gefüllt werden:

service tftp
{
  protocol = udp
  port = 69
  socket_type = dgram
  wait = yes
  user = nobody
  server = /usr/sbin/in.tftpd
  server_args = /tftpboot
  disable = no
}

Port 69 UDP muss geöffnet werden. Die Konfiguration von Port Forwarding eines Windows-XP Hostsystems ist auf der Seite Port Forwarding.

  • Last modified: 2022/08/04 15:04