Top Banner
1 Routing in Multi- Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research
39

1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

Mar 27, 2015

Download

Documents

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

1

Routing in Multi-Radio, Multi-Hop Wireless Mesh

Networks

Richard Draves, Jitendra Padhye, and Brian Zill

Microsoft Research

Page 2: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

2

Multi-hop Wireless Networks

Stationary Nodes Mobile Nodes

Motivating scenario

Community wireless networks

(Mesh Networks)Battlefield networks

Key challengeHandling mobility,

limited power.

Improving Network Capacity

Page 3: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

3

Multi-Hop Networks with Single Radio

Source Mesh Router Destination

With a single radio, a node can not transmit and receive simultaneously.

Page 4: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

4

Multi-Hop Networks with Multiple Radios

Source Mesh Router Destination

With two radios tuned to non-interfering channels, a node can transmit and receive simultaneously.

Page 5: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

5

Other Advantages of Multiple Radios

• Increased robustness due to frequency diversity– e.g. 2.4GHz (802.11b) and 5GHz (802.11a) have

different fading characteristics

• Possible tradeoff between range and data rate– Can be helpful during early deployment

Page 6: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

6

Existing Routing Metrics are Inadequate

Source Mesh Router Destination

18 Mbps 18 Mbps

2 Mbps

11 Mbps 11 Mbps

Best path: 11 Mbps

Shortest path: 2 Mbps

Path with fastest links: 9 Mbps

Page 7: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

7

Contributions of Our Paper

• New routing metric for multi-radio mesh networks– Weighted Cumulative Expected Transmission Time (WCETT)

• Implementation of the metric in a link-state routing protocol – Multi-Radio Link-Quality source routing (MR-LQSR)

• Experimental evaluation of WCETT:– 24-node, multi-radio mesh testbed – 2 radios per node, 11a and 11g– Side-by-side comparison with:

• Shortest path (HOP) • ETX (De Couto et. al. MOBICOM 2003)

Page 8: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

8

Summary of Results

• WCETT makes judicious use of two radios– Over 250% better than HOP– Over 80% better than ETX

• Gains more prominent over shorter paths and in lightly-loaded scenarios

Page 9: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

9

Outline of the talk

• Design of WCETT

• Experimental results

• Conclusion

Page 10: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

10

Design of Routing Metric: Assumptions

• No power constraints

• Little or no node mobility– Relatively stable links

• Nodes have one or more 802.11 radios

• Multiple radios on a node are tuned to non-interfering channels– Channel assignment is fixed

Page 11: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

11

Implementation Framework

• Implemented in a source-routed, link-state protocol– Multi-Radio Link Quality Source Routing (MR-LQSR)

• Nodes discovers links to its neighbors; Measure quality of those links

• Link information floods through the network– Each node has “full knowledge” of the topology

• Sender selects “best path”– Packets are source routed using this path

Page 12: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

12

Goal for Multi-Radio Routing Metric

Maximize throughput of given flow:

– Prefer high-bandwidth, low-loss links

– When possible, select channel diverse paths

– Prefer shorter paths

Page 13: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

13

Components of a Routing Metric

• Link Metric: Assign a weight to each link

• Path Metric: Combine metrics of links on path

HOP: Each link has weight 1

HOP: Path Metric = Sum of Link Metrics

ETX: Prefer low-loss links

ETX: Prefer short, low-loss paths

WCETT: Prefer high-bandwidth, low-loss links

WCETT: Prefer short, channel-diverse paths

Page 14: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

14

Link Metric: Expected Transmission Time (ETT)

• Link loss rate = p– Expected number of transmissions

• Packet size = S, Link bandwidth = B– Each transmission lasts for S/B

• Lower ETT implies better link

ETXBS

ETT *

p-1

1 ETX

Page 15: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

15

ETT: Illustration

Source Destination18 Mbps10% loss

11 Mbps5% loss

