TCP/IP Protocol Suite: Review

Slides:



Advertisements
Similar presentations
(4.4) Internet Protocols Layered approach to Internet Software 1.
Advertisements

© 2007 Cisco Systems, Inc. All rights reserved.Cisco Public 1 Version 4.0 Communicating over the Network Network Fundamentals – Chapter 2.
1 Review of Important Networking Concepts Introductory material. This module uses the example from the previous module to review important networking concepts:
Data Communications Architecture Models. What is a Protocol? For two entities to communicate successfully, they must “speak the same language”. What is.
OSI Model 7 Layers 7. Application Layer 6. Presentation Layer
 The Open Systems Interconnection model (OSI model) is a product of the Open Systems Interconnection effort at the International Organization for Standardization.
1 Review of Important Networking Concepts Introductory material. This slide uses the example from the previous module to review important networking concepts:
CS 356 Systems Security Spring Dr. Indrajit Ray
1 TCP/IP architecture A set of protocols allowing communication across diverse networks Out of ARPANET Emphasize on robustness regarding to failure Emphasize.
1 Protocol Interaction (ISO’s Open Systems Interconnection (OSI model)) the 7 layers.
Protocols and the TCP/IP Suite Chapter 4. Multilayer communication. A series of layers, each built upon the one below it. The purpose of each layer is.
Module 10. Internet Protocol (IP) is the routed protocol of the Internet. IP addressing enables packets to be routed from source to destination using.
TCP/IP Protocol Suite - examples
Lecture 2 TCP/IP Protocol Suite Reference: TCP/IP Protocol Suite, 4 th Edition (chapter 2) 1.
1 ELEN602 Lecture 2 Review of Last Lecture Layering.
Computer Networks (CS 132/EECS148) General Networking Example Karim El Defrawy Donald Bren School of Information and Computer Science University of California.
TCP/IP Essentials A Lab-Based Approach Shivendra Panwar, Shiwen Mao Jeong-dong Ryoo, and Yihan Li Chapter 5 UDP and Its Applications.
TCP/IP TCP/IP LAYERED PROTOCOL TCP/IP'S APPLICATION LAYER TRANSPORT LAYER NETWORK LAYER NETWORK ACCESS LAYER (DATA LINK LAYER)
1 The Internet and Networked Multimedia. 2 Layering  Internet protocols are designed to work in layers, with each layer building on the facilities provided.
ECE 526 – Network Processing Systems Design Networking: protocols and packet format Chapter 3: D. E. Comer Fall 2008.
Chapter 6-2 the TCP/IP Layers. The four layers of the TCP/IP model are listed in Table 6-2. The layers are The four layers of the TCP/IP model are listed.
CSE 6590 Department of Computer Science & Engineering York University 111/9/ :26 AM.
TCP/IP Protocol Architecture CSE 3213 – Fall
1 OSI and TCP/IP Models. 2 TCP/IP Encapsulation (Packet) (Frame)
S305 – Network Infrastructure Chapter 5 Network and Transport Layers.
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.
1. Layered Architecture of Communication Networks: TCP/IP Model
Slide #1 CIT 380: Securing Computer Systems TCP/IP.
Net 221D:Computer Networks Fundamentals
Voice Over Internet Protocol (VoIP) Copyright © 2006 Heathkit Company, Inc. All Rights Reserved Presentation 5 – VoIP and the OSI Model.
The OSI Model. Understanding the OSI Model In early 1980s, manufacturers began to standardize networking so that networks from different manufacturers.
COMPUTER NETWORKS Hwajung Lee. Image Source:
Communication Networks NETW 501 Tutorial 2
Roadmap  Introduction to Basics  Computer Network – Components | Classification  Internet  Clients and Servers  Network Models  Protocol Layers.
Chapter Objectives In this chapter, you will learn:
Chapter 5 Network and Transport Layers
Introduction to TCP/IP networking
Lecture 3 By Miss Irum Matloob.
Computer Networks.
Introduction to TCP/IP
Chapter 5 Network and Transport Layers
Distributed Systems.
The OSI Model and the TCP/IP Protocol Suite
Chapter 1 Introduction Computer Networks, Fifth Edition by Andrew Tanenbaum and David Wetherall, © Pearson Education-Prentice Hall, 2011.
Lec 2: Protocols.
ISO/OSI Model and Collision Domain
Layered Architectures
Lecture 6: TCP/IP Networking By: Adal Alashban
Network Architecture Introductory material
Networking and Internet
The Open System Interconnection (OSI) Model & Network Protocols.
Networking and Internet
The OSI Model and the TCP/IP Protocol Suite
Topic 5: Communication and the Internet
Review of Important Networking Concepts
Data Link Issues Relates to Lab 2.
Computing Over Distance
Process-to-Process Delivery:
Lecture 4 Communication Network Protocols
Communication Networks NETW 501
TCP/IP Protocol Suite: Review
Lecture 2: Overview of TCP/IP protocol
1 TRANSMISSION CONTROL PROTOCOL / INTERNET PROTOCOL (TCP/IP) K. PALANIVEL Systems Analyst, Computer Centre Pondicherry University, Puducherry –
The OSI Model and the TCP/IP Protocol Suite
OSI Reference Model Unit II
Kyle Broussard, Alexandra Mikolai,
Process-to-Process Delivery: UDP, TCP
Review of Important Networking Concepts
OSI Model 7 Layers 7. Application Layer 6. Presentation Layer
Transport Layer 9/22/2019.
Presentation transcript:

