Скачать презентацию CEN 4500 C Computer Networks Fundamentals Ahmed Helmy Скачать презентацию CEN 4500 C Computer Networks Fundamentals Ahmed Helmy

1e560e2bf68c1c5f5ddc44140ea47b08.ppt

  • Количество слайдов: 104

CEN 4500 C Computer Networks Fundamentals Ahmed Helmy (www. cise. ufl. edu/~helmy) Computer & CEN 4500 C Computer Networks Fundamentals Ahmed Helmy (www. cise. ufl. edu/~helmy) Computer & Information Science & Engineering (CISE) Dept University of Florida Fall 2007 Introduction 1

Course Outline q ~6 homeworks (+ extra mini-projects) + 2 exams q 1 mid-term Course Outline q ~6 homeworks (+ extra mini-projects) + 2 exams q 1 mid-term covering the first half of semester v The Internet (Overview), Layering, Multiplexing, Applications, Transport, Congestion Control, MAC protocols (partial !) [depending on lecture progress] q 2 nd exam (final or 2 nd mid-term) covering 2 nd half v MAC protocols (partial), Wireless Networking and Mobility, Routing (unicast, multicast), Security (partial!) [depending on progress] q 1 required text book (Kurose, Ross…) q Lecture slides: altered version of book slides Introduction 2

(Open) Questions to think about: q Throughout the semester we can ask the following (Open) Questions to think about: q Throughout the semester we can ask the following questions about the services and the design of the Internet: q What do you like about the Internet? q What do you not like about the Internet and would want to change? q How would you change it and how would you achieve such change? Introduction 3

Intro & Motivation q What’s the Internet to you? v Web browsers, wireless Internet Intro & Motivation q What’s the Internet to you? v Web browsers, wireless Internet Cafés, cellular phones!, home networks, networked cars, networked embedded devices, inter-planetary networks? … v Very complex, time varying, hard to draw ! q Why study the Internet? v To learn engineering lessons from history v Analyze today’s problems and improve performance v Provide future designs for better Internet and new applications v Is the Internet the only form of computer networking? (open question) Introduction 4

Topics (Chapters) to Cover q From main text book (Kurose, Ross) v Ch 1: Topics (Chapters) to Cover q From main text book (Kurose, Ross) v Ch 1: Overview, Intro v Ch 2: Applications v Ch 3: Transport Layer v Ch 4: Network Layer v Ch 5: Link Layer, MAC, LANs v Ch 6: Wireless, Mobile Networks v Ch 7: Multimedia [partial: Diffserv, Intserv] v Ch 8: Security [partial] q Notes: v Ordering maybe slightly modified as semester progresses. v Personal notes, additions will be provided by Prof. as needed. Introduction 5

Chapter 1 Introduction Computer Networking: A Top Down Approach , 4 th edition. Jim Chapter 1 Introduction Computer Networking: A Top Down Approach , 4 th edition. Jim Kurose, Keith Ross Addison-Wesley, July 2007. Introduction 6

Chapter 1: Introduction Overview: q what’s the Internet? q what’s a protocol? q network Chapter 1: Introduction Overview: q what’s the Internet? q what’s a protocol? q network edge; hosts, access net, physical media q network core: Internet structure q protocol layers, service models q network core: packet/circuit switching, q performance: loss, delay, throughput q security q history Introduction 7

Chapter 1: roadmap 1. 1 What is the Internet? 1. 2 Network edge q Chapter 1: roadmap 1. 1 What is the Internet? 1. 2 Network edge q end systems, access networks, links 1. 3 Network core q circuit switching, packet switching, network structure 1. 4 Delay, loss and throughput in packet-switched networks 1. 5 Protocol layers, service models 1. 6 Networks under attack: security 1. 7 History Introduction 8

What’s the Internet: “nuts and bolts” view q millions of connected PC computing devices: What’s the Internet: “nuts and bolts” view q millions of connected PC computing devices: hosts = end systems v run network apps server wireless laptop cellular handheld Mobile network Global ISP Home network Regional ISP q communication links fiber, copper, radio, satellite v transmission rate (bandwidth) q routers: access points wired links router v v Institutional network forward packets (chunks of data) Introduction 9

What’s the Internet: “nuts and bolts” view q protocols control sending, Mobile network receiving What’s the Internet: “nuts and bolts” view q protocols control sending, Mobile network receiving of msgs v TCP, IP, HTTP, Ethernet q Internet: “network of networks” v v Global ISP loosely hierarchical public Internet versus private intranet q Internet standards v RFC: Request for comments v IETF: Internet Engineering Task Force Home network Regional ISP Institutional network Introduction 10

What’s the Internet: a service view q communication infrastructure enables distributed applications: v Web, What’s the Internet: a service view q communication infrastructure enables distributed applications: v Web, Vo. IP, email, games, e-commerce, file sharing q communication services provided to apps: v reliable data delivery from source to destination v “best effort” (unreliable) data delivery Introduction 11

