Lec 2: Protocols.

Slides:



Advertisements
Similar presentations
Cisco 2 - Routers Perrine. J Page 14/30/2015 Chapter 10 TCP/IP Protocol Suite The function of the TCP/IP protocol stack is to transfer information from.
Advertisements

CCNA – Network Fundamentals
IST 201 Chapter 9. TCP/IP Model Application Transport Internet Network Access.
Chapter Three Network Protocols.
1 © 2003, Cisco Systems, Inc. All rights reserved. CCNA 1 v3.0 Module 11 TCP/IP Transport and Application Layers.
Understanding Networks. Objectives Compare client and network operating systems Learn about local area network technologies, including Ethernet, Token.
Introduction To Networking
1 Version 3.0 Module 9 TCP/IP Protocol and IP Addressing.
Data Networking Fundamentals Unit 7 7/2/ Modified by: Brierley.
TCP: Software for Reliable Communication. Spring 2002Computer Networks Applications Internet: a Collection of Disparate Networks Different goals: Speed,
Defining Network Protocols Application Protocols –Application Layer –Presentation Layer –Session Layer Transport Protocols –Transport Layer Network Protocols.
COMPUTER NETWORKS.
CS 356 Systems Security Spring Dr. Indrajit Ray
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,
1 Protocol Interaction (ISO’s Open Systems Interconnection (OSI model)) the 7 layers.
1.  A protocol is a set of rules that governs the communications between computers on a network.  Functions of protocols:  Addressing  Data Packet.
Lesson 24. Protocols and the OSI Model. Objectives At the end of this Presentation, you will be able to:
Network Protocols. Why Protocols?  Rules and procedures to govern communication Some for transferring data Some for transferring data Some for route.
70-291: MCSE Guide to Managing a Microsoft Windows Server 2003 Network Chapter 3: TCP/IP Architecture.
NetworkProtocols. Objectives Identify characteristics of TCP/IP, IPX/SPX, NetBIOS, and AppleTalk Understand position of network protocols in OSI Model.
Network Protocols.
Chapter 9.
Presentation on Osi & TCP/IP MODEL
CIM 2465 Intro to TCP/IP1 Introduction to TCP/IP (Topic 5) Textbook: Networking Basics, CCNA 1 Companion Guide, Cisco Press Cisco Networking Academy Program,
Chapter Three Network Protocols. Agenda Attendance, and Ch.2 Quiz questions TCP/IP Model IP Header (Using Ethereal to analyze the IP header) TCP Header.
Copyright 2003 CCNA 1 Chapter 9 TCP/IP Transport and Application Layers By Your Name.
Huda AL_Omairl - Network 71 Protocols and Network Software.
Chapter Three Network Protocols By JD McGuire ARP Address Resolution Protocol Address Resolution Protocol The core protocol in the TCP/IP suite that.
Chap 9 TCP/IP Andres, Wen-Yuan Liao Department of Computer Science and Engineering De Lin Institute of Technology
TCP/IP TCP/IP LAYERED PROTOCOL TCP/IP'S APPLICATION LAYER TRANSPORT LAYER NETWORK LAYER NETWORK ACCESS LAYER (DATA LINK LAYER)
11 TRANSPORT LAYER PROTOCOLS Chapter 6 TCP and UDP SPX and NCP.
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.
ITEC 370 George Vaughan Franklin University
Addressing Through the Layers  Data Link Layer Address  Network Layer Address.
TCP/IP Honolulu Community College Cisco Academy Training Center Semester 2 Version 2.1.
OS Services And Networking Support Juan Wang Qi Pan Department of Computer Science Southeastern University August 1999.
Chapter 2 Protocols and the TCP/IP Suite 1 Chapter 2 Protocols and the TCP/IP Suite.
1 Chapter Overview Network Communications The OSI Reference Model.
1 Chapter Overview Network Communications The OSI Reference Model.
Institute of Technology Sligo - Dept of Computing Chapter 12 The Transport Layer.
S305 – Network Infrastructure Chapter 5 Network and Transport Layers.
1 Bus topology network. 2 Data is sent to all computers, but only the destination computer accepts 02608c
Page 12/9/2016 Chapter 10 Intermediate TCP : TCP and UDP segments, Transport Layer Ports CCNA2 Chapter 10.
Voice Over Internet Protocol (VoIP) Copyright © 2006 Heathkit Company, Inc. All Rights Reserved Presentation 5 – VoIP and the OSI Model.
Advanced Higher Computing Computer Networking Topic 1: Network Protocols and Standards.
The OSI Model. Understanding the OSI Model In early 1980s, manufacturers began to standardize networking so that networks from different manufacturers.
CIS 173 Networking Week #9 OBJECTIVES Chapter #6 Network Communications Protocols.
11/18/2016Basic TCP/IP Networking 1 TCP/IP Overview Basic Networking Concepts.
Computer Network protocols
Chapter 7: Transport Layer
Chapter 5 Network and Transport Layers
Network Protocols.
The OSI Model and the TCP/IP Protocol Suite
Lecture 6: TCP/IP Networking By: Adal Alashban
Data Networking Fundamentals
Network Architecture Introductory material
Network Protocols.
Net 431: ADVANCED COMPUTER NETWORKS
Chapter Three Network Protocols.
The Open System Interconnection (OSI) Model & Network Protocols.
Introduction to Protocol and Layer
The OSI Model and the TCP/IP Protocol Suite
Review of Important Networking Concepts
Computing Over Distance
TCP/IP Protocol Suite: Review
1 TRANSMISSION CONTROL PROTOCOL / INTERNET PROTOCOL (TCP/IP) K. PALANIVEL Systems Analyst, Computer Centre Pondicherry University, Puducherry –
CS4470 Computer Networking Protocols
Network Architecture Models
The OSI Model and the TCP/IP Protocol Suite
The TCP/IP Model.
Presentation transcript:

Lec 2: Protocols

What is protocol? A protocol is a set of rules that governs the communications between computers on a network. Functions of protocols: Addressing Data Packet Format Segmentation (Splitting long messages into small pieces) Embedding control information Detecting Errors Controlling data flow Controlling connection

What is protocol stack? A protocol stack is a complete set of network protocol layers that work together smoothly to provide networking capabilities such as accessing network resources & exchanging information. It is called a stack because it is typically designed as a hierarchy of layers, each supporting the one above it and using those below it. Example of protocol stack: TCP/IP

What is TCP/IP? is the suite of communications protocols that is used to connect hosts on the Internet and on most other computer networks as well. It is also referred to as the TCP/IP protocol suite and the Internet protocol suite.

Protocol Classification By Routing Capabilities: Routable Protocols Non-routable Protocols By Method Orientation: Connection oriented Connectionless By Layer Level Tasks: Tasks on the Application Level Tasks on the Transport Level Tasks on the Network Level

By Routing Capabilities: Routable Protocols A communications protocol that contains a network address (IP Address) as well as a device address (MAC Address). Allows packets to be forwarded from one network to another. Used in both LAN or WAN Example: IP, IPX. Non-routable Protocols A communications protocol that contains only a device address (MAC address) and not a network address (IP address). Does not incorporate an addressing scheme for sending data from one network to another Used only in LAN Example: NetBIOS

By Method Orientation Connection-oriented Connectionless Establishes a secure connection between the sender and the receiver before exchanging data then close the connection after exchanging data. Advantage: Reliable (Because it guarantee the data arrival) Disadvantage: Slow data arrival Example: TCP (Transmission Control Protocol) Connectionless Data is exchanged without prior arrangement or connection establishment. The sender transmits data to the receiver without ensuring that the recipient is available and ready to receive the data. Advantage: Fast data arrival Disadvantage: Not-reliable (Does not guarantee data arrival) Example: IP (Internet Protocol) - UDP (User Datagram Protocol)

