Protocols & Packet Switching

Slides:



Advertisements
Similar presentations
CSCI-235 Micro-Computers in Science The Network. Network Fundamentals A computer network consists of two or more computers linked together to exchange.
Advertisements

1 The 7 layer OSI model Sending an . 2 The seven layers.
PROTOCOLS AND ARCHITECTURE Lesson 2 NETS2150/2850.
Copyright © 2002 Pearson Education, Inc. Slide 3-1 PERTEMUAN 5.
Chapter Extension 7 How the Internet Works © 2008 Prentice Hall, Experiencing MIS, David Kroenke.
Vocabulary URL = uniform resource locator: web address protocol –set of rules that networked computers follow in order to share data and coordinate communications.
Term 2, 2011 Week 1. CONTENTS Network communications standards – Ethernet – TCP/IP Other network protocols – The standard – Wireless application.
Data Exchange Packet switching  Packet switching breaks data in to packets before sending it through a network, then reassembles it at the other end –
1.  A protocol is a set of rules that governs the communications between computers on a network.  Functions of protocols:  Addressing  Data Packet.
Transmission Control Protocol Internet Protocol TCP/IP.
Midterm Review - Network Layers. Computer 1Computer 2 2.
Syllabus outcomes Describes and applies problem-solving processes when creating solutions Designs, produces and evaluates appropriate solutions.
Week3 Internet and Web Technology. Core technologies – where we are headed.
Chapter 1: Introduction to Web Applications. This chapter gives an overview of the Internet, and where the World Wide Web fits in. It then outlines the.
Networks QUME 185 Introduction to Computer Applications.
© 2007 Cisco Systems, Inc. All rights reserved.Cisco Public 1 Version 4.0 Network Services Networking for Home and Small Businesses – Chapter 6.
Data and Computer Communications Chapter 2 – Protocol Architecture, TCP/IP, and Internet-Based Applications 1.
Rules of Packet Transmission
The OSI Model.
Circuit & Packet Switching. ► Two ways of achieving the same goal. ► The transfer of data across networks. ► Both methods have advantages and disadvantages.
The Internet The internet is simply a worldwide computer network that uses standardised communication protocols to transmit and exchange data.
The Inter-network is a big network of networks.. The five-layer networking model for the internet.
Information Flow Across the Internet. What is the Internet? A large group of computers that link together to form the Worldwide Area Network (WAN)
William Stallings Data and Computer Communications
INTRANETS MR ROSS UNIT 3 IT APPLICATIONS. DEFINITION An intranet is an internal, secured environment that has a similar look and feel to the Internet,
Network Protocols and Standards (Part 2). The OSI Model In 1984, the International Organization for Standardization (ISO) defined a standard, or set of.
Networks. Ethernet  Invented by Dr. Robert Metcalfe in 1970 at Xerox Palo Alto Research Center  Allows group of computers to communicate in a Local.
Networks Part 2: Infrastructure + Protocols NYU-Poly: HSWP Instructor: Mandy Galante.
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 12-Jan-16 OSI network layer CCNA Exploration Semester 1 Chapter 5.
ISDS 4120 Project 1 DWAYNE CARRAL JR 3/27/15. There are seven layers which make up the OSI (Open Systems Interconnection Model) which is the model for.
8/28/ Network Models - Lin 1 CPET/ECET Network Models Data Communications and Networking Fall 2004 Professor Paul I-Hai Lin Electrical and.
Networks and the Internet Topic 3. Three Important Networking Technologies Networks, Internet, WWW.
Enterprise Network Systems TCP Mark Clements. 3 March 2008ENS 2 Last Week – Client/ Server Cost effective way of providing more computing power High specs.
Packet switching Monil Adhikari. Packet Switching Packet switching is the method by which the internet works, it features delivery of packets of data.
Data Communication Network Models
CSCI-100 Introduction to Computing The Network. Network Fundamentals A computer network consists of two or more computers linked together to exchange.
BASICS Gabriella Paolini (GARR) 27/05/11 - ICCU Roma 1 How INTERNET works !
1 28-Sep-16 S Ward Abingdon and Witney College CCNA Exploration Semester 1 OSI network layer CCNA Exploration Semester 1 Chapter 5.
Networking Objectives Recap and understand the following network addressing terms – IP address – MAC address – Packet – protocol.
Ethernet, WiFi & Protocols
What is a Protocol A set of definitions and rules defining the method by which data is transferred between two or more entities or systems. The key elements.
Network Hardware for Expanding Network
LESSON Networking Fundamentals Understand TCP/IP.
Lecture (2).
Transfer of data in ICT systems
How is all that data traffic controlled on the Internet?
Distributed Systems.
THE OSI MODEL By: Omari Dasent.
Vocabulary Prototype: A preliminary sketch of an idea or model for something new. It’s the original drawing from which something real might be built or.
Lec 2: Protocols.
Vocabulary Prototype: A preliminary sketch of an idea or model for something new. It’s the original drawing from which something real might be built or.
Web Development & Design Chapter 1, Sections 4, 5 & 6
TASK 4 Guideline.
How Data Flows through the Internet
Transport Layer Unit 5.
Chapter 3: Open Systems Interconnection (OSI) Model
I. Basic Network Concepts
Multimedia and Networks
Web Design & Development
Data Communication Networks
Protocols 1 Key Revision Points.
Computer communications
© OCR NETWORK TOPOLOGIES, PROTOCOLS AND LAYERS 2.
Protocols 2 Key Revision Points.
CSE 313 Data Communication
How Our Customers Communicate With Us
Network and the internet
Protocol Application TCP/IP Layer Model
WJEC GCSE Computer Science
Presentation transcript:

Protocols & Packet Switching Friday, 05 April 2019 Protocols & Packet Switching

Objectives Identify a range of network protocols and their purpose Identify the purpose of a packet switching Demonstrate an understanding of how packet switching works

A way or procedure for doing something Protocols What is a protocol? A way or procedure for doing something An agreed method A system of rules A set of rules for how messages are turned into data packets and sent across networks. Protocols manage key points about a message: speed of transmission size of the message error checking deciding if the transmission is synchronous or asynchronous

Network Protocols The protocol used for communicating over the internet is called TCP/IP, or "Transmission Control Protocol / Internet Protocol". It has two parts: TCP and IP. 20 mins

What information do data packets have? source - which computer the message came from destination - where the message should go packet sequence - the order the message data should be re-assembled data - the data of the message error check - the check to see that the message has been sent correctly

Packet When devices transmit data, data is broken into small pieces, these are called packets. These are sent individually and then joined up at the end so the message becomes complete again. Parts of a packet Header – Contains the source, destination address & position of the packet in the completed message Body – Part of the message it carries (also referred to as the payload) Footer – Used for error checking & ensuring the complete packet has been delivered intact (also referred to at the trailer)

Packet The packet sent between computer A and B Take different routes across the network. Arrive in different order

How does it work? The file is split into packets with the address IP attached Split because the transmission of a large file would consume all the bandwidth and slow the network The packets are sent onto the network using cable or microwaves Routers on the network inspect each packet and decide the most efficient path for the packet to take on the next stage of the journey Each router has a configuration table containing information about which connections lead to particular groups of addresses. The router can balance the load across the network on a millisecond by millisecond basis If there is a problem with one part of the network while a message is being transferred, packets can be routed around the problem, ensuring the delivery of the entire message. The final router can direct the packet to the correct recipient This is the process of packet switching, billions of communications at the same time and if there is a problem then they just use a different route

Packets Task Complete this worksheet. Use your class notes to help you. Challenge Task1: Describe the difference between HTTP and HTTPS. How does HTTPS work? Challenge Task2: Complete this word fill. Learning Objective Identify the purpose of a packet switching Demonstrate an understanding of how packet switching works