TCP/IP Protocol Suite: Review CSE 6590 Fall 2010 Department of Computer Science & Engineering York University 12/2/2018 6:25 PM

OSI and TCP/IP Models

TCP/IP Encapsulation (Packet) (Frame)

TCP/IP Model and Example Protocols A list of protocols used in TCP/IP: DNS FTP SMTP HTTP TCP UDP IP Application Transport Internet Network Access ARPANET SATNET Packet Radio LAN Physical

TCP/IP Protocols

TCP/IP Addressing Port (or SAP) numbers of processes at source and destination IP addresses of source and destination Network interface card (NIC) addresses defined by the NIC Port number IP address NIC address

IP Addresses Each host in the Internet is identified by a globally unique IP address The IP address identifies the host’s network interface rather than the host itself (usually the host is identified by its physical address within a network). An IP address consists of two parts: network ID and host ID (more on formats of IP addresses later). IP addresses on the Internet are distributed in a hierarchical way. At the top of the hierarchy is ICANN (Internet Corporation for Assigned Names and Numbers). ICANN allocates blocks of IP addresses to regional Internet registries. There are currently three regional Internet registries that cover the Americas, Europe, and Asia. The regional registries then further allocate blocks of IP addresses to local Internet registries within their geographic region. Finally, the local Internet registries assign addresses to end users. Router: a node that is attached to two or more physical networks. Each network interface has its own IP address.

Physical Addresses On a physical network, the attachment of a device to the network is often identified by a physical address. The format of the physical address depends on the particular type of network. Example: Ethernet LANs use 48-bit addresses. Ethernet: protocol for bus LANs, originally designed by Xerox, later developed into IEEE 802.3 standard. Every machine in a LAN comes with a NIC that is assigned a physical address.

Network Interface Cards (NICs) NICs are adapters installed in a computer that provide the connection point to a network. Each NIC is designed for a specific type of LAN, such as Ethernet, token ring, FDDI. A NIC provides an attachment point for a specific type of cable, such as coaxial cable, twisted-pair cable, or fiber-optic cable. Every NIC has a globally unique identifying node address (globally unique physical address). Token ring and Ethernet card addresses are hardwired on the card. The IEEE (Institute of Electrical and Electronic Engineers) is in charge of assigning addresses to token ring and Ethernet cards. Each manufacturer is given a unique code and a block of addresses.

Example: HTTP and Web Browsing 12/2/2018 6:25 PM Example: HTTP and Web Browsing Infrastructure: A LAN comprising of a server and a workstation is connected via a router to a PC. The connection between the router and PC is a point-to-point (PPP) connection. Each machine on the LAN typically have two addresses: An IP address known globally An Ethernet address determined by its network interface card (NIC) The router has as many IP addresses as the number of networks connected to it. (1,1), s Server LAN (1,2), w Workstation (1,3), r Router (2,1) Server Work station Router PC IP (1,1) (1,2) (1,3) (2,2) (2,1) Ethernet s w r PPP (2,2) PC

Example: HTTP and Web Browsing (2) 12/2/2018 6:25 PM Example: HTTP and Web Browsing (2) Protocols: used for an HTTP request made by PC to server HTTP TCP IP Interface Ethernet PPP Server / workstation PC Router (1,1), s Server LAN (1,2), w Workstation (1,3), r Router (2,1) PPP (2,2) PC

