SlideShare a Scribd company logo
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 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 2 3
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. (Many
Processes)
• 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 value A.
• 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.
Host A sends a TCP SYNchronize packet to Host B
Host B receives A's SYN
Host B sends a SYNchronize-ACKnowledgement
Host A receives B's SYN-ACK
Host A sends ACKnowledge
Host B receives ACK.
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

What's hot

TCP & UDP ( Transmission Control Protocol and User Datagram Protocol)
TCP & UDP ( Transmission Control Protocol and User Datagram Protocol)TCP & UDP ( Transmission Control Protocol and User Datagram Protocol)
TCP & UDP ( Transmission Control Protocol and User Datagram Protocol)
Kruti Niranjan
 
Transport layer services
Transport layer servicesTransport layer services
Transport layer services
Melvin Cabatuan
 
Tcp3 wayhandshakeprocess
Tcp3 wayhandshakeprocessTcp3 wayhandshakeprocess
Tcp3 wayhandshakeprocess
Aashutoshkumar28
 
Transport layer
Transport layerTransport layer
Transport layer
arvind pandey
 
TCP/IP and UDP protocols
TCP/IP and UDP protocolsTCP/IP and UDP protocols
TCP/IP and UDP protocols
Dawood Faheem Abbasi
 
Tcp udp
Tcp udpTcp udp
Tcp udp
Programmer
 
Tcp header/IP Header/Authentication header
Tcp header/IP Header/Authentication headerTcp header/IP Header/Authentication header
Tcp header/IP Header/Authentication header
Faizan Shaikh
 
Transmission Control Protocol (TCP)
Transmission Control Protocol (TCP)Transmission Control Protocol (TCP)
Transmission Control Protocol (TCP)
k33a
 
TCP/IP 3-way Handshake
TCP/IP 3-way Handshake TCP/IP 3-way Handshake
TCP/IP 3-way Handshake
Alok Tripathi
 
User datagram protocol
User datagram protocolUser datagram protocol
User datagram protocol
Ishtdeep Hora
 
Tcp Udp Icmp And The Transport Layer
Tcp Udp Icmp And The Transport LayerTcp Udp Icmp And The Transport Layer
Tcp Udp Icmp And The Transport Layer
tmavroidis
 
Chap 12 tcp
Chap 12 tcpChap 12 tcp
Chap 12 tcp
Sparsh Samir
 
Transport layer udp and tcp network
Transport layer udp and tcp networkTransport layer udp and tcp network
Transport layer udp and tcp network
HamzahMohammed4
 
Transport Layer [Autosaved]
Transport Layer [Autosaved]Transport Layer [Autosaved]
Transport Layer [Autosaved]
Ram Dutt Shukla
 
Basic Programming concepts - Programming with C++
Basic Programming concepts - Programming with C++Basic Programming concepts - Programming with C++
Basic Programming concepts - Programming with C++
Mohamed El Desouki
 
6 2 transport layer (tcp)
6 2 transport layer (tcp)6 2 transport layer (tcp)
6 2 transport layer (tcp)Tutun Juhana
 

What's hot (20)

Tcp
TcpTcp
Tcp
 
TCP & UDP ( Transmission Control Protocol and User Datagram Protocol)
TCP & UDP ( Transmission Control Protocol and User Datagram Protocol)TCP & UDP ( Transmission Control Protocol and User Datagram Protocol)
TCP & UDP ( Transmission Control Protocol and User Datagram Protocol)
 
TCP/IP(networking)
TCP/IP(networking)TCP/IP(networking)
TCP/IP(networking)
 
Transport layer services
Transport layer servicesTransport layer services
Transport layer services
 
Ch12
Ch12Ch12
Ch12
 
Tcp3 wayhandshakeprocess
Tcp3 wayhandshakeprocessTcp3 wayhandshakeprocess
Tcp3 wayhandshakeprocess
 
Transport layer
Transport layerTransport layer
Transport layer
 
TCP/IP and UDP protocols
TCP/IP and UDP protocolsTCP/IP and UDP protocols
TCP/IP and UDP protocols
 
