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
{
  socket_type             = dgram
  protocol                = udp
  wait                    = yes
  user                    = root
  server                  = /usr/sbin/in.tftpd
  server_args             = -s /tftpboot
  per_source              = 11
  cps                     = 100 2
}

Port 69 UDP muss für TFTP 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