CSC 401 Data and Computer Communications Networks

Size: px
Start display at page:

Download "CSC 401 Data and Computer Communications Networks"

Transcription

1 CSC 401 Data and Computer Communications Networks Computer Networks and The Internet Sec Prof. Lina Battestilli

2 Outline Computer Networks and the Internet (Ch 1) 1.1 What is the Internet? 1.2 network edge end systems, access networks, links 1.3 network core circuit switching, packet switching, network structure 1.4 delay, loss, throughput in networks 1.5 protocol layers, service models 1.6 networks under attack: security 1.7 history Previous Lecture NCSU CSC401 Lina Battestilli 3

3 Packet switching versus circuit switching is packet switching a slam dunk winner? great for bursty data resource sharing simpler, no call setup excessive congestion possible: packet delay and loss protocols needed for reliable data transfer, congestion control Q: How to provide circuit-like behavior? bandwidth guarantees needed for audio/video apps still an unsolved problem (ch 7, Multimedia Networking) Q: human analogies of reserved resources (circuit switching) versus on-demand allocation (packet-switching)?

4 Outline Computer Networks and the Internet (Ch 1) 1.1 What is the Internet? 1.2 network edge end systems, access networks, links 1.3 network core circuit switching, packet switching, network structure 1.4 delay, loss, throughput in networks 1.5 protocol layers, service models 1.6 networks under attack: security 1.7 history NCSU CSC401 Lina Battestilli 6

5 How do loss and delay occur? packets queue in router buffers packet arrival rate to link (temporarily) exceeds output link capacity packets queue, wait for turn packet being transmitted (delay) A B packets queueing (delay) free (available) buffers: arriving packets dropped (loss) if no free buffers NCSU CSC401 Lina Battestilli 7

6 Four sources of packet delay A transmission propagation B nodal processing queueing d nodal = d proc + d queue + d trans + d prop d proc : nodal processing check bit errors determine output link typically < < msec d queue : queueing delay time waiting at output link for transmission depends on congestion level of router/network 8

7 Four sources of packet delay A transmission propagation B nodal processing queueing d nodal = d proc + d queue + d trans + d prop d trans : transmission delay: L: packet length (bits) R: link bandwidth (bps) d trans = L/R d trans and d prop very different d prop : propagation delay: D: length of physical link s: propagation speed in medium (~2x10 8 m/sec) d prop = D/s * Check out the online interactive exercises for more examples: 9

8 Caravan Analogy 100 km 100 km ten-car caravan toll booth toll booth cars propagate at 100 km/hr toll booth takes 12 sec to service car (bit transmission time) car~bit; caravan~packet Q: How long until caravan is lined up before 2nd toll booth? NCSU CSC401 Lina Battestilli 10

9 Caravan analogy (more) 100 km 100 km ten-car caravan toll booth toll booth suppose cars now propagate at 1000 km/hr and suppose toll booth now takes one min to service a car Q: Will cars arrive to 2nd booth before all cars are serviced at first booth? NCSU CSC401 Lina Battestilli 11

10 average queueing delay Queueing delay R: link bandwidth (bps) L: packet length (bits) a: average packet arrival rate traffic intensity = La/R utilization La/R ~ 0: avg. queueing delay small La/R -> 1: avg. queueing delay large La/R > 1: more work arriving than can be serviced, average delay infinite! La/R ~ 0 La/R -> 1 NCSU CSC401 Lina Battestilli 12

11 Packet loss queue (aka buffer) preceding link in buffer has finite capacity packet arriving to full queue are dropped (aka lost) lost packet may be retransmitted by previous node, by source end system, or not at all A buffer (waiting area) packet being transmitted B packet arriving to full buffer is lost NCSU CSC401 Lina Battestilli 13

12 Real Internet delays and routes what do real Internet delay & loss look like? traceroute program: provides delay measurement from source to router along end-end Internet path towards destination. For all i: sends three packets that will reach router i on path towards destination router i will return packets to sender sender times interval between transmission and reply. 3 probes 3 probes 3 probes NCSU CSC401 Lina Battestilli 14

13 Real Internet delays, routes traceroute: engr-ras-200.eos.ncsu.edu to 3 delay measurements * means no response (probe lost, router not replying) Let s try a traceroute now: What about ping? pku.edu.cn Try NCSU CSC401 Lina Battestilli 15

14 Throughput throughput: rate (bits/time unit) at which bits transferred between sender/receiver Instantaneous rate: at given point in time Average rate: over longer period of time A B server server, sends withbits (fluid) file of into F bits pipe to send to client link pipe capacity that can carry R s bits/sec fluid at rate R s bits/sec) link pipe capacity that can carry R c bits/sec fluid at rate R c bits/sec) Internet Phone, Real Time Video low delay, instantaneous throughput above some threshold File Transfer delay is not critical but large throughput is desirable NCSU CSC401 Lina Battestilli 20