What’s a protocol? Network protocols: q All communication in Internet governed by protocols q What’s a protocol? Network protocols: q All communication in Internet governed by protocols q Generic protocol: v v specific messages sent specific actions taken when messages are received, or other events (e. g. , timer expiration, exception detection) protocols define format, order of messages sent and received among network entities, and actions taken on message transmission, receipt q Protocol Representation: v Finite State Machines v Protocol Specification, via Standards Introduction 12

What’s a protocol? Example sequence of a computer network protocol: host TCP connection request What’s a protocol? Example sequence of a computer network protocol: host TCP connection request server TCP connection response Get http: //www. ufl. edu time Protocol Design and Analysis are extremely important in Internet study, development and research Introduction 13

Chapter 1: roadmap 1. 1 What is the Internet? 1. 2 Network edge q Chapter 1: roadmap 1. 1 What is the Internet? 1. 2 Network edge q end systems, access networks, links 1. 3 Network core q circuit switching, packet switching, network structure 1. 4 Delay, loss and throughput in packet-switched networks 1. 5 Protocol layers, service models 1. 6 Networks under attack: security 1. 7 History Introduction 14

A closer look at network structure: q Network edge: applications and hosts q Access A closer look at network structure: q Network edge: applications and hosts q Access networks, physical media: wired, wireless communication links q Network core: v interconnected routers v network of networks Introduction 15

The network edge: q End systems (hosts): v v v run application programs e. The network edge: q End systems (hosts): v v v run application programs e. g. Web, email at “edge of network” peer-peer q Client-server model v v client host requests, receives service from always-on server client/server e. g. Web browser/server; email client/server q Peer-to-peer model: v v minimal (or no) use of dedicated servers e. g. Kazaa, Bit. Torrenth Introduction 16

Network edge: reliable data transfer service Goal: data transfer between end systems q handshaking: Network edge: reliable data transfer service Goal: data transfer between end systems q handshaking: setup (prepare for) data transfer ahead of time v v Hello, initial establishment set up “state” in two communicating hosts q TCP - Transmission Control Protocol v Internet’s reliable data transfer service TCP service [RFC 793] q reliable, in-order byte- stream data transfer v loss: acknowledgements and retransmissions q flow control: v sender won’t overwhelm receiver q congestion control: v senders “slow down sending rate” when network congested Introduction 17

Network edge: best effort (unreliable) data transfer service Goal: data transfer between end systems Network edge: best effort (unreliable) data transfer service Goal: data transfer between end systems v same as before! q UDP - User Datagram Protocol [RFC 768]: v connectionless v unreliable data transfer v no flow control v no congestion control App’s using TCP: q HTTP (Web), FTP (file transfer), Telnet (remote login), SMTP (email) App’s using UDP: q streaming media, teleconferencing, DNS, Internet telephony Introduction 18

Access networks and physical media Q: How to connect end systems to edge router? Access networks and physical media Q: How to connect end systems to edge router? q residential access nets q institutional access networks (school, company) q mobile access networks Keep in mind: q bandwidth (bits per second) of access network? q shared or dedicated? Introduction 19

Residential access: point to point access q Dialup via modem up to 56 Kbps Residential access: point to point access q Dialup via modem up to 56 Kbps direct access to router (often less) v Can’t surf and phone at same time: can’t be “always on” v q DSL: digital subscriber line deployment: telephone company (typically) v up to 1 Mbps upstream (today typically < 256 kbps) v up to 8 Mbps downstream (today typically < 1 Mbps) v dedicated physical line to telephone central office v Introduction 20

Residential access: cable modems q HFC: hybrid fiber coax asymmetric: up to 30 Mbps Residential access: cable modems q HFC: hybrid fiber coax asymmetric: up to 30 Mbps downstream, 2 Mbps upstream q network of cable and fiber attaches homes to ISP router v homes share access to router q deployment: available via cable TV companies v Introduction 21

Residential access: cable modems Introduction 22 Residential access: cable modems Introduction 22

Cable Network Architecture: Overview Typically 500 to 5, 000 homes cable headend cable distribution Cable Network Architecture: Overview Typically 500 to 5, 000 homes cable headend cable distribution network (simplified) home Introduction 23

Cable Network Architecture: Overview server(s) cable headend cable distribution network home Introduction 24 Cable Network Architecture: Overview server(s) cable headend cable distribution network home Introduction 24

Cable Network Architecture: Overview cable headend cable distribution network (simplified) home Introduction 25 Cable Network Architecture: Overview cable headend cable distribution network (simplified) home Introduction 25

Cable Network Architecture: Overview FDM (frequency division multiplexing) V I D E O V Cable Network Architecture: Overview FDM (frequency division multiplexing) V I D E O V I D E O D A T A C O N T R O L 1 2 3 4 5 6 7 8 9 Channels cable headend cable distribution network home Introduction 26

