Kyle Broussard, Alexandra Mikolai,

Slides:



Advertisements
Similar presentations
TCP/IP MODEL Maninder Kaur
Advertisements

Chapter 7 Intro to Routing & Switching.  Upon completion of this chapter, you should be able to:  Explain the need for the transport layer.  Identify.
© 2007 Cisco Systems, Inc. All rights reserved.Cisco Public 1 Version 4.0 Network Services Networking for Home and Small Businesses – Chapter 6.
Network Services Networking for Home & Small Business.
© 2007 Cisco Systems, Inc. All rights reserved.Cisco Public 1 Version 4.0 Communicating over the Network Network Fundamentals – Chapter 2.
Networking Theory (part 2). Internet Architecture The Internet is a worldwide collection of smaller networks that share a common suite of communication.
Introduction to Management Information Systems Chapter 5 Data Communications and Internet Technology HTM 304 Fall 07.
OSI Model 7 Layers 7. Application Layer 6. Presentation Layer
Understanding Networks Charles Zangla. Network Models Before I can explain how connections are made from across the country, I would like to provide you.
NETWORKING CONCEPTS. TCP/IP The TCPIIP protocol suite was developed prior to the OSI model TCP/IP protocol suite was defined as having four layers: Host-to-network,
Process-to-Process Delivery:
Hands-On Microsoft Windows Server 2003 Networking Chapter Three TCP/IP Architecture.
Lesson 24. Protocols and the OSI Model. Objectives At the end of this Presentation, you will be able to:
70-291: MCSE Guide to Managing a Microsoft Windows Server 2003 Network Chapter 3: TCP/IP Architecture.
© 2007 Cisco Systems, Inc. All rights reserved.Cisco Public ITE PC v4.0 Chapter 1 1 Network Services Networking for Home and Small Businesses – Chapter.
Huda AL_Omairl - Network 71 Protocols and Network Software.
Network Services Networking for Home & Small Business.
© 2007 Cisco Systems, Inc. All rights reserved.Cisco Public 1 Version 4.0 Network Services Networking for Home and Small Businesses – Chapter 6.
Component 9 – Networking and Health Information Exchange Unit 1-1 ISO Open Systems Interconnection (OSI) This material was developed by Duke University,
TCP/IP Transport and Application (Topic 6)
1 Figure 3-2: TCP/IP Standards (Study Figure) Origins  Defense Advanced Research Projects Agency (DARPA) created the ARPANET  An internet connects multiple.
Information Flow Across the Internet. What is the Internet? A large group of computers that link together to form the Worldwide Area Network (WAN)
Internet Protocol B Bhupendra Ratha, Lecturer School of Library and Information Science Devi Ahilya University, Indore
Data Communications and Networks
Presented by Rebecca Meinhold But How Does the Internet Work?
S305 – Network Infrastructure Chapter 5 Network and Transport Layers.
TCP =Transmission Control Protocol IP = Internet Protocol TCP/IP Protocol.
Individual Project 1 Sarah Pritchard. Fran, a customer of your company, would like to visit your company’s website from her home computer… How does your.
Net 221D:Computer Networks Fundamentals
TCP/IP. The idea behind TCP/IP is exactly the same we explained about the OSI reference model: when transmitting data, programs talk to the Application.
Transmission Control Protocol (TCP) Internet Protocol (IP)
Enterprise Network Systems TCP Mark Clements. 3 March 2008ENS 2 Last Week – Client/ Server Cost effective way of providing more computing power High specs.
Page 12/9/2016 Chapter 10 Intermediate TCP : TCP and UDP segments, Transport Layer Ports CCNA2 Chapter 10.
Computer Network Architecture Lecture 6: OSI Model Layers Examples 1 20/12/2012.
Internet Flow By: Terry Hernandez. Getting from the customers computer onto the internet Internet Browser
The OSI Model. Understanding the OSI Model In early 1980s, manufacturers began to standardize networking so that networks from different manufacturers.
Lecture 4 : Network Architectures (cont..) 1. 2 Summary of OSI Layers.
Networking Using the OSI Model.
Chapter 5 Network and Transport Layers
Transport Protocols Relates to Lab 5. An overview of the transport protocols of the TCP/IP protocol suite. Also, a short discussion of UDP.
Introduction to TCP/IP
Chapter 5 Network and Transport Layers
Chapter 1 Introduction Computer Networks, Fifth Edition by Andrew Tanenbaum and David Wetherall, © Pearson Education-Prentice Hall, 2011.
OSI Protocol Stack Given the post man exemple.
Layered Architectures
Understand the OSI Model Part 2
Networking for Home and Small Businesses – Chapter 6
Network Architecture Introductory material
Networking for Home and Small Businesses – Chapter 6
Topic 5: Communication and the Internet
Review of Important Networking Concepts
Transport Protocols Relates to Lab 5. An overview of the transport protocols of the TCP/IP protocol suite. Also, a short discussion of UDP.
Transport Protocols Relates to Lab 5. An overview of the transport protocols of the TCP/IP protocol suite. Also, a short discussion of UDP.
TCP/IP Networking An Example
Process-to-Process Delivery:
Transport Protocols An overview of the transport protocols of the TCP/IP protocol suite. Also, a short discussion of UDP.
Lecture 4 Communication Network Protocols
TCP/IP Protocol Suite: Review
Lecture 2: Overview of TCP/IP protocol
Networking Theory (part 2)
1 TRANSMISSION CONTROL PROTOCOL / INTERNET PROTOCOL (TCP/IP) K. PALANIVEL Systems Analyst, Computer Centre Pondicherry University, Puducherry –
CSCD 330 Network Programming
Protocols 2 Key Revision Points.
Networking for Home and Small Businesses – Chapter 6
OSI Reference Model Unit II
Process-to-Process Delivery: UDP, TCP
The TCP/IP Model.
OSI Model 7 Layers 7. Application Layer 6. Presentation Layer
Transport Protocols Relates to Lab 5. An overview of the transport protocols of the TCP/IP protocol suite. Also, a short discussion of UDP.
Networking Theory (part 2)
Presentation transcript:

Kyle Broussard, Alexandra Mikolai, The TCP/IP Model Kyle Broussard, Alexandra Mikolai, and Joseph Thrower Today we are going to talk about the TCP/IP protocol suite. It is the most widely used and most widely available protocol suite. It consists of four layers, each layer depicts some functionality which can be carried out by a protocol. The four layers are the application layer, the transport layer, the internet layer and the link layer which is also sometimes called the network interface layer. Joe – 1-2 & 7-12 Alex – 3-4 Kyle – 5-6

The Client (your laptop) The interaction between two computers over the network through TCP/IP take place in the form of a client server architecture. The client requests for a service while the server processes the request for the client. For example, when you access a website from your laptop your laptop is acting as the host, or client requesting permission from the server to view the website.

Application Layer HTTP, FTP, SMTP, SNMP Creates data The application layer is the first layer of the TCP/IP architecture. The application layer has various protocols that applications use to communicate with the transport layer. In the example of connecting to a website, the application layer will use HTTP, or hypertext transfer protocol in order to communicate. The application layer is responsible for creating the data.

Breaks data into chunks Transport Layer TCP vs. UDP Breaks data into chunks The transport layer is involved with the assembly and disassembly of data. Some protocols require that the client and server verify that they have a good connection before a message is sent. These connection-oriented protocols are called Transmission Control Protocols, or TCP. An example of a TCP protocol is the POP, or post office protocol, it is the protocol used when sending and receiving emails. Another type of protocol used in the transport layer is called the User Datagram Protocol, or UDP. UDP is a connectionless protocol, it doesn’t require verification of a good connection before data is sent. An example of UDP is online video streaming. When data goes through the transport layer it is broken up into chunks. Those chunks are then put into either TCP segments or UDP datagrams depending on the protocol that is used. TCP Segment Destination port Source port Sequence number Checksum Flags Acknowledgements Data UDP Datagram Destination port Source port Sequence number Checksum Data

Packages data into IP packets Internet Layer Packages data into IP packets Routes IP packets The internet layer packages data into IP packets which contain source and destination address information that is used to forward the packets between hosts and across networks. It also performs the routing of IP packets. The internet layer isn’t concerned with the type of data in the IP packet or whether the data arrives on good order or not.

Link Layer (network interface) Cabling, hubs, physical addresses, and NICs Wraps IP packet into a frame with the MAC and a FCS. The Link Layer, also called the network interface layer, combines the data link and physical layer from the OSI model. Cabling, hubs, physical addresses, and NICs are all in the Link Layer. The link layer wraps the IP packets into a frame with the MAC address information and a frame check sequence (FCS). Any part of a network that deals with a complete frame is in the link layer.

Media for Data Transfer After the frames are assembled, they are ready to be transferred over the network.

Link Layer (network interface) The data follows the same path as before, but in reversed order. The frame goes to the link layer. At this layer the information which was stuffed by the link layer protocol of the host machine is read and rest of the data is passed to the upper layer.

Internet Layer At the internet layer, the information set by the internet layer protocol of the host machine is read and rest of the information is passed on the next upper layer.

Transport Layer Same happens at the transport layer

Application Layer and finally the HTTP request sent by the host application(your browser) is received by the target application(Website server).

The Server (webserver)