15 Throughput R s < R c What is average end-end throughput? R s bits/sec R c bits/sec R s > R c What is average end-end throughput? R s bits/sec R c bits/sec bottleneck link link on end-end path that constrains end-end throughput NCSU CSC401 Lina Battestilli 21

16 Throughput: Internet scenario per-connection end-end throughput: min(r c, Rs, R/10) R s R s R s R in practice: R c or R s is often bottleneck, i.e. the access networks are the constraint R c R c R c Throughput depends transmission rates along the path Intervening traffic along the path 10 connections (fairly) share backbone bottleneck link R bits/sec NCSU CSC401 Lina Battestilli 22

17 Outline Computer Networks and the Internet (Ch 1) 1.1 What is the Internet? 1.2 network edge end systems, access networks, links 1.3 network core circuit switching, packet switching, network structure 1.4 delay, loss, throughput in networks 1.5 protocol layers, service models 1.6 networks under attack: security 1.7 history NCSU CSC401 Lina Battestilli 23

18 Protocol layers Networks are complex, with many pieces : hosts routers links of various media applications protocols hardware, software Question: is there any hope of organizing structure of network?. or at least our discussion of networks? NCSU CSC401 Lina Battestilli 24

19 Organization of air travel ticket (purchase) baggage (check) gates (load) runway takeoff airplane routing airplane routing ticket (complain) baggage (claim) gates (unload) runway landing airplane routing a series of steps Introduction 1-25

