The Internet Ed Lazowska Bill & Melinda Gates Chair Paul G. Allen School of Computer Science & Engineering University of Washington July 2018.

Slides:



Advertisements
Similar presentations
PROTOCOLS AND ARCHITECTURE Lesson 2 NETS2150/2850.
Advertisements

The Internet Ed Lazowska Bill & Melinda Gates Chair in Computer Science & Engineering University of Washington August 2010.
1 Review of Important Networking Concepts Introductory material. This module uses the example from the previous module to review important networking concepts:
1 Review of Important Networking Concepts Introductory material. This slide uses the example from the previous module to review important networking concepts:
TCP/IP Essentials A Lab-Based Approach Shivendra Panwar, Shiwen Mao Jeong-dong Ryoo, and Yihan Li Chapter 0 TCP/IP Overview.
 TCP/IP is the communication protocol for the Internet  TCP/IP defines how electronic devices should be connected to the Internet, and how data should.
70-291: MCSE Guide to Managing a Microsoft Windows Server 2003 Network Chapter 3: TCP/IP Architecture.
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.
© 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.
TCP/IP and the Internet ARPANET (1969) –R&D network funded by DARPA. –Packet Switching Survive nuclear war. –Experimental to operational (1975). –Not suitable.
Networks – Network Architecture Network architecture is specification of design principles (including data formats and procedures) for creating a network.
Networks QUME 185 Introduction to Computer Applications.
Computer Networks (CS 132/EECS148) General Networking Example Karim El Defrawy Donald Bren School of Information and Computer Science University of California.
© McLean HIGHER COMPUTER NETWORKING Lesson 1 – Protocols and OSI What is a network protocol Description of the OSI model.
Data and Computer Communications Chapter 2 – Protocol Architecture, TCP/IP, and Internet-Based Applications 1.
1 Figure 3-2: TCP/IP Standards (Study Figure) Origins  Defense Advanced Research Projects Agency (DARPA) created the ARPANET  An internet connects multiple.
Internet Protocol B Bhupendra Ratha, Lecturer School of Library and Information Science Devi Ahilya University, Indore
IT 344: Operating Systems Winter 2008 Module 19 Networking & Remote Procedure Call (RPC) Chia-Chi Teng CTB 265.
INDEX oWoWhat is TCP/IP protocol suite ? oDoDifferent layers. oEoEncapsulation. oPoProtocol Interface.
Chapter 2 Protocols and the TCP/IP Suite 1 Chapter 2 Protocols and the TCP/IP Suite.
Data Communications and Networks
TCP/IP MODEL   Short overview for OSI model;  What is TCP/IP model?;  How is divided;  The TCP/IP structure;  The Application Layer;  The Transport.
70-291: MCSE Guide to Managing a Microsoft Windows Server 2003 Network, Enhanced Chapter 3: TCP/IP Architecture.
1 Transport Protocols Relates to Lab 5. An overview of the transport protocols of the TCP/IP protocol suite. Also, a short discussion of UDP.
S305 – Network Infrastructure Chapter 5 Network and Transport Layers.
TCP =Transmission Control Protocol IP = Internet Protocol TCP/IP Protocol.
Net 221D:Computer Networks Fundamentals
Intro to Distributed Systems and Networks Hank Levy.
8/28/ Network Models - Lin 1 CPET/ECET Network Models Data Communications and Networking Fall 2004 Professor Paul I-Hai Lin Electrical and.
Transmission Control Protocol (TCP) Internet Protocol (IP)
CSE 451: Operating Systems Spring 2012 Module in 9 slides Ed Lazowska Allen Center 570.
- 1 - DPNM Review of Important Networking Concepts J. Won-Ki Hong Dept. of Computer Science and Engineering POSTECH Tel:
Lecture 4 : Network Architectures (cont..) 1. 2 Summary of OSI Layers.
Roadmap  Introduction to Basics  Computer Network – Components | Classification  Internet  Clients and Servers  Network Models  Protocol Layers.
11/18/2016Basic TCP/IP Networking 1 TCP/IP Overview Basic Networking Concepts.
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.
Introduction to Networks
Chapter 5 Network and Transport Layers
LESSON Networking Fundamentals Understand TCP/IP.
Virtualization of networks
Communication Protocols
Functions of 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.
A quick intro to networking
Distributed Systems.
The Internet Ed Lazowska Bill & Melinda Gates Chair Paul G. Allen School of Computer Science & Engineering University of Washington July 2017.
Networking for Home and Small Businesses – Chapter 6
Network Architecture Introductory material
Introduction to Networks
Networking for Home and Small Businesses – Chapter 6
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.
CSE 451: Operating Systems Spring 2005 Module in 9 slides
CSE 451: Operating Systems Winter 2007 Module in 9 slides
Review of Important Networking Concepts
Transport Protocols An overview of the transport protocols of the TCP/IP protocol suite. Also, a short discussion of UDP.
Lecture 6: TCP/IP Networking 1nd semester By: Adal ALashban.
TCP/IP Protocol Suite: Review
1 TRANSMISSION CONTROL PROTOCOL / INTERNET PROTOCOL (TCP/IP) K. PALANIVEL Systems Analyst, Computer Centre Pondicherry University, Puducherry –
Chapter 2 Network Models
CSE 451: Operating Systems Autumn 2009 Module in 9 slides
CSE 451: Operating Systems Winter 2004 Module in 7 slides
CSE 451: Operating Systems Autumn 2010 Module in 9 slides
Networking for Home and Small Businesses – Chapter 6
Network and the internet
Protocol Application TCP/IP Layer Model
16EC Computer networks unit II Mr.M.Jagadesh
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.
Presentation transcript:

The Internet Ed Lazowska Bill & Melinda Gates Chair Paul G. Allen School of Computer Science & Engineering University of Washington July 2018

Data link layer: Original Ethernet Broadcast network CSMA-CD: Carrier Sense Multiple Access with Collision Detection “Standing in a circle, drinking beer and telling stories” analogy Packetized – fixed maximum size Every computer has a unique physical address on its network 00-08-74-C9-C8-7E

Packet format A computer’s network interface listens for its address, and interrupts the operating system when a packet is received physical address payload

Network layer: IP Internet Protocol (IP) routes packets across multiple networks, from source to destination Every computer has a unique Internet (IP) address 172.30.192.251 Individual networks are connected by routers that have physical addresses (and interfaces) on each connected network

A really hairy protocol lets any computer on a network find the physical address on that network of a router that can get a packet one step closer to its destination Packet format physical address payload IP address

So to send a packet to a destination A separate really hairy protocol, DNS (the Domain Name Service), maps from intelligible names (lazowska.org) to IP addresses (209.180.207.60) So to send a packet to a destination use DNS to convert domain name to IP address prepare IP packet, with payload prefixed by IP address determine physical address of appropriate router encapsulate IP packet in Ethernet packet with appropriate physical address blast away! Detail: port number gets you to a specific address space on a system a process can “register” for a port, and some are always used: 25=SMTP, 80=web server, 20=FTP, 22=ssh, etc.

Transport layer: TCP TCP: Transmission Control Protocol manages to fabricate reliable multi-packet messages out of unreliable single-packet datagrams analogy: sending a book via postcards – what’s required? physical address payload IP address TCP hdr

Summary Using TCP/IP and lower layers, we can get multi-packet messages delivered reliably from address space A on computer B to address space C on computer D, where computers B and D are many heterogeneous network hops apart, without knowing any of the underlying details Higher protocol layers facilitate specific services email: smtp web: http file transfer: ftp remote login: telnet

History lesson Ethernet was preceded by the Aloha Network The Internet (TCP/IP) was preceded by ARPANET In the late 1970s and early to mid 1980s, various companies had their own proprietary networking standards IBM: SNA DEC: DECNET Apple: Appletalk Microsoft: LanMan Xerox: PuP It was not at all clear that TCP/IP would dominate DARPA and better architecture prevailed!

Data Link, Network/Transport, Web Vint Cerf Bob Metcalfe Tim Berners-Lee JCR Licklider Bob Kahn David Boggs Bob Taylor