Company access: local area networks q company/univ local area network (LAN) connects end system Company access: local area networks q company/univ local area network (LAN) connects end system to edge router q Ethernet: v 10 Mbs, 100 Mbps, 1 Gbps, 10 Gbps Ethernet v modern configuration: end systems connect into Ethernet switch q LANs: chapter 5 Introduction 27

Wireless access networks q shared wireless access network connects end system to router v Wireless access networks q shared wireless access network connects end system to router v via base station aka “access point” router base q wireless LANs: v 802. 11 b/g/n (Wi. Fi): 11, 54, 111 Mbps station q wider-area wireless access v provided by telco operator v ~1 Mbps over cellular (EVDO, HSDPA) v Wi. MAX (10’s Mbps) over wide area? q Wireless Networks: Chapter 6 mobile hosts q Future: v Mobile Ad Hoc and Sensor Networks! Introduction 28

Home networks Typical home network components: q DSL or cable modem q router/firewall/NAT q Home networks Typical home network components: q DSL or cable modem q router/firewall/NAT q Ethernet q wireless access point to/from cable headend cable modem router/ firewall Ethernet wireless laptops wireless access point Introduction 29

Physical Media q Bit: propagates between transmitter/rcvr pairs q physical link: what lies between Physical Media q Bit: propagates between transmitter/rcvr pairs q physical link: what lies between transmitter & receiver q guided media: v signals propagate in solid media: copper, fiber, coax Twisted Pair (TP) q two insulated copper wires v v Category 3: traditional phone wires, 10 Mbps Ethernet Category 5: 100 Mbps Ethernet q unguided media: v signals propagate freely, e. g. , radio Introduction 30

Physical Media: coax, fiber Coaxial cable: Fiber optic cable: conductors q bidirectional q baseband: Physical Media: coax, fiber Coaxial cable: Fiber optic cable: conductors q bidirectional q baseband: pulses, each pulse a bit q high-speed operation: q two concentric copper v v single channel on cable legacy Ethernet q broadband: v multiple channels on cable v HFC (hybrid fiber-coax) q glass fiber carrying light v v high-speed point-to-point transmission (100’s Gps) WDM Networks: Wavelength division multiplexing q low error rate: repeaters spaced far apart ; immune to electromagnetic noise Introduction 31

Physical media: radio q signal carried in electromagnetic spectrum q no physical “wire” q Physical media: radio q signal carried in electromagnetic spectrum q no physical “wire” q bidirectional q propagation environment effects: v v v reflection obstruction by objects Interference q dynamic link characteristics … Radio link types: q terrestrial microwave v e. g. up to 45 Mbps channels q LAN (e. g. , Wifi) v 11 Mbps, 54 Mbps q wide-area (e. g. , cellular) v 3 G cellular: ~ 1 Mbps q satellite v Kbps to 45 Mbps channel (or multiple smaller channels) v 270 msec end-end delay v geosynchronous versus low altitude Introduction 32

Chapter 1: roadmap 1. 1 What is the Internet? 1. 2 Network edge q Chapter 1: roadmap 1. 1 What is the Internet? 1. 2 Network edge q end systems, access networks, links 1. 3 Network core q network structure, circuit switching, packet switching 1. 4 Delay, loss and throughput in packet-switched networks 1. 5 Protocol layers, service models 1. 6 Networks under attack: security 1. 7 History Introduction 33

Internet Structure: loose hierarchy - hierarchy based on administrative regions/providers Introduction 34 Internet Structure: loose hierarchy - hierarchy based on administrative regions/providers Introduction 34

Internet Hierarchy - hierarchy based on routing (more later) Introduction 35 Internet Hierarchy - hierarchy based on routing (more later) Introduction 35

