Personal tools

Difference between revisions of "Installing and Testing TFTP Server in Ubuntu"

From hpcwiki

Jump to: navigation, search
(Created page with "== Installing and Testing TFTPD Server in Ubuntu == * Install following packages. sudo apt-get install xinetd tftpd tftp")
 
(Installing and Testing TFTPD Server in Ubuntu)
Line 2: Line 2:
 
* Install following packages.
 
* Install following packages.
 
  sudo apt-get install xinetd tftpd tftp
 
  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
 +
}

Revision as of 15:33, 16 June 2015

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
}