Search

TFTP RRQ (Read Request) packet

The TFTP RRQ (Read Request) message type is used by the client to establish a connection for reading a file from the server. Following image shows the structure of TFTP RRQ (Read Request) packet format.

tftp-rrq-read-request-packet-format.jpg

Following are the fields of TFTP RRQ (Read Request) packet.

  • Opcode : Opcode field of TFTP RRQ (Read Request) packet is 16-bits in length. TFTP RRQ packets have an opcode of "1".

  • Filename : The TFTP RRQ (Read Request) packet has a file name, which is name of the file requested. File name is string of variable size. File name is a sequence of ASCII (American Standard Code for Information Interchange) bytes.

  • All 0s : Filename is terminated by a byte of all zeros. Since the filename field is variable in length, a byte of all 0s indicates the end of filename.

  • Mode : Mode is another variable length field in TFTP RRQ packet. Mode field contains information about the data transfer mode. Three modes of data transfer are netascii (file is transferred as lines of characters for an ASCII file, each terminated by a carriage return), octet (raw 8-bits) and mail (for sending files to an email address).

  • All 0s : The end of TFTP RRQ packets is with a byte length field of all 0s.

Following image shows a Wireshark packet capture screeshot of TFTP RRQ packet.

tftp-read-request-rrq-packet-capture.jpg

Related Tutorials
What is TFTP (Trivial File Transfer Protocol)
Important RFCs related with TFTP
Difference Between FTP and TFTP
TFTP Message Types
TFTP RRQ (Read Request) packet
TFTP WRQ (Write Request) packet
TFTP Data Packet
TFTP ACK (Acknowledge) Packet
TFTP Error Packet
TFTP Client and TFTP Server
How TFTP works