37
1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and Yaping Zhu http://www.cs.princeton.edu/courses/archive/spring08/ cos461/

1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

  • View
    223

  • Download
    0

Embed Size (px)

Citation preview

Page 1: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

1

Overlay NetworksReading: 9.4

COS 461: Computer Networks

Spring 2008 (MW 1:30-2:50 in COS 105)

Jennifer Rexford

Teaching Assistants: Sunghwan Ihm and Yaping Zhu http://www.cs.princeton.edu/courses/archive/spring08/cos461/

Page 2: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

2

Goals of Today’s Lecture

• Motivations for overlay networks–Incremental deployment of new protocols–Customized routing and forwarding solutions

• Overlays for partial deployments–6Bone, Mbone, security, mobility, …

• Resilient Overlay Network (RON)–Adaptive routing through intermediate node

• Distributed Hash Table (DHT)–Overlay for look-up of <key, value> pairs

Page 3: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

3

Overlay Networks

Page 4: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

4

Overlay Networks

Page 5: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

5

Overlay Networks

Focus at the application level

Page 6: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

6

IP Tunneling to Build Overlay Links

• IP tunnel is a virtual point-to-point link– Illusion of a direct link between two separated nodes

• Encapsulation of the packet inside an IP datagram– Node B sends a packet to node E– … containing another packet as the payload

A B E FtunnelLogical view:

Physical view:A B E F

Page 7: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

7

Tunnels Between End Hosts

A

C

B

Src: ADest: B

Src: ADest: B

Src: ADest: C

Src: ADest: B

Src: CDest: B

Page 8: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

8

Overlay Networks

• A logical network built on top of a physical network– Overlay links are tunnels through the underlying network

• Many logical networks may coexist at once– Over the same underlying network– And providing its own particular service

• Nodes are often end hosts– Acting as intermediate nodes that forward traffic– Providing a service, such as access to files

• Who controls the nodes providing service?– The party providing the service – Distributed collection of end users

Page 9: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

9

Overlays for Incremental Deployment

Page 10: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

10

Using Overlays to Evolve the Internet

• Internet needs to evolve–IPv6–Security–Mobility–Multicast

• But, global change is hard–Coordination with many ASes–“Flag day” to deploy and enable the technology

• Instead, better to incrementally deploy–And find ways to bridge deployment gaps

Page 11: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

11

6Bone: Deploying IPv6 over IP4A B E F

IPv6 IPv6 IPv6 IPv6

tunnelLogical view:

Physical view:A B E F

IPv6 IPv6 IPv6 IPv6

C D

IPv4 IPv4

Flow: XSrc: ADest: F

data

Flow: XSrc: ADest: F

data

Flow: XSrc: ADest: F

data

Src:BDest: E

Flow: XSrc: ADest: F

data

Src:BDest: E

A-to-B:IPv6

E-to-F:IPv6

B-to-C:IPv6 inside

IPv4

B-to-C:IPv6 inside

IPv4

Page 12: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

12

Secure Communication Over Insecure Links

• Encrypt packets at entry and decrypt at exit

• Eavesdropper cannot snoop the data

• … or determine the real source and destination

Page 13: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

13

Communicating With Mobile Users

• A mobile user changes locations frequently– So, the IP address of the machine changes often

• The user wants applications to continue running– So, the change in IP address needs to be hidden

• Solution: fixed gateway forwards packets– Gateway has a fixed IP address– … and keeps track of the mobile’s address changes

gatewaywww.cnn.com

Page 14: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

14

IP Multicast

• Multicast– Delivering the same data to many receivers– Avoiding sending the same data many times

• IP multicast– Special addressing, forwarding, and routing schemes– Pretty complicated stuff (see Section 4.4)

unicast multicast

Page 15: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

15

MBone: Multicast Backbone

• A catch-22 for deploying multicast– Router vendors wouldn’t support IP multicast– … since they weren’t sure anyone would use it– And, since it didn’t exist, nobody was using it

• Idea: software implementing multicast protocols– And unicast tunnels to traverse non-participants

Page 16: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

16

Multicast Today

• Mbone applications starting in early 1990s– Primarily video conferencing, but no longer operational

• Still many challenges to deploying IP multicast– Security vulnerabilities, business models, …

• Application-layer multicast is more prevalent– Tree of servers delivering the content– Collection of end hosts cooperating to delivery video

• Some multicast within individual ASes– Financial sector: stock tickers– Within campuses or broadband networks: TV shows– Backbone networks: IPTV

Page 17: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

17

Case Study: Resilient Overlay Networks

Page 18: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

18

RON: Resilient Overlay Networks

Premise: by building application overlay network, can increase performance and reliability of routing

Two-hop (application-level)Berkeley-to-Princeton route

application-layer router

Princeton Yale

Berkeley

http://nms.csail.mit.edu/ron/

Page 19: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

19

RON Circumvents Policy Restrictions

• IP routing depends on AS routing policies– But hosts may pick paths that circumvent policies

USLEC

PU Patriot

ISP

meMy home computer

Page 20: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

20

RON Adapts to Network Conditions