Internet structure: network of networks q roughly hierarchical q at center: “tier-1” ISPs (e. Internet structure: network of networks q roughly hierarchical q at center: “tier-1” ISPs (e. g. , Verizon, Sprint, AT&T, Cable and Wireless), national/international coverage v treat each other as equals Tier-1 providers interconnect (peer) privately Tier 1 ISP Introduction 36

Tier-1 ISP: e. g. , Sprint POP: point-of-presence to/from backbone peering … … … Tier-1 ISP: e. g. , Sprint POP: point-of-presence to/from backbone peering … … … to/from customers Introduction 37

Internet structure: network of networks q “Tier-2” ISPs: smaller (often regional) ISPs v Connect Internet structure: network of networks q “Tier-2” ISPs: smaller (often regional) ISPs v Connect to one or more tier-1 ISPs, possibly other tier-2 ISPs Tier-2 ISP pays tier-1 ISP for connectivity to rest of Internet q tier-2 ISP is customer of tier-1 provider Tier-2 ISP Tier 1 ISP Tier-2 ISPs also peer privately with each other. Tier-2 ISP Introduction 38

Internet structure: network of networks q “Tier-3” ISPs and local ISPs v last hop Internet structure: network of networks q “Tier-3” ISPs and local ISPs v last hop (“access”) network (closest to end systems) local ISP Local and tier 3 ISPs are customers of higher tier ISPs connecting them to rest of Internet Tier 3 ISP Tier-2 ISP local ISP Tier-2 ISP Tier 1 ISP Tier-2 ISP local ISP Introduction 39

Internet structure: network of networks q a packet passes through many networks! local ISP Internet structure: network of networks q a packet passes through many networks! local ISP Tier 3 ISP Tier-2 ISP local ISP Tier-2 ISP Tier 1 ISP Tier-2 ISP local ISP Introduction 40

So, what does the Internet look like? Have you seen it lately? ! 100 So, what does the Internet look like? Have you seen it lately? ! 100 node transit-stub topology Introduction 41

Map of the multicast backbone [Mbone] (~3000 nodes) [2002] Introduction 42 Map of the multicast backbone [Mbone] (~3000 nodes) [2002] Introduction 42

Map of the Internet (~50, 000 nodes) Introduction 43 Map of the Internet (~50, 000 nodes) Introduction 43

q It is not simple… q It is really complex v in scale v q It is not simple… q It is really complex v in scale v in interactions and dynamics v in failure modes (loss, crashes, loops, etc) q We need a very systematic approach to design protocols for such a complex network Introduction 44

Chapter 1: roadmap 1. 1 What is the Internet? 1. 2 Network edge q Chapter 1: roadmap 1. 1 What is the Internet? 1. 2 Network edge q end systems, access networks, links 1. 3 Network core q circuit switching, packet switching, network structure 1. 4 Delay, loss and throughput in packet-switched networks 1. 5 Protocol layers, service models 1. 6 Networks under attack: security 1. 7 History Introduction 45

Protocol “Layers” Networks are complex! q many “pieces”: v hosts v routers v links Protocol “Layers” Networks are complex! q many “pieces”: v hosts v routers v links of various media v applications v protocols v hardware, software Question: Is there any hope of organizing structure of network? Or at least our discussion of networks? Introduction 46

Why layering? Dealing with complex systems: q explicit structure allows identification, relationship of complex Why layering? Dealing with complex systems: q explicit structure allows identification, relationship of complex system’s pieces v layered reference model for discussion q modularization eases maintenance, updating of system v change of implementation of layer’s service transparent to rest of system v change in one layer doesn’t affect rest of system (is this true? !) q Can layering be considered harmful? Introduction 47

Internet protocol stack q application: supporting network applications v FTP, SMTP, HTTP q transport: Internet protocol stack q application: supporting network applications v FTP, SMTP, HTTP q transport: process-process data transfer v TCP, UDP q network: routing of datagrams from source to destination v IP, routing protocols q link: data transfer between application transport network link physical neighboring network elements v PPP, Ethernet q physical: bits “on the wire” Introduction 48

ISO/OSI reference model q presentation: allow applications to interpret meaning of data, e. g. ISO/OSI reference model q presentation: allow applications to interpret meaning of data, e. g. , encryption, compression, machinespecific conventions q session: synchronization, checkpointing, recovery of data exchange q Internet stack “missing” these layers! v these services, if needed, must be implemented in application v needed? application presentation session transport network link physical Introduction 49

Encapsulation source message segment Ht M datagram Hn Ht M frame Hl Hn Ht Encapsulation source message segment Ht M datagram Hn Ht M frame Hl Hn Ht M M application transport network link physical switch destination M Ht M Hn Ht Hl Hn Ht M M application transport network link physical Hn Ht Hl Hn Ht M M network link physical Hn Ht M router Introduction 50

Introduction 51 Introduction 51

Introduction 52 Introduction 52

Introduction 53 Introduction 53

Introduction 54 Introduction 54

Layering & protocol stacks: (the protocol hour glass) Introduction 55 Layering & protocol stacks: (the protocol hour glass) Introduction 55

Chapter 1: roadmap 1. 1 What is the Internet? 1. 2 Network edge q Chapter 1: roadmap 1. 1 What is the Internet? 1. 2 Network edge q end systems, access networks, links 1. 3 Network core q circuit switching, packet switching, network structure 1. 4 Delay, loss and throughput in packet-switched networks 1. 5 Protocol layers, service models 1. 6 Networks under attack: security 1. 7 History Introduction 56

The Network Core q mesh of interconnected routers q the fundamental question: how is The Network Core q mesh of interconnected routers q the fundamental question: how is data transferred through net? v circuit switching: dedicated circuit per call: telephone net v packet-switching: data sent thru net in discrete “chunks” Introduction 57

Network Core: Circuit Switching End-end resources reserved for “call” q link bandwidth, switch capacity Network Core: Circuit Switching End-end resources reserved for “call” q link bandwidth, switch capacity q dedicated resources: no sharing q circuit-like (guaranteed) performance q call setup required q re-establish call upon failure Introduction 58

Network Core: Circuit Switching network resources (e. g. , bandwidth) divided into “pieces” q Network Core: Circuit Switching network resources (e. g. , bandwidth) divided into “pieces” q pieces allocated to calls q dividing link bandwidth into “pieces” v frequency division v time division q resource piece idle if not used by owning call (no sharing) Introduction 59

Circuit Switching: FDM and TDM Example: FDM 4 users frequency time TDM frequency time Circuit Switching: FDM and TDM Example: FDM 4 users frequency time TDM frequency time Introduction 60

Numerical example q How long does it take to send a file of 640, Numerical example q How long does it take to send a file of 640, 000 bits from host A to host B over a circuit-switched network? All links are 1. 536 Mbps v Each link uses TDM with 24 slots/sec v 500 msec to establish end-to-end circuit v Let’s work it out! Each link gets 1. 526 Mbps/24=64 kbps Time needed for 640 kbps=640/64+0. 5=10. 5 seconds Plus propagation! Introduction 61

Network Core: Packet Switching each end-end data stream divided into packets q user A, Network Core: Packet Switching each end-end data stream divided into packets q user A, B packets share network resources q each packet uses full link bandwidth q resources used as needed Bandwidth division into “pieces” Dedicated allocation Resource reservation resource contention: q aggregate resource demand can exceed amount available q congestion: packets queue, wait for link use q store and forward: packets move one hop at a time v Node receives complete packet before forwarding Introduction 62

Packet Switching: Statistical Multiplexing 100 Mb/s Ethernet A B statistical multiplexing C 1. 5 Packet Switching: Statistical Multiplexing 100 Mb/s Ethernet A B statistical multiplexing C 1. 5 Mb/s queue of packets waiting for output link D E Sequence of A & B packets does not have fixed pattern, bandwidth shared on demand statistical multiplexing. TDM: each host gets same slot in revolving TDM frame. Introduction 63

Packet-switching: store-and-forward L R q takes L/R seconds to R transmit (push out) packet Packet-switching: store-and-forward L R q takes L/R seconds to R transmit (push out) packet of L bits on to link at R bps q store and forward: entire packet must arrive at router before it can be transmitted on next link q delay = 3 L/R (assuming zero propagation delay) R Example: q L = 7. 5 Mbits q R = 1. 5 Mbps q transmission delay = 15 sec more on delay shortly … Introduction 64

Packet switching versus circuit switching Packet switching allows more users to use network! q Packet switching versus circuit switching Packet switching allows more users to use network! q 1 Mb/s link q each user: v 100 kb/s when “active” v active 10% of time q circuit-switching: v 10 users q packet switching: v with 35 users, probability > 10 active at same time is less than. 0004 N users 1 Mbps link Q: how did we get value 0. 0004? Introduction 65

Packet switching versus circuit switching Is packet switching a “slam dunk winner? ” q Packet switching versus circuit switching Is packet switching a “slam dunk winner? ” q great for bursty data resource sharing (scalable!) v simpler, no call setup, more robust (re-routing) q excessive congestion: packet delay and loss v Without admission control: protocols needed for reliable data transfer, congestion control q Q: How to provide circuit-like behavior? v bandwidth guarantees needed for audio/video apps v still an unsolved problem (chapter 7), virtual circuit v Q: human analogies of reserved resources (circuit switching) versus on-demand allocation (packet-switching)? Introduction 66

Chapter 1: roadmap 1. 1 What is the Internet? 1. 2 Network edge q Chapter 1: roadmap 1. 1 What is the Internet? 1. 2 Network edge q end systems, access networks, links 1. 3 Network core q circuit switching, packet switching, network structure 1. 4 Delay, loss and throughput in packet-switched networks 1. 5 Protocol layers, service models 1. 6 Networks under attack: security 1. 7 History Introduction 67

How do loss and delay occur? packets queue in router buffers q packet arrival How do loss and delay occur? packets queue in router buffers q packet arrival rate to link exceeds output link capacity q 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 Introduction 68

Four sources of packet delay q 1. nodal processing: v check bit errors v Four sources of packet delay q 1. nodal processing: v check bit errors v determine output link q 2. queueing v time waiting at output link for transmission v depends on congestion level of router transmission A propagation B nodal processing queueing Introduction 69

Delay in packet-switched networks 3. Transmission delay: q R=link bandwidth (bps) q L=packet length Delay in packet-switched networks 3. Transmission delay: q R=link bandwidth (bps) q L=packet length (bits) q time to send bits into link = L/R transmission A 4. Propagation delay: q d = length of physical link q s = propagation speed in medium (~2 x 108 m/sec) q propagation delay = d/s Note: s and R are very different quantities! propagation B nodal processing queueing Introduction 70

Caravan analogy 100 km ten-car caravan toll booth q cars “propagate” at 100 km/hr Caravan analogy 100 km ten-car caravan toll booth q cars “propagate” at 100 km/hr q toll booth takes 12 sec to service car (transmission time) q car~bit; caravan ~ packet q Q: How long until caravan is lined up before 2 nd toll booth? 100 km toll booth q Time to “push” entire caravan through toll booth onto highway = 12*10 = 120 sec q Time for last car to propagate from 1 st to 2 nd toll both: 100 km/(100 km/hr)= 1 hr q A: 62 minutes Introduction 71

Caravan analogy (more) 100 km ten-car caravan 100 km toll booth q Cars now Caravan analogy (more) 100 km ten-car caravan 100 km toll booth q Cars now “propagate” at 1000 km/hr q Toll booth now takes 1 min to service a car q Q: Will cars arrive to 2 nd booth before all cars serviced at 1 st booth? toll booth q Yes! After 7 min, 1 st car at 2 nd booth and 3 cars still at 1 st booth. q 1 st bit of packet can arrive at 2 nd router before packet is fully transmitted at 1 st router! v See Ethernet applet at AWL Web site Introduction 72

Nodal delay q dproc = processing delay v typically a few microsecs or less Nodal delay q dproc = processing delay v typically a few microsecs or less q dqueue = queuing delay v depends on congestion q dtrans = transmission delay v = L/R, significant for low-speed links q dprop = propagation delay v a few microsecs to hundreds of msecs Introduction 73

Queueing delay (revisited) q R=link bandwidth (bps) q L=packet length (bits) q a=average packet Queueing delay (revisited) q R=link bandwidth (bps) q L=packet length (bits) q a=average packet arrival rate traffic intensity = La/R q La/R ~ 0: average queueing delay small q La/R -> 1: delays become large q La/R > 1: more “work” arriving than can be serviced, average delay infinite! Introduction 74

“Real” Internet delays and routes q What do “real” Internet delay & loss look “Real” Internet delays and routes q What do “real” Internet delay & loss look like? q Traceroute program: provides delay measurement from source to router along end-end Internet path towards destination. For all i: v v v sends three packets that will reach router i on path towards destination router i will return packets to sender times interval between transmission and reply. 3 probes Introduction 75

“Real” Internet delays and routes traceroute: gaia. cs. umass. edu to www. eurecom. fr “Real” Internet delays and routes traceroute: gaia. cs. umass. edu to www. eurecom. fr Three delay measurements from gaia. cs. umass. edu to cs-gw. cs. umass. edu 1 cs-gw (128. 119. 240. 254) 1 ms 2 border 1 -rt-fa 5 -1 -0. gw. umass. edu (128. 119. 3. 145) 1 ms 2 ms 3 cht-vbns. gw. umass. edu (128. 119. 3. 130) 6 ms 5 ms 4 jn 1 -at 1 -0 -0 -19. wor. vbns. net (204. 147. 132. 129) 16 ms 11 ms 13 ms 5 jn 1 -so 7 -0 -0 -0. wae. vbns. net (204. 147. 136) 21 ms 18 ms 6 abilene-vbns. abilene. ucaid. edu (198. 32. 11. 9) 22 ms 18 ms 22 ms 7 nycm-wash. abilene. ucaid. edu (198. 32. 8. 46) 22 ms trans-oceanic 8 62. 40. 103. 253 (62. 40. 103. 253) 104 ms 109 ms 106 ms link 9 de 2 -1. de. geant. net (62. 40. 96. 129) 109 ms 102 ms 104 ms 10 de. fr 1. fr. geant. net (62. 40. 96. 50) 113 ms 121 ms 114 ms 11 renater-gw. fr 1. fr. geant. net (62. 40. 103. 54) 112 ms 114 ms 112 ms 12 nio-n 2. cssi. renater. fr (193. 51. 206. 13) 111 ms 114 ms 116 ms 13 nice. cssi. renater. fr (195. 220. 98. 102) 123 ms 125 ms 124 ms 14 r 3 t 2 -nice. cssi. renater. fr (195. 220. 98. 110) 126 ms 124 ms 15 eurecom-valbonne. r 3 t 2. ft. net (193. 48. 50. 54) 135 ms 128 ms 133 ms 16 194. 211. 25 (194. 211. 25) 126 ms 128 ms 126 ms 17 * * means no response (probe lost, router not replying) 18 * * * 19 fantasia. eurecom. fr (193. 55. 113. 142) 132 ms 128 ms 136 ms Introduction 76

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

Throughput q throughput: rate (bits/time unit) at which bits transferred between sender/receiver instantaneous: rate Throughput q throughput: rate (bits/time unit) at which bits transferred between sender/receiver instantaneous: rate at given point in time v average: rate over long(er) period of time v link capacity server, with server sends bits pipe that can carry Rs bits/sec fluid at rate file into pipe (fluid) of F bits Rs bits/sec) to send to client link capacity pipe that can carry Rfluid at rate c bits/sec Rc bits/sec) Introduction 78