By Layer Level Tasks Tasks on the application level (Application layer, Presentation layer, Session layer) Insure connection between user applications & the network server & exchange data between them. Example: File Transfer Protocol (FTP) allow transferring data between the sender & the receiver. Server Message Block (SMB) Simple Network Management Protocol (SNMP)

By Layer Level Tasks Tasks on the transport level (Transport Layer) Insure the security & the continuity of data transfer without any mistakes & is responsible for maintaining the quality & the accuracy of the exchanged information between devices. Examples: Transmission Control Protocol (TCP) User Data Protocol (UDP)

By Layer Level Tasks Tasks on the network level (Data link layer – Network layer): Include tasks performed by data link layer & network layer. It routes messages Assign address to messages Establish path between the sender & the receiver. Example: IPX Protocol: It is a connectionless unreliable routable network protocol IPX corresponds to IP protocol from the TCP/IP suite which is responsible for addressing & routing data.

Protocols used in Network Management Simple Network Management Protocol (SNMP) It is a protocol for managing networks & controlling them to get the best network performance & generating statistical reports about network hardware & maintaining the network security. Functions: Performance management Network setup management Error detection management Network security management Account management on the network

Protocols used in Network Management Common Management Information Protocol (CMIP) Monitoring & controlling (ISO) standards on the network, referred to as (C_MIP) (C.MOT) Cmip Over TCP/IP A copy from (C.MIP) that works on the TCP/IP networks (C.MOL) Cmip Over IEEE 802 (Ethernet, Token ring) A copy from (C_MIP) works on network with the same bandwidth.(ex: Eithrnet, Token Ring)

Protocols used in Network Management Distributed Management Environment (DME) A protocol for managing & controlling networks defined by open source systems & it is not widely used. Transmission Control Protocol/ Internet Protocol (TCP/IP) Suite of protocols that allow networks & deferent kind of network devices to be connected to each other. It has becomes the standard protocol that is used to guarantee the compatibility between different kind of devices. Supported by LAN & WAN networks.

Protocols used in Network Management A Transmission Control Protocol (TCP) It is a connection oriented transport protocol used with the group of (TCP/IP) protocols. Monitors the size of the information sent over the network. (Reliable) Ensure data arrival in the correct format to the intended recipient. 4. B Internet Protocol (IP) A protocol that receives data packets from UDP or TCP protocol & adds to the header an IP address

Protocols used in Network Management C User Datagram Protocol (UDP) A connection-less transport protocol that is one of the core protocols of the Internet protocol suite & alternative to the TCP. Usable to send large amount of data in short time. Example: Live broadcasting of video conferencing

Protocols used in Network Management D Internet Control Management Protocol (ICMP) One of the TCP/IP protocols for sending & controlling error messages. Example: Router uses this protocol to inform the sender that the receiver is not available. E Address Resolution Protocol (ARP) One of the TCP/IP protocols used to get the MAC address (physical address) from the IP address (logical address). This protocol works by sending the IP address in the network & the work station that has that IP address responds by sending its physical address.

Protocols used in Network Management F Reverse Address Resolution Protocol It is one of the TCP/IP suite protocols used to get the IP address (logical address) from the MAC address (physical address) G Dynamic Host Configuration Protocol (DHCP) It is one of the TCP/IP protocols automatically assign IP addresses users who join the TCP/IP network so that no need to manually assign IP addresses. Used in ISDN routers & in MODEM router that allow users to connect to the Internet.

Protocols used in Network Management Internet Packet eXchange (IPX) It is one of the Netware operating system protocol works exactly as IP address in the TCP/IP. It contain the network address and allow messages to be routed into specified network but it does not guarantee the completeness in the message arrival. Netware: Group of operating systems from (NOVELL) that help other operating systems such as: Windows, Macintosh, DOS, OS12

Summary