Tcp udp
Tcp udpTcp udp
Tcp udp
 
Tcp header/IP Header/Authentication header
Tcp header/IP Header/Authentication headerTcp header/IP Header/Authentication header
Tcp header/IP Header/Authentication header
 
Transmission Control Protocol (TCP)
Transmission Control Protocol (TCP)Transmission Control Protocol (TCP)
Transmission Control Protocol (TCP)
 
Tcp Udp
Tcp UdpTcp Udp
Tcp Udp
 
TCP/IP 3-way Handshake
TCP/IP 3-way Handshake TCP/IP 3-way Handshake
TCP/IP 3-way Handshake
 
User datagram protocol
User datagram protocolUser datagram protocol
User datagram protocol
 
Tcp Udp Icmp And The Transport Layer
Tcp Udp Icmp And The Transport LayerTcp Udp Icmp And The Transport Layer
Tcp Udp Icmp And The Transport Layer
 
Chap 12 tcp
Chap 12 tcpChap 12 tcp
Chap 12 tcp
 
Transport layer udp and tcp network
Transport layer udp and tcp networkTransport layer udp and tcp network
Transport layer udp and tcp network
 
Transport Layer [Autosaved]
Transport Layer [Autosaved]Transport Layer [Autosaved]
Transport Layer [Autosaved]
 
Basic Programming concepts - Programming with C++
Basic Programming concepts - Programming with C++Basic Programming concepts - Programming with C++
Basic Programming concepts - Programming with C++
 
6 2 transport layer (tcp)
6 2 transport layer (tcp)6 2 transport layer (tcp)
6 2 transport layer (tcp)
 

Viewers also liked

Conjestion control
Conjestion controlConjestion control
Conjestion control
Barani Tharan
 
7.2.1.8 lab using wireshark to observe the tcp 3-way handshake
7.2.1.8 lab   using wireshark to observe the tcp 3-way handshake7.2.1.8 lab   using wireshark to observe the tcp 3-way handshake
7.2.1.8 lab using wireshark to observe the tcp 3-way handshake
gabriel morillo
 
computer networks layers
computer networks layerscomputer networks layers
computer networks layers
Student
 
TCP congestion control
TCP congestion controlTCP congestion control
TCP congestion control
Shubham Jain
 
Congestion avoidance in TCP
Congestion avoidance in TCPCongestion avoidance in TCP
Congestion avoidance in TCP
selvakumar_b1985
 
The handshake
The handshakeThe handshake
The handshake
Jyoti Kathju
 
Network Fundamentals: Ch4 - Transport Layer
Network Fundamentals: Ch4 - Transport LayerNetwork Fundamentals: Ch4 - Transport Layer
Network Fundamentals: Ch4 - Transport Layer
Abdelkhalik Mosa
 
Tcp Congestion Avoidance
Tcp Congestion AvoidanceTcp Congestion Avoidance
Tcp Congestion Avoidance
Ram Dutt Shukla
 

Viewers also liked (8)

Conjestion control
Conjestion controlConjestion control
Conjestion control
 
7.2.1.8 lab using wireshark to observe the tcp 3-way handshake
7.2.1.8 lab   using wireshark to observe the tcp 3-way handshake7.2.1.8 lab   using wireshark to observe the tcp 3-way handshake
7.2.1.8 lab using wireshark to observe the tcp 3-way handshake
 
computer networks layers
computer networks layerscomputer networks layers
computer networks layers
 
TCP congestion control
TCP congestion controlTCP congestion control
TCP congestion control
 
Congestion avoidance in TCP
Congestion avoidance in TCPCongestion avoidance in TCP
Congestion avoidance in TCP
 
The handshake
The handshakeThe handshake
The handshake
 
Network Fundamentals: Ch4 - Transport Layer
Network Fundamentals: Ch4 - Transport LayerNetwork Fundamentals: Ch4 - Transport Layer
Network Fundamentals: Ch4 - Transport Layer
 
Tcp Congestion Avoidance
Tcp Congestion AvoidanceTcp Congestion Avoidance
Tcp Congestion Avoidance
 