Throughput (more) q Rs < Rc What is average end-end throughput? Rs bits/sec Rc Throughput (more) q Rs < Rc What is average end-end throughput? Rs bits/sec Rc bits/sec q Rs > Rc What is average end-end throughput? Rs bits/sec Rc bits/sec bottleneck link on end-end path that constrains end-end throughput Introduction 79

Throughput: Internet scenario q per-connection end -end throughput: min(Rc, Rs, R/10) q in practice: Throughput: Internet scenario q per-connection end -end throughput: min(Rc, Rs, R/10) q in practice: Rc or Rs is often bottleneck Rs Rs Rs R Rc Rc Rc 10 connections (fairly) share backbone bottleneck link R bits/sec Introduction 80

Chapter 1: roadmap 1. 1 What is the Internet? 1. 2 Network edge q Chapter 1: roadmap 1. 1 What is the Internet? 1. 2 Network edge q end systems, access networks, links 1. 3 Network core q circuit switching, packet switching, network structure 1. 4 Delay, loss and throughput in packet-switched networks 1. 5 Protocol layers, service models 1. 6 Networks under attack: security 1. 7 History Introduction 81

Network Security q attacks on Internet infrastructure: v infecting/attacking hosts: malware, spyware, worms, unauthorized Network Security q attacks on Internet infrastructure: v infecting/attacking hosts: malware, spyware, worms, unauthorized access (data stealing, user accounts) v denial of service: deny access to resources (servers, link bandwidth) q Internet not originally designed with (much) security in mind original vision: “a group of mutually trusting users attached to a transparent network” v Internet protocol designers playing “catch-up” v Security considerations in all layers! v Introduction 82

