Questions tagged [tftp]

Trivial File Transfer Protocol (TFTP) is a file transfer protocol notable for its simplicity.

TFTP is a very simple and lightweight file transfer protocol.
It only supports to read and to write files from/to a remote. Even a directory listing is not supported. It is sometimes used to boot devices without data storage or to update firmware.
TFTP is build on top of UDP and using port 69.

215 questions
-2
votes
1 answer

Establishing a tftp connection between windows and ubuntu

I want to have my files transfered from windows to ubuntu and that too through a code for tftp client in php. I found the whole dedicated library for the ftp connection but I am not able to find the same for the tftp connection. Can I use the ftp…
Tanaya
  • 1
-2
votes
1 answer

TFTP data packet

I need to write all data from a file of a large size into TFTP data packets(512 bytes) in C++. I am aware that the following criteria is required for successful file transmission between a client and server. TFTP supports five types of packets, all…
MDK
  • 57
  • 1
  • 8
-2
votes
1 answer

Ubuntu Server TFTP on vitualbox

I know there are loads of similar questions and I have tried so many solutions none of which work! I have my first Ubuntu Server virtual machine (12.04) to practice my PHP skills on. I however can't get my php files from my host machine (windows 7)…
tim
  • 301
  • 1
  • 4
  • 15
-3
votes
1 answer

JAVA TFTP Clients uploads empty files when call TFTPClient sendFile() method

I am using a TFTPClient example to copy a file from local disk and create a file on tftp server with a new name but same contents I am sending the input stream to tftpClient.sendFile(String filename, int mode, InputStream input, …
user6666833
  • 21
  • 1
  • 4
-7
votes
1 answer

What is the octet mode in TFTP?

I keep hearing about "conversion" of data into octet mode, how does it happen? Is data in "netascii" bydefault? If I make a TFTP server in C, is it necessary for my packet/buffer variables to be exactly 512 bytes? I mean there are a plethora of…
1 2 3
14
15