Similar to Tcp ip presentation

Unit 5.Transport Layer.pptx
Unit 5.Transport Layer.pptxUnit 5.Transport Layer.pptx
Unit 5.Transport Layer.pptx
1136NayanSonawane
 
Transmission Control Protocol_ Computer Networks
Transmission Control Protocol_ Computer NetworksTransmission Control Protocol_ Computer Networks
Transmission Control Protocol_ Computer Networks
Manimaran A
 
TCP_NISCHAYBAHL.pptx
TCP_NISCHAYBAHL.pptxTCP_NISCHAYBAHL.pptx
TCP_NISCHAYBAHL.pptx
NischayBahl1
 
Unit-4 (1).pptx
Unit-4 (1).pptxUnit-4 (1).pptx
Unit-4 (1).pptx
poonamsngr
 
TCP/IP Basics
TCP/IP BasicsTCP/IP Basics
TCP/IP Basics
sanjoysanyal
 
Unit 4-Transport Layer Protocols-3.pptx
Unit 4-Transport Layer Protocols-3.pptxUnit 4-Transport Layer Protocols-3.pptx
Unit 4-Transport Layer Protocols-3.pptx
DESTROYER39
 
Unit 4-Transport Layer Protocols.pptx
Unit 4-Transport Layer Protocols.pptxUnit 4-Transport Layer Protocols.pptx
Unit 4-Transport Layer Protocols.pptx
sarosh32
 
Transport protocols
Transport protocolsTransport protocols
Transport protocols
Online
 
Transport layer protocol
Transport layer protocolTransport layer protocol
Transport layer protocol
N.Jagadish Kumar
 
TRANSPORT LAYER ppt.pptx
TRANSPORT LAYER ppt.pptxTRANSPORT LAYER ppt.pptx
TRANSPORT LAYER ppt.pptx
utkarshlodhi4
 
Networking essentials lect3
Networking essentials lect3Networking essentials lect3
Networking essentials lect3
Roman Brovko
 
Transport layer.pptx
Transport layer.pptxTransport layer.pptx
Transport layer.pptx
MohammedAnas871930
 
TCP- Transmission Control Protocol
TCP-  Transmission Control Protocol TCP-  Transmission Control Protocol
TCP- Transmission Control Protocol
Akhil .B
 
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
AnyapuPranav
 
Transport Layer
Transport LayerTransport Layer
Transport Layer
Ram Dutt Shukla
 
TCP /IP
TCP /IPTCP /IP
Osi model
Osi modelOsi model
Osi model
Anuj Kumar
 
Tcp presentation
Tcp presentationTcp presentation
Tcp presentation
Ramla Sheikh
 

Similar to Tcp ip presentation (20)

Unit 5.Transport Layer.pptx
Unit 5.Transport Layer.pptxUnit 5.Transport Layer.pptx
Unit 5.Transport Layer.pptx
 
Transmission Control Protocol_ Computer Networks
Transmission Control Protocol_ Computer NetworksTransmission Control Protocol_ Computer Networks
Transmission Control Protocol_ Computer Networks
 
TCP_NISCHAYBAHL.pptx
TCP_NISCHAYBAHL.pptxTCP_NISCHAYBAHL.pptx
TCP_NISCHAYBAHL.pptx
 
TCP/IP
TCP/IPTCP/IP
TCP/IP
 
Unit-4 (1).pptx
Unit-4 (1).pptxUnit-4 (1).pptx
Unit-4 (1).pptx
 
TCP/IP Basics
TCP/IP BasicsTCP/IP Basics
TCP/IP Basics
 
Unit 4-Transport Layer Protocols-3.pptx
Unit 4-Transport Layer Protocols-3.pptxUnit 4-Transport Layer Protocols-3.pptx
Unit 4-Transport Layer Protocols-3.pptx
 
Unit 4-Transport Layer Protocols.pptx
Unit 4-Transport Layer Protocols.pptxUnit 4-Transport Layer Protocols.pptx
Unit 4-Transport Layer Protocols.pptx
 