1000 Byte Packet

ETT : 0.77 ms

ETT : 0.40ms

18 Mbps50% loss

1000 Byte Packet

ETT : 0.77 ms

ETT : 0.89 ms

Page 16: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

16

Combining Link Metric into Path MetricProposal 1

• Add ETTs of all links on the path• Use the sum as path metric

SETT = Sum of ETTs of links on path

Pro: Favors short paths

Con: Does not favor channel diversity

(Lower SETT implies better path)

Page 17: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

17

SETT does not favor channel diversity

Source

6 MbpsNo Loss

6 MbpsNo Loss

Mesh Router Destination

6 MbpsNo Loss

6 MbpsNo Loss

1.33ms 1.33ms

1.33ms1.33ms

Path Throughput SETT

Red-Red 3 Mbps 2.66 ms

Red-Blue 6 Mbps 2.66 ms

Page 18: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

18

Impact of Interference

• Interference reduces throughput

• Throughput of a path is lower if many links are on the same channel– Path metric should be worse for non-diverse paths

• Assumption: All links that are on the same channel interfere with one another– Pessimistic for long paths

Page 19: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

19

Combining Link Metric into Path MetricProposal 2

• Group links on a path according to channel– Links on same channel interfere

• Add ETTs of links in each group

• Find the group with largest sum. – This is the “bottleneck” group– Too many links, or links with high ETT (“poor quality” links)

• Use this largest sum as the path metric– Lower value implies better path

“Bottleneck Group ETT” (BG-ETT)

Page 20: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

20

BG-ETT Example

6 Mbps

6 Mbps

1.33 ms1.33 ms

6 Mbps

1.33 ms

6 Mbps

1.33 ms

6 Mbps

1.33 ms

6 Mbps

1.33 ms

Path Throughput Blue Sum Red Sum BG-ETT

All Red 1.5 Mbps 0 5.33 ms 5.33 ms

1 Blue 2 Mbps 1.33 ms 4 ms 4 ms

Red-Blue 3 Mbps 2.66 ms 2.66 ms 2.66 ms

BG-ETT favors high-throughput, channel-diverse paths.

Page 21: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

21

BG-ETT does not favor short paths

6 Mbps

6 Mbps

1.33 ms1.33 ms

6 Mbps

1.33 ms

3-Hop 2 Mbps 0 4 ms 4 ms

Path Throughput Blue Sum Red Sum BG-ETT

6 Mbps

6 Mbps

1.33 ms1.33 ms

6 Mbps

1.33 ms 4 ms

2 Mbps

4-Hop 2 Mbps 4 ms 4 ms 4 ms

S D

S D

Page 22: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

22

Path Metric: Putting it all together

• SETT favors short paths• BG-ETT favors channel diverse paths

Weighted Cumulative ETT (WCETT)

WCETT = (1-β) * SETT + β * BG-ETT

β is a tunable parameter

Higher value: More preference to channel diversityLower value: More preference to shorter paths

Page 23: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

23

How to measure loss rate and bandwidth?

• Loss rate measured using broadcast probes– Similar to ETX– Updated every second

• Bandwidth estimated using periodic packet-pairs– Updated every 5 minutes

Page 24: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

24

Outline of the talk

• Design of WCETT

• Experimental results

• Conclusion

Page 25: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

25

Mesh Testbed

Approx. 61 m

Appro

x.

32

m

23 nodes running Windows XP. Two 802.11a/b/g cards per node: Proxim and NetGear (Autorate)

Diameter: 6-7 hops.

Page 26: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

26

Experiment Setting

• 2-Minute TCP transfer between 100 randomly selected node pairs (Out of 23x22 = 506)

• Only one transfer active at a time• Performance metric:

– Median throughput of 100 transfers

Baseline (Single Radio)NetGear on 802.11a (Channel 36), Proxim OFF

Two RadioNetGear on 802.11a (Chan 36), Proxim on 802.11g (Chan 10)