20 Layering of airline functionality ticket (purchase) ticket (complain) ticket baggage (check) baggage (claim baggage gates (load) gates (unload) gate runway (takeoff) runway (land) takeoff/landing airplane routing airplane routing airplane routing airplane routing airplane routing departure airport intermediate air-traffic control centers arrival airport layers: each layer implements a service via its own internal-layer actions relying on services provided by layer below NCSU CSC401 Lina Battestilli 26

21 Why layering? Helps us deal with complex systems explicit structure allows identification, relationship of complex system s pieces layered reference model for discussion reusable component design modularization eases maintenance, updating of system change of implementation of layer s service transparent to rest of system e.g., change in gate procedure doesn t affect rest of system layering considered harmful? NCSU CSC401 Lina Battestilli 27

22 The 5 Layer Internet Model Source End-Host Application HTTP, SMTP Transport Network Link Physical TCP, UDP IP, routing protocols Ethernet, WiFi Bits on the wire NCSU CSC401 Lina Battestilli 28

23 The 5 Layer Internet Model Source End-Host Destination End-Host Application Application Transport Router Router Transport Network Network Network Network Link Physical Link Physical Link Physical Link Physical NCSU CSC401 Lina Battestilli 29

24 The network layer is special We must use the Internet Protocol (IP) - IP makes a best-effort attempt to deliver our datagrams to the other end. But it makes no promises. - IP datagrams can get lost, can be delivered out of order, and can be corrupted. There are NO guarantees! CS144, Stanford University

25 The 5 Layer Internet Model Application Transport TCP, UDP Network Link Physical NCSU CSC401 Lina Battestilli 31

26 The 5 Layer Internet Model Application HTTP, SMTP Transport Network Link Physical NCSU CSC401 Lina Battestilli 32

27 Putting it all together Source End-Host Destination End-Host Application Application Transport Router Router Transport Network Network Network Network Link Physical Link Physical Link Physical Link Physical NCSU CSC401 Lina Battestilli 33

28 Summary of 5Layer Model Application Transport Network Link Physical Bi-directional reliable byte stream between two applications, using application-specific semantics (e.g. http, bit-torrent). Guarantees correct, in-order delivery of data endto-end. Controls congestion. Delivers datagrams end-to-end. Best-effort delivery no guarantees. Must use the Internet Protocol (IP). Delivers data over a single link between an end host and router, or between routers NCSU CSC401 Lina Battestilli 34

29 IP is the thin waist Application Transport Network Link Physical http smtp ssh ftp TCP UDP RTP IP Ethernet WiFi DSL 3G NCSU CSC401 Lina Battestilli 35

30 The 7-layer OSI Model Application http ASCII Application Presentation 7 6 Transport Network Link Physical TCP IP Ethernet Session Transport Network Link Physical The 7-layer OSI Model 36

31 segment datagram frame message H l H t H n H t H n H t M M M M source application transport network link physical Encapsulation link physical switch H l H n H n H t H t H t M M M M destination application transport network link physical H l H n H n H t H t M M network link physical H n H t M router

32 Outline Computer Networks and the Internet (Ch 1) 1.1 What is the Internet? 1.2 network edge end systems, access networks, links 1.3 network core circuit switching, packet switching, network structure 1.4 delay, loss, throughput in networks 1.5 protocol layers, service models 1.6 networks under attack: security 1.7 history NCSU CSC401 Lina Battestilli 38

33 Network security field of network security: how bad guys can attack computer networks how we can defend networks against attacks how to design architectures that are immune to attacks Internet not originally designed with (much) security in mind original vision: a group of mutually trusting users attached to a transparent network Internet protocol designers playing catch-up security considerations in all layers!

34 Bad guys: put malware into hosts via Internet malware can get in host from: virus: self-replicating infection by receiving/executing object (e.g., attachment) worm: self-replicating infection by passively receiving object that gets itself executed spyware malware can record keystrokes, web sites visited, upload info to collection site infected host can be enrolled in botnet, used for spam. DDoS attacks

35 Bad guys: attack server, network infrastructure Denial of Service (DoS): attackers make resources (server, bandwidth) unavailable to legitimate traffic by overwhelming resource with bogus traffic 1. select target 2. break into hosts around the network 3. send packets to target from compromised hosts target

36 Bad guys can sniff packets packet sniffing : broadcast media (shared ethernet, wireless) promiscuous network interface reads/records all packets (e.g., including passwords!) passing by A C src:b dest:a payload B wireshark is a (free) packet-sniffer

37 Bad guys can use fake addresses IP spoofing: send packet with false source address A C src:b dest:a payload B lots more on security ( Chapter 8)

38 Outline Computer Networks and the Internet (Ch 1) 1.1 What is the Internet? 1.2 network edge end systems, access networks, links 1.3 network core circuit switching, packet switching, network structure 1.4 delay, loss, throughput in networks 1.5 protocol layers, service models 1.6 networks under attack: security 1.7 history NCSU CSC401 Lina Battestilli 44

39 NCSU CSC401 Lina Battestilli 45

40 References Some of the slides are identical or derived from 1. Slides for the 7 th edition of the book Kurose & Ross, Computer Networking: A Top-Down Approach, 2. Slides by Jim Kurose for his CSC453 course at Umass 3. Slides from Nick McKeown, CS144 at Stanford University NCSU CSC401 Lina Battestilli

CMPE 150/L : Introduction to Computer Networks. Chen Qian Computer Engineering UCSC Baskin Engineering Lecture 3

CMPE 150/L : Introduction to Computer Networks. Chen Qian Computer Engineering UCSC Baskin Engineering Lecture 3 CMPE 150/L : Introduction to Computer Networks Chen Qian Computer Engineering UCSC Baskin Engineering Lecture 3 1 No Class 1/23 (next Tuesday) Dr. Qian absent to serve a duty for US Department of Energy

More information

CS 4390 Computer Networks

CS 4390 Computer Networks CS 4390 Computer Networks UT D application transport network data link physical Session 04 Packet Switching dapted from Computer Networking a Top-Down pproach 1996-2012 by J.F Kurose and K.W. Ross, ll

More information

Computer Networks & Security 2016/2017

Computer Networks & Security 2016/2017 Computer Networks & Security 2016/2017 Protocol Layering (02) Dr. Tanir Ozcelebi Courtesy: Kurose & Ross TU/e Computer Science Security and Embedded Networked Systems Your typical lunch Slide 2 What is

More information

Protocol Layers, Security Sec: Application Layer: Sec 2.1 Prof Lina Battestilli Fall 2017

Protocol Layers, Security Sec: Application Layer: Sec 2.1 Prof Lina Battestilli Fall 2017 CSC 401 Data and Computer Communications Networks Protocol Layers, Security Sec:1.5-1.6 Application Layer: Sec 2.1 Prof Lina Battestilli Fall 2017 Outline Computer Networks and the Internet (Ch 1) 1.1

More information

Computer Networking Introduction

Computer Networking Introduction Computer Networking Introduction Halgurd S. Maghdid Software Engineering Department Koya University-Koya, Kurdistan-Iraq Lecture No.3 Chapter 1: roadmap 1.1 what is the Internet? 1.2 network edge end systems,

More information

CSEE 4119 Computer Networks. Chapter 1 Introduction (4/4) Introduction 1-1

CSEE 4119 Computer Networks. Chapter 1 Introduction (4/4) Introduction 1-1 CSEE 4119 Computer Networks Chapter 1 Introduction (4/4) Introduction 1-1 Chapter 1: roadmap 1.1 What is the Internet? 1.2 Network edge! end systems, access networks, links 1.3 Network core! circuit switching,

More information

end systems, access networks, links circuit switching, packet switching, network structure

end systems, access networks, links circuit switching, packet switching, network structure Chapter 1: roadmap 1.1 What is the Internet? 1.2 Network edge end systems, access networks, links 1.3 Network core circuit switching, packet switching, network structure 1.4 Delay, loss and throughput

More information

Chapter 1: roadmap parte B

Chapter 1: roadmap parte B Chapter 1: roadmap parte B 1.1 what is the Internet? 1.2 network edge end systems, access networks, links 1.3 network core packet switching, circuit switching, network structure 1.4 delay, loss, throughput

More information

Computer Networking Introduction

Computer Networking Introduction Computer Networking Introduction Halgurd S. Maghdid Software Engineering Department Koya University-Koya, Kurdistan-Iraq Lecture No.2 Chapter 1: roadmap 1.1 what is the Inter? 1.2 work edge end systems,

More information

Fundamentals of Information Systems

Fundamentals of Information Systems Fundamentals of Information Systems Computer Networking Module Year 2017/2018 Master Degree in Data Science Armir Bujari abujari@math.unipd.it Inter structure: work of works Question: given millions of

More information

Lecture 12. Application Layer. Application Layer 1

Lecture 12. Application Layer. Application Layer 1 Lecture 12 Application Layer Application Layer 1 Agenda The Application Layer (continue) Web and HTTP HTTP Cookies Web Caches Simple Introduction to Network Security Various actions by network attackers

More information

Chapter 1. Computer Networks and the Internet

Chapter 1. Computer Networks and the Internet Chapter 1 Computer Networks and the Internet Internet traffic What s the Internet? (hardware) PC server wireless laptop cellular handheld wired links millions of connected computing devices: hosts = end

More information

COMP 562: Advanced Topics in Networking

COMP 562: Advanced Topics in Networking COMP 562: Advanced Topics in Networking Qian Zhang Spring 2009 HKUST Introduction 1-1 Course Info Instructor: Qian Zhang www.cs.ust.hk/~qianzh Course web site http://www.cs.ust.hk/~qianzh/comp562 2009/comp562

More information

CSEE 4119 Computer Networks. Chapter 1 Introduction (2/2) Introduction 1-1

CSEE 4119 Computer Networks. Chapter 1 Introduction (2/2) Introduction 1-1 CSEE 4119 Computer Networks Chapter 1 Introduction (2/2) Introduction 1-1 Chapter 1: Introduction Our goal: get feel and terminology more depth, detail later in course approach: use Internet as example

More information

end systems, access networks, links circuit switching, packet switching, network structure

end systems, access networks, links circuit switching, packet switching, network structure Chapter 1: roadmap 1.1 What is the Internet? 1.2 Network edge end systems, access networks, links 1.3 Network core circuit switching, packet switching, network structure 1.4 Delay, loss and throughput

More information

Chapter I: Introduction

Chapter I: Introduction Chapter I: Introduction UG3 Computer Communications & Networks (COMN) Myungjin Lee myungjin.lee@ed.ac.uk Slides copyright of Kurose and Ross The work core mesh of interconnected routers packet-switching:

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these Powerpoint slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you see the animations;

More information

Δίκτυα Μετάδοσης Δεδομένων Data Networks. Introduction 1-1

Δίκτυα Μετάδοσης Δεδομένων Data Networks. Introduction 1-1 Δίκτυα Μετάδοσης Δεδομένων Data Networks Introduction 1-1 Computer Networking: A Top Down Approach 6 th edition Jim Kurose, Keith Ross Addison-Wesley All material copyright J.F Kurose and K.W. Ross, All

More information

Four sources of packet delay

Four sources of packet delay Outline q Major Internet components q Network architecture and protocols q Switching strategies q Internet protocol stack, history q to network performance Four sources of packet delay q 1. nodal processing:

More information

Computer Networks and the Internet. CMPS 4750/6750: Computer Networks

Computer Networks and the Internet. CMPS 4750/6750: Computer Networks Computer Networks and the Inter CMPS 4750/6750: Computer Networks Outline What Is the Inter? Access Networks Packet Switching and Circuit Switching A closer look at delay, loss, and throughput Interconnection

More information

CC451 Computer Networks

CC451 Computer Networks CC451 Computer Networks Lecture 2 Introduction (cont d) Introduction 1-1 Network Core: Packet Switching each end-end data stream divided into packets user A, B packets share network resources each packet

More information

Informática y Comunicaciones. Chapter 1 Introduction to Communications

Informática y Comunicaciones. Chapter 1 Introduction to Communications Informática y Comunicaciones Chapter 1 Introduction to Communications All material copyright 1996-2012 J.F Kurose and K.W. Ross, All Rights Reserved Introduction to Communications 1-1 Chapter 1: introduction

More information

CSC 401 Data and Computer Communications Networks

CSC 401 Data and Computer Communications Networks CSC 401 Data and Computer Communications Networks Computer Networks and The Inter Sec 1.3 Prof. Lina Battestilli Fall 2017 Outline Computer Networks and the Inter (Ch 1) 1.1 What is the Inter? 1.2 work

More information

Introduction to computer networking

Introduction to computer networking edge core Introduction to computer networking Comp Sci 3600 Security Outline edge core 1 2 edge 3 core 4 5 6 The edge core Outline edge core 1 2 edge 3 core 4 5 6 edge core Billions of connected computing

More information

Packet-switching: store-and-forward

Packet-switching: store-and-forward Packet-switching: store-and-forward L R R R Takes L/R seconds to transmit (push out) packet of L bits on to link or R bps Entire packet must arrive at router before it can be transmitted on next link:

More information

LECTURE 1 - INTRODUCTION. Jacob Aae Mikkelsen

LECTURE 1 - INTRODUCTION. Jacob Aae Mikkelsen LECTURE 1 - INTRODUCTION Jacob Aae Mikkelsen GOALS TODAY History of networks Get "feel" and terminology More depth and details later in the course Approach: Use Internet as example ORIGIN OF THE INTERNET

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these Powerpoint slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you see the animations;

More information

Introduction to Security. Computer Networks Term A15

Introduction to Security. Computer Networks Term A15 Introduction to Security Computer Networks Term A15 Intro to Security Outline Network Security Malware Spyware, viruses, worms and trojan horses, botnets Denial of Service and Distributed DOS Attacks Packet

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Computer Networking: A Top Down Approach 6 th edition Jim Kurose, Keith Ross Addison-Wesley March 2012 All material copyright 1996-2012 J.F Kurose and K.W. Ross, All Rights Reserved Chapter 1:

More information

CSCE 463/612 Networks and Distributed Processing Spring 2018

CSCE 463/612 Networks and Distributed Processing Spring 2018 CSCE 463/612 Networks and Distributed Processing Spring 2018 Introduction II Dmitri Loguinov Texas A& University January 25, 2018 Original slides copyright 1996-2004 J.F Kurose and K.W. Ross 1 Chapter

More information

ELE 543 Computer Network

ELE 543 Computer Network Ken Q. Yang, ECE, URI Ken Q. Yang What Do You Learn? 1. Network Concepts and rchitectures 2. Communication Protocols ELE 543 Computer Network (e.g. TCP/IP, Ethernet, wireless) 3. Doing Useful Work on a

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you can add, modify, and delete

More information

CSC 4900 Computer Networks: Introduction

CSC 4900 Computer Networks: Introduction CSC 4900 Computer Networks: Introduction Professor Henry Carter Fall 2017 Chapter 1: roadmap 1.1 What is the Internet? 1.2 Network edge 1.3 Network core 1.4 Delay & loss in packet-switched networks 1.5

More information

CS4491/02 Fog Computing. Network Basics

CS4491/02 Fog Computing. Network Basics CS4491/02 Fog Computing Network Basics What s the Inter: nuts and bolts view PC server wireless laptop smartphone wireless links wired links millions of connected computing devices: hosts = end systems

More information

EC441 Fall 2018 Introduction to Computer Networking Chapter 1: Introduction

EC441 Fall 2018 Introduction to Computer Networking Chapter 1: Introduction EC441 Fall 2018 Introduction to Computer Networking Chapter 1: Introduction This presentation is adapted from slides produced by Jim Kurose and Keith Ross for their book, Computer Networking: A Top Down

More information

Internet: A Brief Overview. Introduction 2-1

Internet: A Brief Overview. Introduction 2-1 Inter: A Brief Overview Introduction 2-1 Quick Questions v What is the Inter? v How was it invented and developed? https://www.youtube.com/v/9hiqjrmhtv4 Text: http://www.intersociety.org/inter/what-inter/

More information

Chapter 1: introduction

Chapter 1: introduction Chapter 1: introduction our goal: v get feel and terminology v more depth, detail later in course v approach: use Inter as example overview: v what s the Inter? v what s a protocol? v work edge; hosts,,

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you see the animations; and can

More information

Introduction. overview: our goal: get feel and terminology more depth, detail later in course approach: use Internet as example

Introduction. overview: our goal: get feel and terminology more depth, detail later in course approach: use Internet as example Introduction our goal: get feel and terminology more depth, detail later in course approach: use Inter as example overview: what s the Inter? what s a protocol? work edge; hosts,, physical media work core:

More information

Foundations of Telematics

Foundations of Telematics Foundations of Telematics Chapter 1 Introduction Acknowledgement: These slides have been prepared by J.F. Kurose and K.W. Ross Foundations of Telematics (AMW SS 2010): 01 Introduction 1 Chapter 1: Introduction

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction All material copyright 1996-2016 J.F Kurose and K.W. Ross, All Rights Reserved Computer Networking: A Top Down Approach 7 th edition Jim Kurose, Keith Ross Pearson/Addison Wesley

More information

ECE 4400:427/527 - Computer Networks Spring 2017

ECE 4400:427/527 - Computer Networks Spring 2017 ECE 4400:427/527 - Computer Networks Spring 2017 Dr. Nghi Tran Department of Electrical & Computer Engineering Lecture 3: Network Architectures Dr. Nghi Tran (ECE-University of Akron) ECE 4400:427/527

More information

Course on Computer Communication and Networks. Lecture 1 Chapter 1: Introduction Part A: Internet, Protocol Layering and Data

Course on Computer Communication and Networks. Lecture 1 Chapter 1: Introduction Part A: Internet, Protocol Layering and Data Course on Computer Communication and Networks Lecture 1 Chapter 1: Introduction Part A: Internet, Protocol Layering and Data CTH EDA344/ GU DIT 420 Based on the book Computer Networking: A Top Down Approach,

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you can add, modify, and delete

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction Computer Networking: A Top Down Approach 6 th edition Jim Kurose, Keith Ross Addison-Wesley March 2012 All material copyright 1996-2012 J.F Kurose and K.W. Ross, All Rights Reserved

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you see the animations; and can

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you see the animations; and can

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you see the animations; and can

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction Adapted from material copyright 1996-2012 J.F Kurose and K.W. Ross, All Rights Reserved Computer Networking: A Top Down Approach 6 th edition Jim Kurose, Keith Ross Addison-Wesley

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction Introduction Prof. Sungwook Kim ( 김승욱 ) AS building 903 Tel : 02) 705-8932 E-mail : swkim01@sogang.ac.kr TA : Joonsu Ryu ( 류준수 ) AS building 901 E-mail : sok54833@naver.com Chapter