Transport protocols
Transport protocolsTransport protocols
Transport protocols
 
Transport layer protocol
Transport layer protocolTransport layer protocol
Transport layer protocol
 
TRANSPORT LAYER ppt.pptx
TRANSPORT LAYER ppt.pptxTRANSPORT LAYER ppt.pptx
TRANSPORT LAYER ppt.pptx
 
Networking essentials lect3
Networking essentials lect3Networking essentials lect3
Networking essentials lect3
 
Transport layer.pptx
Transport layer.pptxTransport layer.pptx
Transport layer.pptx
 
TCP- Transmission Control Protocol
TCP-  Transmission Control Protocol TCP-  Transmission Control Protocol
TCP- Transmission Control Protocol
 
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
 
Transport Layer
Transport LayerTransport Layer
Transport Layer
 
TCP /IP
TCP /IPTCP /IP
TCP /IP
 
Osi model
Osi modelOsi model
Osi model
 
計概
計概計概
計概
 
Tcp presentation
Tcp presentationTcp presentation
Tcp presentation
 

More from Satya P. Joshi

Intergroup Conflict Management.pptx
Intergroup Conflict Management.pptxIntergroup Conflict Management.pptx
Intergroup Conflict Management.pptx
Satya P. Joshi
 
Training methods in human resource managment
Training methods in human resource managmentTraining methods in human resource managment
Training methods in human resource managment
Satya P. Joshi
 
Selection tests in human resource management
Selection tests in human resource managementSelection tests in human resource management
Selection tests in human resource management
Satya P. Joshi
 
Interview and it’s types - human resource managmenet
Interview and it’s types - human resource managmenetInterview and it’s types - human resource managmenet
Interview and it’s types - human resource managmenet
Satya P. Joshi
 
Motivation, achievement theory, goal setting theory
Motivation, achievement theory, goal setting theoryMotivation, achievement theory, goal setting theory
Motivation, achievement theory, goal setting theory
Satya P. Joshi
 
Characteristics, objectives & challenges of human resource manager
Characteristics, objectives & challenges of human resource managerCharacteristics, objectives & challenges of human resource manager
Characteristics, objectives & challenges of human resource manager
Satya P. Joshi
 
Human Resource Planning
Human Resource PlanningHuman Resource Planning
Human Resource Planning
Satya P. Joshi
 
Nested queries in database
Nested queries in databaseNested queries in database
Nested queries in database
Satya P. Joshi
 
Technology and work design in Organizational Relation
Technology and work design in Organizational RelationTechnology and work design in Organizational Relation
Technology and work design in Organizational Relation
Satya P. Joshi
 
Techniques of achieving google quality of service
Techniques of achieving google quality of serviceTechniques of achieving google quality of service
Techniques of achieving google quality of service
Satya P. Joshi
 
Overview of digital communication in HSN and Multimedia
Overview of digital communication in HSN and MultimediaOverview of digital communication in HSN and Multimedia
Overview of digital communication in HSN and Multimedia
Satya P. Joshi
 
Introduction to human resource management
Introduction to human resource managementIntroduction to human resource management
Introduction to human resource management
Satya P. Joshi
 
Security and control in Management Information System
Security and control in Management Information SystemSecurity and control in Management Information System
Security and control in Management Information System
Satya P. Joshi
 
Designing the supply chain network
Designing the supply chain networkDesigning the supply chain network
Designing the supply chain network
Satya P. Joshi
 
Introduction to Organizational Behavior and Organizational Relation
Introduction to Organizational Behavior and Organizational RelationIntroduction to Organizational Behavior and Organizational Relation
Introduction to Organizational Behavior and Organizational Relation
Satya P. Joshi
 
Selection tests and Reliability and Validity in HRM
Selection tests and Reliability and Validity in HRMSelection tests and Reliability and Validity in HRM
Selection tests and Reliability and Validity in HRM
Satya P. Joshi
 
Analog and digital signal system : digital logic
Analog and digital signal system : digital logicAnalog and digital signal system : digital logic
Analog and digital signal system : digital logic
Satya P. Joshi
 