What can bad guys do: malware? q Spyware: q Worm: v infection by downloading What can bad guys do: malware? q Spyware: q Worm: v infection by downloading v infection by passively web page with spyware receiving object that gets itself executed v records keystrokes, web sites visited, upload info v self- replicating: propagates to collection site to other hosts, users q Virus v infection by receiving object (e. g. , e-mail attachment), actively executing v self-replicating: propagate itself to other hosts, users Sapphire Worm: aggregate scans/sec in first 5 minutes of outbreak (CAIDA, UWisc data) Introduction 83

Denial of service attacks q attackers make resources (server, bandwidth) unavailable to legitimate traffic Denial of service attacks q 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 (malware) 3. send packets toward target from compromised hosts target Introduction 84

Sniff, modify, delete your packets Packet sniffing: broadcast media (shared Ethernet, wireless) v promiscuous Sniff, modify, delete your packets Packet sniffing: broadcast media (shared Ethernet, wireless) v promiscuous network interface reads/records all packets (e. g. , including passwords!) passing by v C A src: B dest: A v payload B Ethereal software is a (free) packet-sniffer (maybe used for lab experiments) Introduction 85

Masquerade as you q IP spoofing: send packet with false source address C A Masquerade as you q IP spoofing: send packet with false source address C A src: B dest: A payload B Introduction 86