• Start experiencing bad performance– Then, start forwarding through intermediate host

A

C

B

Page 21: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

21

RON Customizes to Applications

• VoIP traffic: low-latency path

• Bulk transfer: high-bandwidth path

A

C

B

voice

bulk transfer

Page 22: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

22

How Does RON Work?

• Keeping it small to avoid scaling problems– A few friends who want better service– Just for their communication with each other– E.g., VoIP, gaming, collaborative work, etc.

• Send probes between each pair of hosts

AC

B

Page 23: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

23

How Does RON Work?

• Exchange the results of the probes– Each host shares results with every other host– Essentially running a link-state protocol!– So, every host knows the performance properties

• Forward through intermediate host when needed

AC

BB

Page 24: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

24

RON Works in Practice

• Faster reaction to failure–RON reacts in a few seconds–BGP sometimes takes a few minutes

• Single-hop indirect routing–No need to go through many intermediate hosts–One extra hop circumvents the problems

• Better end-to-end paths–Circumventing routing policy restrictions–Sometimes the RON paths are actually shorter

Page 25: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

25

RON Limited to Small Deployments

• Extra latency through intermediate hops– Software delays for packet forwarding– Propagation delay across the access link

• Overhead on the intermediate node– Imposing CPU and I/O load on the host– Consuming bandwidth on the access link

• Overhead for probing the virtual links– Bandwidth consumed by frequent probes– Trade-off between probe overhead and detection speed

• Possibility of causing instability– Moving traffic in response to poor performance– May lead to congestion on the new paths

Page 26: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

26

Case Study: Distributed Hash Tables

Page 27: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

27

Hash Table

• Name-value pairs (or key-value pairs)– E.g,. “Jen Rexford” and [email protected]– E.g., “http://www.cnn.com/foo.html” and the Web page– E.g., “BritneyHitMe.mp3” and “12.78.183.2”

• Hash table– Data structure that associates keys with values

lookup(key) valuekey value

Page 28: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

28

Distributed Hash Table

• Hash table spread over many nodes–Distributed over a wide area

• Main design goals–Decentralization: no central coordinator–Scalability: efficient even with large # of nodes–Fault tolerance: tolerate nodes joining/leaving

• Two key design decisions–How do we map names on to nodes?–How do we route a request to that node?

Page 29: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

29

Hash Functions

• Hashing–Transform the key into a number–And use the number to index an array

• Example hash function–Hash(x) = x mod 101, mapping to 0, 1, …, 100

• Challenges–What if there are more than 101 nodes? Fewer?–Which nodes correspond to each hash value?–What if nodes come and go over time?

Page 30: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

30

Consistent Hashing

• Large, sparse identifier space (e.g., 128 bits)–Hash a set of keys x uniformly to large id space–Hash nodes to the id space as well

0 1

Hash(name) object_idHash(IP_address) node_id

Id space represented

as a ring.

2128-1

Page 31: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

31

Where to Store (Key, Value) Pair?

• Mapping keys in a load-balanced way–Store the key at one or more nodes–Nodes with identifiers “close” to the key –Where distance is measured in the id space

• Advantages–Even distribution–Few changes as

nodes come and go…

Hash(name) object_idHash(IP_address) node_id

Page 32: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

32

Nodes Coming and Going

• Small changes when nodes come and go–Only affects mapping of keys mapped to the

node that comes or goes

Hash(name) object_idHash(IP_address) node_id

Page 33: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

33

Joins and Leaves of Nodes

• Maintain a circularly linked list around the ring– Every node has a predecessor and successor

node

pred

succ

Page 34: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

34

Joins and Leaves of Nodes

• When an existing node leaves– Node copies its <key, value> pairs to its predecessor– Predecessor points to node’s successor in the ring

• When a node joins– Node does a lookup on its own id– And learns the node responsible for that id– This node becomes the new node’s successor– And the node can learn that node’s predecessor (which

will become the new node’s predecessor)

Page 35: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

35

How to Find the Nearest Node?

• Need to find the closest node–To determine who should store (key, value) pair–To direct a future lookup(key) query to the node

• Strawman solution: walk through linked list–Circular linked list of nodes in the ring–O(n) lookup time when n nodes in the ring

• Alternative solution: –Jump further around ring–“Finger” table of additional overlay links

Page 36: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

36

Links in the Overlay Topology

• Trade-off between # of hops vs. # of neighbors– E.g., log(n) for both, where n is the number of nodes– E.g., such as overlay links 1/2, 1/4 1/8, … around the ring– Each hop traverses at least half of the remaining distance

1/2

1/4

1/8

Page 37: 1 Overlay Networks Reading: 9.4 COS 461: Computer Networks Spring 2008 (MW 1:30-2:50 in COS 105) Jennifer Rexford Teaching Assistants: Sunghwan Ihm and

37

Conclusions

• Overlay networks–Tunnels between host computers–Build networks “on top” of the Internet–Deploy new protocols and services

• Benefits of overlay networks–Customization to the applications and users–Incremental deployment of new technologies–May perform better than the underlying network

• Next time–Peer-to-peer applications