3

How to use TFTP ( Trivial File Transfer Protocol ) and i need to transfer a file using TFTP ?

joe
  • 12,279
  • 12
  • 67
  • 104

2 Answers2

2

I found this useful.

Excerpt:

  1. Install tftpd and related packages.
    $ sudo apt-get install xinetd tftpd tftp
  2. 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
    }
  3. Make /tftpboot directory
    $ sudo mkdir /tftpboot
    $ sudo chmod -R 777 /tftpboot
    $ sudo chown -R nobody /tftpboot
  4. Start tftpd through xinetd
    $ sudo /etc/init.d/xinetd start
soandos
  • 24,206
  • 28
  • 102
  • 134
vpram86
  • 2,688
  • 2
  • 20
  • 17
1

See this article:
Quick HOWTO : Ch16 : Telnet, TFTP, and xinetd

harrymc
  • 455,459
  • 31
  • 526
  • 924