Masquerade as you q IP spoofing: send packet with false source address q record-and-playback: Masquerade as you q IP spoofing: send packet with false source address q record-and-playback: sniff sensitive info (e. g. , password), and use later v password holder is that user from system point of view A C src: B dest: A user: B; password: foo B Introduction 87

Network Security q chapter 8: focus on security q crypographic techniques: obvious uses and Network Security q chapter 8: focus on security q crypographic techniques: obvious uses and not so obvious uses q provides challenging issues, esp. for emerging mobile networks Introduction 88

Chapter 1: roadmap 1. 1 What is the Internet? 1. 2 Network edge q Chapter 1: roadmap 1. 1 What is the Internet? 1. 2 Network edge q end systems, access networks, links 1. 3 Network core q circuit switching, packet switching, network structure 1. 4 Delay, loss and throughput in packet-switched networks 1. 5 Protocol layers, service models 1. 6 Networks under attack: security 1. 7 History Introduction 89

Internet History 1961 -1972: Early packet-switching principles q 1961: Kleinrock - queueing theory shows Internet History 1961 -1972: Early packet-switching principles q 1961: Kleinrock - queueing theory shows effectiveness of packetswitching q 1964: Baran - packetswitching in military nets q 1967: ARPAnet conceived by Advanced Research Projects Agency q 1969: first ARPAnet node operational q 1972: v v ARPAnet public demonstration NCP (Network Control Protocol) first host-host protocol first e-mail program ARPAnet has 15 nodes Introduction 90

Internet History 1972 -1980: Internetworking, new and proprietary nets q 1970: ALOHAnet satellite q Internet History 1972 -1980: Internetworking, new and proprietary nets q 1970: ALOHAnet satellite q q q network in Hawaii 1974: Cerf and Kahn architecture for interconnecting networks 1976: Ethernet at Xerox PARC ate 70’s: proprietary architectures: DECnet, SNA, XNA late 70’s: switching fixed length packets (ATM precursor) 1979: ARPAnet has 200 nodes Cerf and Kahn’s internetworking principles: v minimalism, autonomy - no internal changes required to interconnect networks v best effort service model v stateless routers v decentralized control define today’s Internet architecture Introduction 91