More information

CMSC 332: Computer Networks Intro (cont.)

CMSC 332: Computer Networks Intro (cont.) CMSC 332: Computer Networks Intro (cont.) Professor Doug Szajda Announcements Homework 1 posted Due Thursday, January 30th Get started early - there is a good deal to be done. 2 Chapter 1: roadmap 1.1

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you see the animations; and can

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you see the animations; and can

More information

Chapter 1 Introduction. Introduction 1-1

Chapter 1 Introduction. Introduction 1-1 Chapter 1 Introduction Introduction 1-1 What s the Internet: nuts and bolts view PC server wireless laptop cellular handheld router access points wired links millions of connected computing devices: hosts

More information

Computer Networking: A Top Down Approach

Computer Networking: A Top Down Approach Computer Networking: A Top Down Approach Seventh Edition Chapter 1 Introduction Slides in this presentation contain hyperlinks. JAWS users should be able to get a list of links by using INSERT+F7 Introduction

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction All material copyright 1996-2012 J.F Kurose and K.W. Ross, All Rights Reserved Computer Networking: A Top Down Approach 6 th edition Jim Kurose, Keith Ross Addison-Wesley March 2012

More information

Communication In Smart Grid Part1 (Basics of Networking)

Communication In Smart Grid Part1 (Basics of Networking) Communication In Smart Grid Part1 (Basics of Networking) 25.11.2015 Informatik 7 Rechnernetze und Kommunikationssysteme Distinguishing characteristics of Smart Grid Increase use of digital information