Transmission media on Client server and high speed network
Transmission media on Client server and high speed networkTransmission media on Client server and high speed network
Transmission media on Client server and high speed network
Satya P. Joshi
 
Remote procedure call on client server computing
Remote procedure call on client server computingRemote procedure call on client server computing
Remote procedure call on client server computing
Satya P. Joshi
 
Physical and logical topologies in computer network and client server
Physical  and logical topologies in computer network and client serverPhysical  and logical topologies in computer network and client server
Physical and logical topologies in computer network and client server
Satya P. Joshi
 

More from Satya P. Joshi (20)

Intergroup Conflict Management.pptx
Intergroup Conflict Management.pptxIntergroup Conflict Management.pptx
Intergroup Conflict Management.pptx
 
Training methods in human resource managment
Training methods in human resource managmentTraining methods in human resource managment
Training methods in human resource managment
 
Selection tests in human resource management
Selection tests in human resource managementSelection tests in human resource management
Selection tests in human resource management
 
Interview and it’s types - human resource managmenet
Interview and it’s types - human resource managmenetInterview and it’s types - human resource managmenet
Interview and it’s types - human resource managmenet
 
Motivation, achievement theory, goal setting theory
Motivation, achievement theory, goal setting theoryMotivation, achievement theory, goal setting theory
Motivation, achievement theory, goal setting theory
 
Characteristics, objectives & challenges of human resource manager
Characteristics, objectives & challenges of human resource managerCharacteristics, objectives & challenges of human resource manager
Characteristics, objectives & challenges of human resource manager
 
Human Resource Planning
Human Resource PlanningHuman Resource Planning
Human Resource Planning
 
Nested queries in database
Nested queries in databaseNested queries in database
Nested queries in database
 
Technology and work design in Organizational Relation
Technology and work design in Organizational RelationTechnology and work design in Organizational Relation
Technology and work design in Organizational Relation
 
Techniques of achieving google quality of service
Techniques of achieving google quality of serviceTechniques of achieving google quality of service
Techniques of achieving google quality of service
 
Overview of digital communication in HSN and Multimedia
Overview of digital communication in HSN and MultimediaOverview of digital communication in HSN and Multimedia
Overview of digital communication in HSN and Multimedia
 
Introduction to human resource management
Introduction to human resource managementIntroduction to human resource management
Introduction to human resource management
 
Security and control in Management Information System
Security and control in Management Information SystemSecurity and control in Management Information System
Security and control in Management Information System
 
Designing the supply chain network
Designing the supply chain networkDesigning the supply chain network
Designing the supply chain network
 
Introduction to Organizational Behavior and Organizational Relation
Introduction to Organizational Behavior and Organizational RelationIntroduction to Organizational Behavior and Organizational Relation
Introduction to Organizational Behavior and Organizational Relation
 
Selection tests and Reliability and Validity in HRM
Selection tests and Reliability and Validity in HRMSelection tests and Reliability and Validity in HRM
Selection tests and Reliability and Validity in HRM
 
Analog and digital signal system : digital logic
Analog and digital signal system : digital logicAnalog and digital signal system : digital logic
Analog and digital signal system : digital logic
 
Transmission media on Client server and high speed network
Transmission media on Client server and high speed networkTransmission media on Client server and high speed network
Transmission media on Client server and high speed network
 
Remote procedure call on client server computing
Remote procedure call on client server computingRemote procedure call on client server computing
Remote procedure call on client server computing
 
Physical and logical topologies in computer network and client server
Physical  and logical topologies in computer network and client serverPhysical  and logical topologies in computer network and client server
Physical and logical topologies in computer network and client server
 

Tcp ip presentation

  • 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 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 2 3 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. (Many Processes) • 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 value A. • 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. Host A sends a TCP SYNchronize packet to Host B Host B receives A's SYN Host B sends a SYNchronize-ACKnowledgement Host A receives B's SYN-ACK Host A sends ACKnowledge Host B receives ACK. 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.