Example: HTTP and Web Browsing (3) 12/2/2018 6:25 PM Example: HTTP and Web Browsing (3) Instruction: http://www.tesla.comm.utoronto.ca/infocomm/index.html Hypertext transfer protocol: Specifies rules by which client / server interact. Uniform Resource locator (URL) of the server: 1st part typically translated to an address by Domain Name Server (DNS), 2nd part specifies document HTTP is only concerned with the interaction of the client with the server, not with the actual setting up of connection. A connection is first set up between the client and the server. For connection-oriented services, this implies setting up of a physical connection. HTTP requires the service of TCP to provide a reliable service between the two machines. TCP itself requires the service of IP and so on. This leads to a layered approach. HTTP (application) TCP (Transport) IP (Internet)

Example: HTTP and Web Browsing (4) 12/2/2018 6:25 PM Example: HTTP and Web Browsing (4) Task: Transfer of an HTML request from PC to Server For simplicity, assume a TCP connection is established between the server and PC (more on connections later). HTTP request is passed on to the TCP layer of PC that creates a TCP segment containing server port number (SP#) and client port number (CP#) TCP segment is passed to IP layer that creates an IP datagram where protocol field (PF) shows that upper layer has asked for the information. IP datagram is passed on to interface layer. Router LAN PPP (1,1), s Server (1,2), w Workstation (2,2) PC (1,3), r (2,1) CP# HTTP request SP# …. Header TCP segment (2,2) (1,1) …. PF Header

Example: HTTP and Web Browsing (5) 12/2/2018 6:25 PM Example: HTTP and Web Browsing (5) Interface layer encapsulates the IP datagram into a PPP frame, and sends the PPP frame to the router. The IP datagram is extracted by the interface layer of the router and passed on to the Internet layer. The Internet layer extracts the destination address (1,1) and checks the routing table for a match. Since a match exists, the Interface layer prepares an Ethernet frame encapsulating the IP datagram plus the Ethernet addresses in the header, and broadcasts the Ethernet frame on the LAN. Router LAN PPP (1,1), s Server (1,2), w Workstation (2,2) PC (1,3), r (2,1) IP datagram PPP header C Checksum r s …. Header IP datagram C Checksum

Example: HTTP and Web Browsing (6) 12/2/2018 6:25 PM Example: HTTP and Web Browsing (6) Interface layer of the Server compares the Ethernet address with the address on its network interface card (NIC). The address matches so the Ethernet frame is accepted. A Checksum is performed to check for errors. In case of no errors, the IP datagram is extracted and passed on to the Internet layer. The Internet layer maps the IP address and sees that the IP datagram is meant for it. It extracts the TCP segment and passes it on to the TCP layer Router LAN PPP (1,1), s Server (1,2), w Workstation (2,2) PC (1,3), r (2,1) TCP segment (2,2) (1,1) …. PF Header CP# HTTP request SP# …. Header

Example: HTTP and Web Browsing (7) 12/2/2018 6:25 PM Example: HTTP and Web Browsing (7) 7. HTTP request is extracted by TCP layer and passed on to specified port number. 8. Recall that the protocol used by the Transport layer is TCP, which is a reliable connection-oriented protocol. An acknowledgment is therefore sent to the PC in exactly the same manner as the request was received. The Application layer retrieves the HTML document and transmits it to the PC following steps (1-8) in reverse order. Router LAN PPP (1,1), s Server (1,2), w Workstation (2,2) PC (1,3), r (2,1)

Summary of TCP/IP Model

TCP Window Management Slow start awnd = MIN[credit, cwnd] Start connection with cwnd=1 Increment cwnd at each ACK, to some max Dynamic windows sizing on congestion When a timeout occurs Set slow start threshold to half current congestion window ssthresh=cwnd/2 Set cwnd = 1 and slow start until cwnd=ssthresh Increasing cwnd by 1 for every ACK For cwnd >=ssthresh, increase cwnd by 1 for each RTT

TCP Slow Start & Congestion Avoidance

Connection-oriented vs. Connectionless Communications Does not requires a session connection be established before sending data Sender simply starts sending packets (datagrams) to the receiver Different packets may take different routes Data packets may arrive out-of-order. Less reliable than connection-oriented services, but more efficient for data communications

Examples of Connection-oriented and Connectionless Communications Internet: One big connectionless packet switching network in which all packet deliveries are handled by IP (unreliable) TCP adds connection-oriented services on top of IP (for reliable delivery) UDP provides connectionless services on top of IP ATM: connection-oriented packet switching networks LANs: Connectionless systems TCP can be used to provide connection-oriented (reliable) services Reference: www.linktionary.com/c/connections.html

References Data and Computer Communications by William Stallings