More information

TCN-5030 Computer Communications and Networking Technologies

TCN-5030 Computer Communications and Networking Technologies TCN-5030 Computer Communications and Networking Technologies Florida International University 1-1 Course Info Textbook: James Kurose and Keith Ross, Computer Networking: A Top Down Approach (6th Edition),

More information

CSCI Computer Networks Fall 2016

CSCI Computer Networks Fall 2016 source: computer-networks-webdesign.com CSCI 4760 - Computer Networks Fall 2016 Instructor: Prof. Roberto Perdisci perdisci@cs.uga.edu These slides are adapted from the textbook slides by J.F. Kurose and

More information

Lecture 1 - Introduction

Lecture 1 - Introduction Lecture 1 - Introduction Networks and Security Jacob Aae Mikkelsen IMADA September 2, 2013 September 2, 2013 1 / 82 Outline Goals today Get feel and terminology More depth and details later in the course

More information

Chapter 1 Introduction. Introduction 1-1

Chapter 1 Introduction. Introduction 1-1 Chapter 1 Introduction Introduction 1-1 Chapter 1: Introduction Our goal: q get feel and terminology q more depth, detail later in course q approach: v use Internet as example Overview: q what s the Internet?

More information

Computer Networks Chapter 1: Introduction. Introduction

Computer Networks Chapter 1: Introduction. Introduction Computer Networks Chapter 1: Introduction CSC 249 January 25, 2018 Introduction What is the Inter? Define work edge: hosts,, physical media Define the work core & Inter structure First glimpse at the layers

