Personal tools

Installing and Testing TFTP Server in Ubuntu

From hpcwiki

Revision as of 15:33, 16 June 2015 by Hpcwiki (Talk | contribs)

Jump to: navigation, search

Installing and Testing TFTPD Server in Ubuntu

  • Install following packages.
sudo apt-get install xinetd tftpd tftp
  • Create /etc/xinetd.d/tftp and put this entry
service tftp
{
protocol        = udp
port            = 69
socket_type     = dgram
wait            = yes
user            = nobody
server          = /usr/sbin/in.tftpd
server_args     = /tftpboot
disable         = no
}