SlideShare a Scribd company logo
1 of 25
Transport Layer Protocol:
Transmission Control Protocol
- Introduction to TCP
- Operation of TCP
- Characteristics of TCP
- TCP three-way handshake process
- Application of TCP
- Relationship between TCP and IP
- Standard TCP/IP services
- Port numbers and socket address
Introduction: Transport Layer Protocol
• The Transport layer is where sessions are established and data packets
are exchanged between hosts. Two core protocols are found at this
layer are, TCP, UDP
• A transport layer provides end-to-end or host-to-host communication
services.
• The transport layer provides services such as connection-oriented data
stream support, reliability, flow control, and multiplexing.
Introduction: TCP (Transmission Control Protocol)
• Second transport layer protocol, TCP.
• Connection oriented and reliable protocol.
• Creates virtual connection between two TCPs to send data.
• TCP uses flow control and error control mechanisms at the transport level.
• Heavy weight protocol, ensure that packet is delivered or not, if not TCP
resends that packet and packet must be delivered sequentially.
TCP Operations
• OPEN to open a connection
• CLOSE to close a connection
• SEND to send data to an open connection
• RECEIVE to receive data from an open connection
• STATUS to find information about a connection
TCP Message Format
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
Source Port Destination Port
Sequence Number
Acknowledgement Number
Data
Offset Reserved
U
R
G
A
C
K
P
S
H
R
S
T
S
Y
N
F
I
N
Window
Checksum Urgent Pointer
Options Padding
data
Source port: 16 bits The source port number
Destination port: 16 bits The destination port number
Sequence Number
(SEQ):
32 bits The sequence number of the first data octet in this segment (except when SYN is present) If
SYN is present the sequence number is the initial sequence number (ISN) and the first data
octet is ISN+1
Acknowledgement
Number (ACQ):
32 bits If the ACK control bit is set this field contains the value of the next sequence number the
sender of the segment is expecting to receive. Once a connection is established this is always
sent.
Data Offset: 4 bits The number of 32 bit words in the TCP header. This indicates where the data begins. The TCP
header (even one including options) is an integral number of 32 bits long.
Reserved: 6 bits Reserved for future use. Must be zero.
Control bits: 6 bits (from left to
right)
URG: Urgent Pointer field significant
ACK: Acknowledgement
PSH: Push function
RST: Reset the connection
SYN: Synchronize sequence numbers
FIN: No more data from sender
Window: 16 bits The number of data octets beginning with the one indicated in the acknowledgement field
which the sender of this segment is willing to accept.
Checksum: 16 bits Checksum field is calculated to verify the data correctness.
Characteristics of TCP
• Basic Data Transfer: Continuous transfer of octets in each direction
• Reliability: Must have to recover from data that is damaged, lost, duplicated or delivered or not.
• Flow Control: How much to send and how much to receive. (Acknowledgement)
• Multiplexing: Uses different ports and addresses to do simultaneously communication.
Processes)
(Many
• Connection: Reliability and Flow Control mechanism requires TCPs initialize or connection status.
• Security: The users of TCP may indicate the security and precedence of their communication
TCP three-way handshake process
• It is usually a process that takes place when a computer is about to communicate
with a foreign device to establish rules for communication.
• To establish a connection, each device must send a SYN and receive an ACK for it
from the other device. Thus, conceptually, we need to have four control messages
pass between the devices. However, it's inefficient to send a SYN and an ACK in
separate messages when one could communicate both simultaneously. Thus, in the
normal sequence of events in connection establishment, one of the SYNs and one
of the ACKs is sent together by setting both of the relevant bits (a message
sometimes called a SYN+ACK). This makes a total of three messages, and for this
reason the connection procedure is called a three-way handshake.
• E.g. : SYN: The active open is performed by the client sending a SYN
to the server. The client sets the segment's sequence number to a
random valueA.
• SYN-ACK: In response, the server replies with a SYN-ACK. The
acknowledgment number is set to one more than the received sequence
number i.e. A+1, and the sequence number that the server chooses for
the packet is another random number, B.
• ACK: Finally, the client sends an ACK back to the server. The
sequence number is set to the received acknowledgement value i.e.
A+1, and the acknowledgement number is set to one more than the
received sequence number i.e. B+1.
HostAsends a TCP SYNchronize packet to Host B
Host B receivesA's SYN
Host B sends a SYNchronize-ACKnowledgement
HostAreceives B's SYN-ACK
HostAsendsACKnowledge
Host B receivesACK.
TCP socket connection is ESTABLISHED
Applications of TCP
• Used to send large number of files.
• Used for traffic that you need all the data for. i.e. HTML,
pictures, etc.
• Reliable for use.
• In TCP the data will not be corrupted.
•
• TCP has a mechanism to control the errors.
• It is a connection oriented protocol, It establishes a path, or a virtual
connection all the way through switches routers proxies etc. and then
starts any communication.
• Used for security purposes.
E.g.: TCP is mailing a letter with a return receipt at the post office,
except that the post master will organize the letters in-order-of mailing
and only deliver them in-order.
Relationship between TCP and IP
• The Internet Protocol Suite (commonly known as TCP/IP) is the set
of communications protocols used for the Internet and other similar
networks.
• It is named from two of the most important protocols in it:
• the Transmission Control Protocol (TCP) and
• the Internet Protocol (IP), which were the first two networking
protocols defined in this standard.
Transmission Control Protocol (TCP)
• Transmission Control Protocol (TCP) is the core protocol of the Internet
Protocol Suite.
• TCP provides the delivery of a stream of bytes from a program from
one computer to another computer.
• TCP provides reliable, ordered, and error-checked delivery of a stream of
octets between applications running on hosts communicating over an IP
network.
• TCP is the connection-oriented protocol.
Internet Protocol (IP)
• IP has the task of delivering packets from the source host to the
destination host solely based on the IP addresses in the packet headers.
• Internet Protocol is connectionless protocol.
Summary
• Both TCP and IP are the connection protocols from Internet Protocol Suite or
TCP/IP model.
• TCP is a core operating on a relatively high level; IP operates at a lower level.
• TCP is the protocol from Transport Layer whereas IP is the primary protocol in the
Internet Layer.
• TCP provides communication services at an intermediate level between an
application program and the IP; IP encapsulates all data, and is connectionless.
Standard TCP/IP services
• Telnet
• FTP/Anonymous FTP
• TFTP
Source: http://docs.oracle.com/
Telnet:
- Telnet is a user command and an underlying TCP/IP protocol for
accessing remote computers.
- The Telnet protocol enables terminals and terminal-oriented
processes to communicate on a network running TCP/IP.
- Telnet provides a user interface through which two hosts can
communicate on a character-by-character or line-by-line basis.
- 23 is the port number.
Anonymous / File Transfer Protocol (FTP)
- The File Transfer Protocol (FTP) is a standard network protocol used
to transfer computer files from one host to another host over a TCP-
based network, such as the Internet.
- Anonymous FTP is a common way to get access to a server in order
to view or download files that are publicly available.
- 20/21 is the port number.
Trivial File Transfer Protocol (TFTP)
• Trivial File Transfer Protocol (TFTP) is a simple, lock-step, File Transfer
Protocol which allows a client to get from or put a file onto a remote host.
• Trivial File Transfer Protocol (TFTP) is an Internet software utility for
transferring files that is simpler to use than the File Transfer Protocol (FTP)
but less capable.
• It is used where user authentication and directory visibility are not required.
• 69 is the port number.
Port Numbers
• A port number is a way to identify a specific process to which an
Internet or other network message is to be forwarded when it arrives at
a server.
• For the Transmission Control Protocol, a port number is a 16-bit
integer that is put in the header appended to a message unit.
Socket Address
• A socket address is the combination of an IP address and a port
number, much like one end of a telephone connection is the
combination of a phone number and a particular extension.
• Based on this address, internet sockets deliver incoming data packets
to the appropriate application process or thread.
THANK U!!

More Related Content

Similar to tcp-ippresentation-150614172243-lva1-app6892.pptx

Similar to tcp-ippresentation-150614172243-lva1-app6892.pptx (20)

Unit 4-Transport Layer Protocols.pptx
Unit 4-Transport Layer Protocols.pptxUnit 4-Transport Layer Protocols.pptx
Unit 4-Transport Layer Protocols.pptx
 
Transport layer protocol
Transport layer protocolTransport layer protocol
Transport layer protocol
 
Transport layer services
Transport layer servicesTransport layer services
Transport layer services
 
TRANSPORT LAYER ppt.pptx
TRANSPORT LAYER ppt.pptxTRANSPORT LAYER ppt.pptx
TRANSPORT LAYER ppt.pptx
 
Transport layer.pptx
Transport layer.pptxTransport layer.pptx
Transport layer.pptx
 
Networking essentials lect3
Networking essentials lect3Networking essentials lect3
Networking essentials lect3
 
計概
計概計概
計概
 
Tcp3 wayhandshakeprocess
Tcp3 wayhandshakeprocessTcp3 wayhandshakeprocess
Tcp3 wayhandshakeprocess
 
Transport Layer
Transport LayerTransport Layer
Transport Layer
 
Transport Layer [Autosaved]
Transport Layer [Autosaved]Transport Layer [Autosaved]
Transport Layer [Autosaved]
 
TCP/IP 3-way Handshake
TCP/IP 3-way Handshake TCP/IP 3-way Handshake
TCP/IP 3-way Handshake
 
TCP- Transmission Control Protocol
TCP-  Transmission Control Protocol TCP-  Transmission Control Protocol
TCP- Transmission Control Protocol
 
Osi model
Osi modelOsi model
Osi model
 
presentation on TCP/IP protocols data comunications
presentation on TCP/IP protocols data comunicationspresentation on TCP/IP protocols data comunications
presentation on TCP/IP protocols data comunications
 
TCP /IP
TCP /IPTCP /IP
TCP /IP
 
TCP/IP & UDP
TCP/IP & UDPTCP/IP & UDP
TCP/IP & UDP
 
Transport_Layer_Protocols.pptx
Transport_Layer_Protocols.pptxTransport_Layer_Protocols.pptx
Transport_Layer_Protocols.pptx
 
REMnux tutorial 4.1 - Datagrams, Fragmentation & Anomalies
REMnux tutorial 4.1 - Datagrams, Fragmentation & AnomaliesREMnux tutorial 4.1 - Datagrams, Fragmentation & Anomalies
REMnux tutorial 4.1 - Datagrams, Fragmentation & Anomalies
 
the transport layer
the transport layerthe transport layer
the transport layer
 
Unit 4 tansport layer in the internat
Unit 4 tansport layer in the internatUnit 4 tansport layer in the internat
Unit 4 tansport layer in the internat
 

More from AlphaKoiSylvester (10)

COVER PAGE.ppt
COVER PAGE.pptCOVER PAGE.ppt
COVER PAGE.ppt
 
Lecture3-PhysicalLayer_120645.pptx
Lecture3-PhysicalLayer_120645.pptxLecture3-PhysicalLayer_120645.pptx
Lecture3-PhysicalLayer_120645.pptx
 
WK8.pptx
WK8.pptxWK8.pptx
WK8.pptx
 
WK9.pptx
WK9.pptxWK9.pptx
WK9.pptx
 
Presentation group 2 Acct.pptx
Presentation group 2 Acct.pptxPresentation group 2 Acct.pptx
Presentation group 2 Acct.pptx
 
ch2_v1.ppt
ch2_v1.pptch2_v1.ppt
ch2_v1.ppt
 
integration-131127090901-phpapp01.pptx
integration-131127090901-phpapp01.pptxintegration-131127090901-phpapp01.pptx
integration-131127090901-phpapp01.pptx
 
11904040shaiful-191024200113.pptx
11904040shaiful-191024200113.pptx11904040shaiful-191024200113.pptx
11904040shaiful-191024200113.pptx
 
Presentation1.pptx
Presentation1.pptxPresentation1.pptx
Presentation1.pptx
 
Presentation1.pptx
Presentation1.pptxPresentation1.pptx
Presentation1.pptx
 

Recently uploaded

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 

Recently uploaded (20)

Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptx
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 

tcp-ippresentation-150614172243-lva1-app6892.pptx

  • 1. Transport Layer Protocol: Transmission Control Protocol - Introduction to TCP - Operation of TCP - Characteristics of TCP - TCP three-way handshake process - Application of TCP - Relationship between TCP and IP - Standard TCP/IP services - Port numbers and socket address
  • 2. Introduction: Transport Layer Protocol • The Transport layer is where sessions are established and data packets are exchanged between hosts. Two core protocols are found at this layer are, TCP, UDP • A transport layer provides end-to-end or host-to-host communication services. • The transport layer provides services such as connection-oriented data stream support, reliability, flow control, and multiplexing.
  • 3. Introduction: TCP (Transmission Control Protocol) • Second transport layer protocol, TCP. • Connection oriented and reliable protocol. • Creates virtual connection between two TCPs to send data. • TCP uses flow control and error control mechanisms at the transport level. • Heavy weight protocol, ensure that packet is delivered or not, if not TCP resends that packet and packet must be delivered sequentially.
  • 4. TCP Operations • OPEN to open a connection • CLOSE to close a connection • SEND to send data to an open connection • RECEIVE to receive data from an open connection • STATUS to find information about a connection
  • 5. TCP Message Format 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 Source Port Destination Port Sequence Number Acknowledgement Number Data Offset Reserved U R G A C K P S H R S T S Y N F I N Window Checksum Urgent Pointer Options Padding data
  • 6. Source port: 16 bits The source port number Destination port: 16 bits The destination port number Sequence Number (SEQ): 32 bits The sequence number of the first data octet in this segment (except when SYN is present) If SYN is present the sequence number is the initial sequence number (ISN) and the first data octet is ISN+1 Acknowledgement Number (ACQ): 32 bits If the ACK control bit is set this field contains the value of the next sequence number the sender of the segment is expecting to receive. Once a connection is established this is always sent. Data Offset: 4 bits The number of 32 bit words in the TCP header. This indicates where the data begins. The TCP header (even one including options) is an integral number of 32 bits long. Reserved: 6 bits Reserved for future use. Must be zero. Control bits: 6 bits (from left to right) URG: Urgent Pointer field significant ACK: Acknowledgement PSH: Push function RST: Reset the connection SYN: Synchronize sequence numbers FIN: No more data from sender Window: 16 bits The number of data octets beginning with the one indicated in the acknowledgement field which the sender of this segment is willing to accept. Checksum: 16 bits Checksum field is calculated to verify the data correctness.
  • 7. Characteristics of TCP • Basic Data Transfer: Continuous transfer of octets in each direction • Reliability: Must have to recover from data that is damaged, lost, duplicated or delivered or not. • Flow Control: How much to send and how much to receive. (Acknowledgement) • Multiplexing: Uses different ports and addresses to do simultaneously communication. Processes) (Many • Connection: Reliability and Flow Control mechanism requires TCPs initialize or connection status. • Security: The users of TCP may indicate the security and precedence of their communication
  • 8. TCP three-way handshake process • It is usually a process that takes place when a computer is about to communicate with a foreign device to establish rules for communication. • To establish a connection, each device must send a SYN and receive an ACK for it from the other device. Thus, conceptually, we need to have four control messages pass between the devices. However, it's inefficient to send a SYN and an ACK in separate messages when one could communicate both simultaneously. Thus, in the normal sequence of events in connection establishment, one of the SYNs and one of the ACKs is sent together by setting both of the relevant bits (a message sometimes called a SYN+ACK). This makes a total of three messages, and for this reason the connection procedure is called a three-way handshake.
  • 9. • E.g. : SYN: The active open is performed by the client sending a SYN to the server. The client sets the segment's sequence number to a random valueA. • SYN-ACK: In response, the server replies with a SYN-ACK. The acknowledgment number is set to one more than the received sequence number i.e. A+1, and the sequence number that the server chooses for the packet is another random number, B. • ACK: Finally, the client sends an ACK back to the server. The sequence number is set to the received acknowledgement value i.e. A+1, and the acknowledgement number is set to one more than the received sequence number i.e. B+1.
  • 10. HostAsends a TCP SYNchronize packet to Host B Host B receivesA's SYN Host B sends a SYNchronize-ACKnowledgement HostAreceives B's SYN-ACK HostAsendsACKnowledge Host B receivesACK. TCP socket connection is ESTABLISHED
  • 11. Applications of TCP • Used to send large number of files. • Used for traffic that you need all the data for. i.e. HTML, pictures, etc. • Reliable for use. • In TCP the data will not be corrupted. •
  • 12. • TCP has a mechanism to control the errors. • It is a connection oriented protocol, It establishes a path, or a virtual connection all the way through switches routers proxies etc. and then starts any communication. • Used for security purposes. E.g.: TCP is mailing a letter with a return receipt at the post office, except that the post master will organize the letters in-order-of mailing and only deliver them in-order.
  • 13. Relationship between TCP and IP • The Internet Protocol Suite (commonly known as TCP/IP) is the set of communications protocols used for the Internet and other similar networks. • It is named from two of the most important protocols in it: • the Transmission Control Protocol (TCP) and • the Internet Protocol (IP), which were the first two networking protocols defined in this standard.
  • 14.
  • 15. Transmission Control Protocol (TCP) • Transmission Control Protocol (TCP) is the core protocol of the Internet Protocol Suite. • TCP provides the delivery of a stream of bytes from a program from one computer to another computer. • TCP provides reliable, ordered, and error-checked delivery of a stream of octets between applications running on hosts communicating over an IP network. • TCP is the connection-oriented protocol.
  • 16. Internet Protocol (IP) • IP has the task of delivering packets from the source host to the destination host solely based on the IP addresses in the packet headers. • Internet Protocol is connectionless protocol.
  • 17. Summary • Both TCP and IP are the connection protocols from Internet Protocol Suite or TCP/IP model. • TCP is a core operating on a relatively high level; IP operates at a lower level. • TCP is the protocol from Transport Layer whereas IP is the primary protocol in the Internet Layer. • TCP provides communication services at an intermediate level between an application program and the IP; IP encapsulates all data, and is connectionless.
  • 18.
  • 19. Standard TCP/IP services • Telnet • FTP/Anonymous FTP • TFTP Source: http://docs.oracle.com/
  • 20. Telnet: - Telnet is a user command and an underlying TCP/IP protocol for accessing remote computers. - The Telnet protocol enables terminals and terminal-oriented processes to communicate on a network running TCP/IP. - Telnet provides a user interface through which two hosts can communicate on a character-by-character or line-by-line basis. - 23 is the port number.
  • 21. Anonymous / File Transfer Protocol (FTP) - The File Transfer Protocol (FTP) is a standard network protocol used to transfer computer files from one host to another host over a TCP- based network, such as the Internet. - Anonymous FTP is a common way to get access to a server in order to view or download files that are publicly available. - 20/21 is the port number.
  • 22. Trivial File Transfer Protocol (TFTP) • Trivial File Transfer Protocol (TFTP) is a simple, lock-step, File Transfer Protocol which allows a client to get from or put a file onto a remote host. • Trivial File Transfer Protocol (TFTP) is an Internet software utility for transferring files that is simpler to use than the File Transfer Protocol (FTP) but less capable. • It is used where user authentication and directory visibility are not required. • 69 is the port number.
  • 23. Port Numbers • A port number is a way to identify a specific process to which an Internet or other network message is to be forwarded when it arrives at a server. • For the Transmission Control Protocol, a port number is a 16-bit integer that is put in the header appended to a message unit.
  • 24. Socket Address • A socket address is the combination of an IP address and a port number, much like one end of a telephone connection is the combination of a phone number and a particular extension. • Based on this address, internet sockets deliver incoming data packets to the appropriate application process or thread.