More information

Internetworking Technology -

Internetworking Technology - Internetworking Technology - Chapter 1 Computer Networks and the Internet (Cont.) Chapter 1: roadmap 1.1 What is the Internet? 1.2 Network edge 1.3 Network core 1.4 Network access and physical media 1.5

More information

CS 3516: Advanced Computer Networks

CS 3516: Advanced Computer Networks Welcome to CS 3516: Advanced Computer Networks Prof. Yanhua Li Time: 9:00am 9:50am M, T, R, and F Location: Fuller 320 Fall 2017 A-term 1 Some slides are originally from the course materials of the textbook

More information

CMPT-371: Data Communication and Networking. Bob Gill, P.Eng., FEC, smieee Introduction 0-1

CMPT-371: Data Communication and Networking. Bob Gill, P.Eng., FEC, smieee   Introduction 0-1 CMPT-371: Data Communication and Networking Bob Gill, P.Eng., FEC, smieee Email: balbirg@sfu.ca Introduction 0-1 Course Details and Evaluation Breakdown Calendar Objective/Description Data communication

More information

Part 1: Introduction. Goal: Review of how the Internet works Overview

Part 1: Introduction. Goal: Review of how the Internet works Overview Part 1: Introduction Goal: Review of how the Internet works Overview Get context Get overview, feel of the Internet Application layer protocols and addressing Network layer / Routing Link layer / Example