(802.11g radios have longer range, lower bandwidth)

Page 27: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

27

Median Throughput (Baseline, single radio)

WCETT provides performance gain even with one radio.

0

500

1000

1500

2000

2500

3000

3500

WCETT ETX HOP

Th

rou

gh

pu

t (K

bp

s)

Page 28: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

28

Median Throughput(Two radios)

WCETT makes judicious use of 2nd radio: 86% gain over baseline

0

500

1000

1500

2000

2500

3000

3500

WCETT (β = 0.5) ETX HOP

Th

rou

gh

pu

t (K

bp

s)

Single Radio

Two Radios

ETX can not take full advantage of 2nd radioPerformance of HOP worsens with 2nd radio!

Page 29: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

29

Do all paths benefit equally with WCETT?

Improvement in Median Throughput over Baseline (1 radio)

0

20

40

60

80

100

120

140

1 2 3 4 >=5

Path Length (with 2 radios)

Per

cen

tag

e

WCETT gains are more prominent for shorter paths

Page 30: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

30

Impact of β value

0

1000

2000

3000

4000

5000

6000

7000

2 3 4 5 >= 6

Path Length (Hops)

Me

dia

n T

hro

ug

hp

ut

(Kb

ps

)

β=0 (No weight to diversity)

β=0.5

β=0.9 (High weight to diversity)

Channel diversity is important; especially for shorter paths

Page 31: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

31

Performance of Two Simultaneous Flows

• 2-Minute TCP transfer between 100 randomly selected node pairs

• Two transfers active at a time

• Two radios: Netgear: 36-a, Proxim: 10-g

• Performance metric: 2 x Median throughput

• Repeat for ETX and WCETT (β = 0, 0.5, 0.9)

Page 32: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

32

Two simultaneous flows

0

500

1000

1500

2000

2500

3000

3500

WCETT(β=0)

WCETT(β=0.1)

WCETT(β=0.5)

WCETT(β=0.9)

ETX

Med

ian

Th

rou

gh

pu

t (K

bp

s)

WCETT Performs better than ETX

β = 0: No weight to diversity

β = 0.9: High weight to diversity

Channel Diversity is importantThroughput better for lower values of β

Page 33: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

33

Outline of the talk

• Design of WCETT

• Experimental results

• Conclusion

Page 34: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

34

Conclusions

• Previously proposed routing metrics are inadequate in multi-radio scenario

• WCETT improves performance by judicious use of 2nd radio– Benefits are more prominent for shorter paths

• Optimal value of β depends on load

Page 35: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

35

Future Work

• Continued experimental evaluation in other testbeds– More than two radios– Two 11a or 11g radios

• Automatic selection of β based on load levels

• Passive inference of loss rate and channel bandwidth

Page 36: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

36

For more information

http://research.microsoft.com/mesh/

Source code, binaries, tech reports, …

Page 37: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

37

Backup Slides

Page 38: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

38

Impact of Interference

SourceMesh Router Destination

Intuition 1

Impact of interference can be captured by adding ETTs of interfering links

6 Mbps, No Loss 6 Mbps, No Loss

1.33 ms 1.33 ms

Path throughput: 3 Mbps Sum of ETTs: 2.66 ms

Page 39: 1 Routing in Multi-Radio, Multi-Hop Wireless Mesh Networks Richard Draves, Jitendra Padhye, and Brian Zill Microsoft Research.

39

Why does ETX not do well?

WCETT

0

2

4

6

8

10

12

14

16

18

0 1 2 3 4 5 6 7

Average Path Length (Hops)

Th

rou

gh

pu

t (M

bp

s)

ETX

0

2

4

6

8

10

12

14

16

18

0 1 2 3 4 5 6 7

Average Path Length (Hops)

Th

rou

gh

pu

t (M

bp

s)

ETX does not take bandwidth and channel diversity into account