Internet History 1980 -1990: new protocols, a proliferation of networks q 1983: deployment of Internet History 1980 -1990: new protocols, a proliferation of networks q 1983: deployment of q q TCP/IP 1982: smtp e-mail protocol defined 1983: DNS defined for name-to-IP-address translation 1985: ftp protocol defined 1988: TCP congestion control q new national networks: Csnet, BITnet, NSFnet, Minitel q 100, 000 hosts connected to confederation of networks Introduction 92

Internet History 1990, 2000’s: commercialization, the Web, new apps q Early 1990’s: ARPAnet decommissioned Internet History 1990, 2000’s: commercialization, the Web, new apps q Early 1990’s: ARPAnet decommissioned q 1991: NSF lifts restrictions on commercial use of NSFnet (decommissioned, 1995) q early 1990 s: Web v hypertext [Bush 1945, Nelson 1960’s] v HTML, HTTP: Berners-Lee v 1994: Mosaic, later Netscape v late 1990’s: commercialization Late 1990’s – 2000’s: q more killer apps: instant messaging, P 2 P file sharing q network security to forefront q est. 50 million host, 100 million+ users q backbone links running at Gbps of the Web Introduction 93

Internet History 2007: q ~500 million hosts q Voice, Video over IP q P Internet History 2007: q ~500 million hosts q Voice, Video over IP q P 2 P applications: Napster, Bit. Torrent (file sharing) Skype (Vo. IP), PPLive (video) q more applications: You. Tube, gaming, social networking q wireless, mobility, networked embedded sensors, … Introduction 94

Introduction: Summary Covered a “ton” of material! q Internet overview q what’s a protocol? Introduction: Summary Covered a “ton” of material! q Internet overview q what’s a protocol? q network edge, core, access network v packet-switching versus circuit-switching v Internet structure q performance: loss, delay, throughput q layering, service models q security q history You now have: q context, overview, “feel” of networking q more depth, detail to follow! Introduction 95

Probability Background q Discrete random variables: q where E[X] is the expected (or mean) Probability Background q Discrete random variables: q where E[X] is the expected (or mean) value q 2 nd moment: Introduction 96

q Continuous random variables: q where F[x] is the cumulative distribution, f(y) is the q Continuous random variables: q where F[x] is the cumulative distribution, f(y) is the probability density function, v F[- ]=0, F[ ]=1 q Variance: v Var[X]=E[(X-E[X])2]=E[X 2]-(E[X])2 q Standard deviation Introduction 97

- Bernoulli experiment: - probability of success p, failure q=1 -p - Geometric distribution: - Bernoulli experiment: - probability of success p, failure q=1 -p - Geometric distribution: - X is the number of (independent identically distributed i. i. d. ) Bernoulli experiments to get success - Pr[X=k]=qk-1 p (1 st k-1 failures then success) - E(X)= k. Pr[X=k]=1/p - p=0. 1, E(X)=1/p=10 Introduction 98

Introduction 99 Introduction 99

- Binomial distribution: • x is the number of successes in n Bernoulli experiments/trials - Binomial distribution: • x is the number of successes in n Bernoulli experiments/trials • E[X]=np Introduction 100

- Exponential distribution: q F[x]=1 -e- x, f(x)= e- x, Pr[X>x]=1 -F[x]=e- x, E[X]=1/ - Exponential distribution: q F[x]=1 -e- x, f(x)= e- x, Pr[X>x]=1 -F[x]=e- x, E[X]=1/ Introduction 101

q Poisson Distribution: q Pr[X=k]= ( k/k!) e- , E[X]=Var[X]= q Used in queuing q Poisson Distribution: q Pr[X=k]= ( k/k!) e- , E[X]=Var[X]= q Used in queuing theory: - Pr[k items arriving in T interval]= (( T)k/k!) e- T, - Expected number of items to arrive in T= T, where is the rate of arrival Introduction 102

- Poisson processes are used in M/M/1 and M/D/1 queuing models - Inter-arrival times - Poisson processes are used in M/M/1 and M/D/1 queuing models - Inter-arrival times Ta - Pr[Ta

- Autocorrelation function R(t 1, t 2) is a measure of the relationship between - Autocorrelation function R(t 1, t 2) is a measure of the relationship between the instances of the stochastic process at time t 1 & t 2 [x(t 1) & x(t 2)] - - R(t 1, t 2)=E[x(t 1). x(t 2)] A related measure is the autocovariance C(t 1, t 2)=R(t 1, t 2) - (t 1). (t 2), where (t) is the mean of the stochastic process Autocorrelation measures the degree of dependence between instances of the stochastic process If R 0 as t 2 -t 1 is large no correlation between the different instants short memory process If R is substantial for large t, then there is high correlation between values and this is considered a long memory process Introduction 104