More information

Course on Computer Communication and Networks. Lecture 2 Chapter 1: Introduction: Part B: Network structure, performance, security prelude

Course on Computer Communication and Networks. Lecture 2 Chapter 1: Introduction: Part B: Network structure, performance, security prelude Course on Computer Communication and Networks Lecture 2 Chapter 1: Introduction: Part B: Network structure, performance, security prelude CTH EDA344/GU DIT 420 Based on the book Computer Networking: A

More information

Chapter 1. Introduction

Chapter 1. Introduction Chapter 1 A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you can add, modify, and delete slides (including

More information

CMPT-371: Data Communication and Networking. Bob Gill, P.Eng., FEC, smieee Introduction 2-1

CMPT-371: Data Communication and Networking. Bob Gill, P.Eng., FEC, smieee   Introduction 2-1 CMPT-371: Data Communication and Networking Bob Gill, P.Eng., FEC, smieee Email: balbirg@sfu.ca Introduction 2-1 Course Details and Evaluation Breakdown Calendar Objective/Description Data communication

More information

Introduction to Computer Networks. Chapter 1: introduction

Introduction to Computer Networks. Chapter 1: introduction Introduction to Computer Networks EECS 3214 Slides courtesy of J.F Kurose and K.W. Ross, All Rights Reserved Introduction 1-1 Chapter 1: introduction our goal: get feel and terminology more depth, detail

More information

Review for Internet Introduction

Review for Internet Introduction Review for Internet Introduction What s the Internet: Two Views View 1: Nuts and Bolts View billions of connected hosts routers and switches protocols control sending, receiving of messages network of

More information

Last Lecture. Nuts-and-bolts description of the Internet. ! The topology. ! The communication links. ! The core. ! The edge

Last Lecture. Nuts-and-bolts description of the Internet. ! The topology. ! The communication links. ! The core. ! The edge Last Lecture Nuts-and-bolts description of the Internet! The topology! The core! The edge! The communication links SUNY AT BUFFALO; CSE489/589 MODERN NETWORKING CONCEPTS; Fall 2010; INSTRUCTOR: HUNG Q.

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction All material copyright 1996-2012 J.F Kurose and K.W. Ross, All Rights Reserved Computer Networking: A Top Down Approach 6 th edition Jim Kurose, Keith Ross Addison-Wesley March 2012

More information

CS 3516: Computer Networks

CS 3516: Computer Networks Welcome to CS 3516: Computer Networks Prof. Yanhua Li Time: 9:00am 9:50am M, T, R, and F Location: AK219 Fall 2018 A-term 1 Some slides are originally from the course materials of the textbook Computer

More information

Telecommunication Networks Introduction

Telecommunication Networks Introduction Telecommunication Networks Introduction Telemedicina e e-saúde 2011/12 Pedro Brandão References These slides are the companions of Computer Networking: A Top Down Approach 5th edition. Jim Kurose, Keith

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction All material copyright 1996-2012 J.F Kurose and K.W. Ross, All Rights Reserved Computer Networking: A Top Down Approach 6 th edition Jim Kurose, Keith Ross Addison-Wesley March 2012

More information

Telecommunication Networks Introduction

Telecommunication Networks Introduction Telecommunication Networks Introduction Telemedicina e e-saúde 2016/17 Pedro Brandão References These slides are the companions of Computer Networking: A Top Down Approach 5th edition. Jim Kurose, Keith

More information

Internet Architecture & Performance. What s the Internet: nuts and bolts view

Internet Architecture & Performance. What s the Internet: nuts and bolts view Internet Architecture & Performance Internet, Connection, Protocols, Performance measurements What s the Internet: nuts and bolts view millions of connected computing devices: hosts, end systems pc s workstations,

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you can add, modify, and delete

More information

TNK108 Datornät /Computer Networking. Fall Introduction 1-1

TNK108 Datornät /Computer Networking. Fall Introduction 1-1 TNK108 Datornät /Computer Networking Fall 2018 Introduction 1-1 Course Information basics Literature Textbook: J. Kurose and K. Ross, Computer Networking A Top Down Approach, 7th edition Lecture notes/slides

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these Powerpoint slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you see the animations;

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you can add, modify, and delete

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you can add, modify, and delete

More information

Course on Computer Communication and Networks. Lecture 2 Chapter 1: Introduction: Part B: Network structure, performance, security prelude

Course on Computer Communication and Networks. Lecture 2 Chapter 1: Introduction: Part B: Network structure, performance, security prelude Course on Computer Communication and Networks Lecture 2 Chapter 1: Introduction: Part B: Network structure, performance, security prelude CTH EDA344/GU DIT 420 Based on the book Computer Networking: A

More information

70 CHAPTER 1 COMPUTER NETWORKS AND THE INTERNET

70 CHAPTER 1 COMPUTER NETWORKS AND THE INTERNET 70 CHAPTER 1 COMPUTER NETWORKS AND THE INTERNET one of these packets arrives to a packet switch, what information in the packet does the switch use to determine the link onto which the packet is forwarded?

More information

CS 204: Advanced Computer Networks

CS 204: Advanced Computer Networks CS 204: Advanced Computer Networks Jiasi Chen Lectures: MWF 12:10-1pm Humanities and Social Sciences 1403 http://www.cs.ucr.edu/~jiasi/teaching/cs204_spring17/ 1 Why Networks? Supports the applications

More information

CSIT 561: Computer Networks

CSIT 561: Computer Networks CSIT 561: Computer Networks Fall 2008 HKUST Introduction 1-1 Course Info Instructors: Dr. Jogesh K. Muppala: http://www.cs.ust.hk/~muppala/ Dr. Qian Zhang: http://www.cs.ust.hk/~qianzh Course web site

More information

Ice-Breaking. COMP 561: Computer Networks. Course Info. Course Info. Qian Zhang Spring 2008 HKUST

Ice-Breaking. COMP 561: Computer Networks. Course Info. Course Info. Qian Zhang Spring 2008 HKUST Ice-Breaking COMP 561: Computer Networks Qian Zhang Spring 2008 HKUST Introduction 1-1 Introduction 1-2 Course Info Course Info Instructor: Qian Zhang www.cs.ust.hk/~qianzh Course web site http://www.cs.ust.hk/~qianzh/comp561/spr2008/i

More information

Internet: A Brief Overview. Chapter 1

Internet: A Brief Overview. Chapter 1 Inter: A Brief Overview Chapter 1 Chapter 1: introduction our goal: v get feel and terminology v more depth, detail later in course v approach: use Inter as example overview: v what s the Inter? v what

More information

Lecture 2: Internet Structure

Lecture 2: Internet Structure Lecture 2: Internet Structure COMP 332, Spring 2018 Victoria Manfredi Acknowledgements: materials adapted from Computer Networking: A Top Down Approach 7 th edition: 1996-2016, J.F Kurose and K.W. Ross,

More information

Internetworking With TCP/IP

Internetworking With TCP/IP Internetworking With TCP/IP Application Layer Telnet Gopher NFS FTP X Win TFTP SMTP SNMP REXEC DNS RPC Transport Layer TCP UDP Network Layer ICMP IP IGMP ARP RARP Parviz Kermani NYU:Poly Link Interface

More information

Network core and metrics

Network core and metrics Network core and metrics latency propaga-on transmit queue Computer Networking: A Top Down Approach 6 th edition Jim Kurose, Keith Ross Addison-Wesley Some materials copyright 1996-2012 J.F Kurose and

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you can add, modify, and delete

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you can add, modify, and delete

More information

EECS 3214: Computer Network Protocols and Applications

EECS 3214: Computer Network Protocols and Applications EECS 3214: Computer Network Protocols and Applications Suprakash Datta Course page: http://www.eecs.yorku.ca/course/3214 Office: LAS 3043 Email: datta [at] cse.yorku.ca These slides are adapted from Jim

More information

Fall 2009 HKUST. Introduction 1-1

Fall 2009 HKUST. Introduction 1-1 CSIT 561: Computer Networks Fall 2009 HKUST Introduction 1-1 Course Info Instructors: Dr. Jogesh K. Muppala: http://www.cs.ust.hk/~muppala/ Dr. Qian Zhang: http://www.cs.ust.hk/~qianzh Course web site

More information

Data Communications & Computer Networks

Data Communications & Computer Networks CSE471 Data Communications & Computer Networks Yrd. Doc. Dr. Tacha Serif tserif@cse.yeditepe.edu.tr Department of Computer Engineering Yeditepe University Spring 2009 Introduction 1-1 Introduction Computer

More information

end systems, access networks, links circuit switching, packet switching, network structure

end systems, access networks, links circuit switching, packet switching, network structure Chapter 1: roadmap 1.1 What is the Internet? 1.2 Network edge end systems, access networks, links 1.3 Network core circuit switching, packet switching, network structure 1.4 Delay, loss and throughput

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you can add, modify, and delete

More information

Chapter 1 Introduction

Chapter 1 Introduction Advanced Computer Networking Graduate Course from Electrical Engineering School A. Beheshti Communication Group Iran University of Science and Technology Chapter 1 Introduction Text Book: Computer Networking:

More information