Presentation is loading. Please wait.

Presentation is loading. Please wait.

Overview of Mobile Networking ECE 544 2015 Prof. D. Raychaudhuri Slides courtesy of Dr. Sam Nelson.

Similar presentations


Presentation on theme: "Overview of Mobile Networking ECE 544 2015 Prof. D. Raychaudhuri Slides courtesy of Dr. Sam Nelson."— Presentation transcript:

1 Overview of Mobile Networking ECE 544 2015 Prof. D. Raychaudhuri Slides courtesy of Dr. Sam Nelson

2 Mobile, Wireless Devices Goals – Allow communication to and from the Internet to mobile devices – Allow mobile devices in the same area to talk without going through infrastructure Mobile wireless communication devices are becoming ubiquitous Smart phones Emergency response Vehicular technology

3 Why Study Mobile Networking? WapReview : The total number of mobile Internet users: 1.05 billion, which in 2008 for the first time surpassed the total number of PC Web users (1 billion) DigitalStats : (June 2009) In the last six months, uploads from mobile phones to YouTube jump by 1700%. DigitalStats : When posed with the question "Which do you access Social Network sites from more, mobile phone or computer?” (Sample size=321, Japanese survey) – Computer 14.0% – Mobile phone 70.4% – Both about the same 15.0% – Don’t know 0.6%

4 Challenges of Mobile Networking Topology can change very quickly – New links form and break – Nodes leave and join the system Mobility occurs in the wireless domain – Interference – Propagation issues – Spectrum regulation and use End-to-end paths may not actually exist

5 Protocol Stack Physical Link Network Transport Application Wireless propagation issues Interference / Hidden terminal Establishing routes / addressing Reliable, in-order delivery / congestion control Sensing / emergency response, social networking Layer Mobility Challenges

6 Mobile Networking Topics: Lecture Outline Mobile Clients on the Internet Mobile Ad-hoc Networks (MANETs) Delay-Tolerant Networks (DTNs) - Communicate to/from Internet - Infrastructure in 1-hop - Addressing Problems - Communicate to/from Internet - Infrastructure in 1-hop - Addressing Problems - Communicate within network - No infrastructure - Relatively high connectivity - Communicate within network - No infrastructure - Relatively high connectivity - Communicate within network - No infrastructure - Low connectivity - Communicate within network - No infrastructure - Low connectivity

7 Mobile Clients on the Internet (also see supplementary Mobile IP tutorial slides from Eurescom)

8 Mobile Host on the Internet Goal: Maintain two-way connectivity to Internet and a mobile host. Net A Net B Internet IP_A For IP_A

9 IP Addresses What do IP addresses really mean? 213.86.83.116 / 8 Network Host IP address is for routing purposes Hence, they must change when a node changes networks IP addresses are topologically dependent and hence are bad choices for long lasting names in mobile environments

10 Mobile Host on the Internet Solutions? – Change IP address  Connectivity is lost… what is host’s IP? – Keep IP address  Routing will fail... host not found. How can S send to the moved mobile host? Net A Net B Internet IP_AIP_B For IP_A

11 Mobile IP Solution Mobile host keeps it’s old IP address, and gets someone to forward messages to it It must inform this “someone” of it’s new address Agents to help – home agent and foreign agent Old IP New IP Referred to as “home address” Referred to as “care-of address”

12 Mobile IP Solution HN R1R3 FN R2 HA MH CH FA Mobile Host: a host or router capable of changing its point of attachment to the Internet Foreign Network: a network, other than MA’s home network, that MH is currently attached to. Corresponding Host: a host or router communicationg with a mobile node. Home Network: the network identified with a mobile node Home Address: MH’s permanent IP address, network ID of this address identifies the mobile’s home network. Home Agent: a router attached to the MH’s home network maintains current location information for the MH is responsible for forwarding packets destined for the MH when MH is away from home. Foreign Agent (FA) a router in the foreign network that the MH is visiting provides routing services to the MH; may serve as default router for outgoing packet from MH Route Optimization

13 Triangular routing – Data goes from source to Home Agent to mobile device (or foreign agent) – Reverse path is different – Data goes from mobile directly to source Instead of constant triangular routing, inform CH of care-of address – Allows CH to directly route to mobile host

14 Mobile Ad-hoc Networks

15 Ad-hoc Networks Each mobile device (node) can act as a router Links form and break based on mobility and environmental factors Connectivity (e.g., high probability of instantaneous end-to-end paths existing) is assumed

16 Ad-hoc Networks Goal: Nodes within the network can send data between themselves. Challenges: – No centralized coordinator to help routing – No “default route” for nodes within the network – Fast topology changes – Limited bandwidth – can’t have too much overhead S D

17 Ad-hoc Networks Nodes that want to route messages must: – Find out about the topology of the network – Use that topology to do something with the message Control Plane Data Plane S D

18 Routing Protocol Categories Proactive: – Nodes actively maintain and share topology information, regardless of if there is data to send – Generally timer- or event-based Reactive (On-demand): – “Lazy” approach: Don’t do more work then you have to – Only discover topology/routes when there is data to send Control Plane

19 Routing Protocol Categories Local next-hop forwarding: – Consult forwarding table for a next hop – Completely local decision Source routing: – Source node places complete path in packet header – Intermediate nodes don’t have to consult their forwarding tables Data Plane S S A A B B D D ABD

20 Reactive Protocols Names are useful hints at understanding the protocol properties: Ad-hoc On-demand Distance Vector (AODV) Dynamic Source Routing (DSR) Source Routing Next-hop Forwarding Distance Vector Reactive MANET

21 21 Dynamic Source Routing (DSR) From Shweta Jain’s Slides When node S wants to send a packet to node D, but does not know a route to D, node S initiates a route discovery. Source node S floods the network with route request (RREQ) packets (also called query packets). Each node appends its own address in the packet header when forwarding RREQ.

22 22 Route Discovery in DSR A S E F B C G D RREQ broadcast [S] represents a node that has received RREQ for D from S. [X,..,..] Represents list of addresses appended to RREQ. A node receiving a RREQ rebroadcasts it exactly once.

23 23 Route Discovery in DSR represents a node that has received RREQ for D from S. A S E F B C G D RREQ broadcast [S,E] [X,..,..] Represents list of addresses appended to RREQ. [S,C] [S,A] A node receiving a RREQ rebroadcasts it exactly once.

24 24 Route Discovery in DSR A S E F B C G D RREQ broadcast [S,E,F] [S,C,G] [S,A,B] Destination D receives RREQ via G and F. It does not broadcast it further.

25 25 Route Discovery in DSR Destination D on receiving the first RREQ, sends a Route Reply (RREP). RREP is sent on a route obtained by reversing the route appended to received RREQ. RREP includes the reverse route from S to D on which RREQ was received by node D.

26 26 Route Reply in DSR A S E F B C G D RREP Unicast [D,F,E,S] Reverse route in the header of RREP

27 27 Route Caching in DSR Node S on receiving RREP, “caches” the route included in the RREP. When node S sends a data packet to D, the entire route is included in the packet header – Hence the name source routing. Intermediate nodes use the source route included in a packet to determine to whom a packet should be forwarded.

28 28 Data Delivery in DSR A S E F B C G D Cache on S: [S,E,F,D] DATA [S,E,F,D] DATA packet Unicast Source route size grows with route length.

29 29 Dynamic Source Routing: Advantages Source routing: no special mechanism needed to eliminate loops. On demand routing: Routes maintained only between nodes who need to communicate – Reduces overhead of route maintenance. Route caching can further reduce route discovery overhead. A single route discovery may yield many routes to the destination, due to intermediate nodes replying from local caches. – Useful when route breaks.

30 30 Dynamic Source Routing: Disadvantages Not scalable: Packet header size grows linearly with route length due to source routing. Network-wide flood: Flood of route requests may potentially reach all nodes in the network. Too much overhead. Collision: Care must be taken to avoid collisions between route requests propagated by neighboring nodes – insertion of random delays before forwarding RREQ Reply storm problem: Increased contention if too many route replies come back due to nodes replying using their local cache – Reply storm may be eased by preventing a node from sending RREP if it hears another RREP with a shorter route.

31 31 Dynamic Source Routing: Disadvantages Stale cache problem: An intermediate node may send Route Reply using a stale cached route, thus polluting other caches. This problem can be eased if some mechanism to purge (potentially) invalid cached routes is incorporated. Current research: how to invalidate caches effectively. – Example: Timer-based. Or propagate the route error widely.

32 32 Ad Hoc On-Demand Distance Vector Routing (AODV) From Shweta Jain’s Slides AODV retains the desirable feature of DSR that routes are maintained only between nodes which need to communicate. AODV attempts to improve on DSR by maintaining routing tables at the nodes, so that data packets do not have to contain routes. No caches are used. – Only one route per destination in the routing table. – Only maintain the freshest route, if multiple possibilities.

33 33 AODV Route Requests (RREQ) are forwarded in a manner similar to DSR. When a node re-broadcasts a RREQ, it sets up a reverse path pointing towards the source. – This is so that the RREP can get back to the source. When the intended destination receives a RREQ, it replies by sending a RREP. RREP travels along the reverse path set up when RREQ is forwarded.

34 34 AODV Route Discovery Source floods route request (RREQ) in the network. Reverse paths are formed when a node hears a route request. Each node forwards the request only once (pure flooding). A S E F B C G D RREQ broadcast

35 35 AODV Route Discovery A S E F B C G D Source floods route request in the network. Reverse paths are formed when a node hears a route request. Each node forwards the request only once (pure flooding). Reverse Path

36 36 AODV Route Discovery A S E F B C G D Uses hop-by-hop routing. Reverse paths are formed when a node hears a route request. Each node forwards the request only once (pure flooding). RREQ broadcast Reverse Path

37 37 AODV Route Discovery A S E F B C G D Uses hop-by-hop routing. Reverse paths are formed when a node hears a route request. Each node forwards the request only once (pure flooding). Reverse Path

38 38 AODV Route Discovery Route reply (RREP) is forwarded via the reverse path. A S E F B C G D Reverse Path

39 39 AODV Route Discovery Route reply is forwarded via the reverse path … thus forming the forward path. The forward path is used to route data packets. A S E F B C G D Forward Path Reverse Path

40 40 Route Expiry on Timeout A routing table entry maintaining a reverse path is invalidated after a timeout interval – Timeout should be long enough to allow RREP to come back A routing table entry maintaining a forward path is also invalidated if unused for certain interval. – This means unused routes are purged. – Note that the route may still be valid.

41 41 Route Expiry Unused reverse paths expire based on a timer. A S E F B C G D Forward Path

42 42 Possibility of Routing Loops! Useful optimization: An intermediate node with a route to D can reply to route request. – Faster operation. – Quenches route request flood. Wireless reality: Routing messages can get lost. It can be shown that above can cause long- term routing loops.

43 43 Possibility of Routing Loops! Assume that A does not know about failure of link C- D because route error sent by C is lost. Now C performs a route discovery for D. Node A receives the route request (say, via path C-E-A) Node A will reply since A knows a route to D via node B Results in a loop (for instance, C-E-A-B-C ) ABCD E

44 44 Use of Sequence Numbers in AODV Each node X maintains a sequence number and increments it at suitable intervals. Seq. no. acts like a logical clock. Each node Y with a route to X in the routing table, also maintains a destination sequence number for X, which is Y’s latest knowledge of X’s sequence number. Destination sequence no. can be used to order routing updates.

45 45 Use of Sequence Numbers in AODV Loop freedom: The protocol maintains the invariant that the destination sequence number for any destination D never decreases along any valid route. – No routing info is accepted by a node X from any node Y, where Y’s destination seq. no. for D is less than X’s destination seq. no. for D. Freshest route: Given a choice of multiple routes, the protocol always chooses the one with the highest sequence number. X Y D ? Dest seq no. = 10 Dest seq no. = 7 Needs a route to D Has a route to D Seq. no. = 15 RREQ carries 10 Y does not reply, but forwards the RREQ

46 46 How Using Sequence Numbers can Avoid Loop? Link failure increments the destination seq. no. at C (now is 10). If C needs a route to D, RREQ carries the current dest. seq. no. (10). A does not reply as its own dest. seq. no. is less than 10. ABCD E 10 9 9 7 5 All seq no’s are for D (called destination seq. no.)

47 47 Summary: AODV No source routing. Based on routing tables. Use of sequence numbers to prevent loops. At most one route per destination maintained at each node – Only the freshest one is maintained (via destination seq. no.) – Stale route problem is less severe. – After link break, all routes using the failed link are erased. Unused routes expire even if valid.

48 Proactive Protocols Optimized Link-State Routing (OLSR) Proactive

49 49 Link State Routing Each node floods the network with the status of its links – Flood can be periodic. – Or, when a neighborhood change is detected. Each node keeps track of link state information received from other nodes – Thus builds its own view of the network connectivity. Each node uses its view of network connectivity to construct a routing table for each destination. – For example, each node can run a shortest-path algorithm (e.g., Dijkstra’s) on its own view of the connectivity graph. – Different nodes can use different objective for routing.

50 Types of Discovery Discover your local neighbors – Hello messages – Sent only 1-hop, never flooded Discover the total network topology – Link state advertisement (LSA) messages – Flooded throughout the network

51 Link State Algorithm Flooding: 1) Periodically distribute link-state advertisement (LSA) to neighbors - LSA contains delays to each neighbor 2) Install received LSA in LS database 3) Re-distribute LSA to all neighbors Path Computation 1) Use Dijkstra’s shortest path algorithm to compute distances to all destinations 2) Install pair in forwarding table

52 52 OLSR: Optimized Link-State Routing Only multipoint relays (MPR) participate in flooding. Multipoint relays of node X are its neighbors such that each two-hop neighbor of X is a one-hop neighbor of at least one multipoint relay of X. – Each node transmits its neighbor list in hello messages, so that all nodes know their 2-hop neighbors, in order to choose the multipoint relays. – Select as few multipoint relays as possible. Only multipoint relays are used for flooding.

53 53 Traditional Flooding 24 retransmissions needed to flood the network

54 54 Multipoint Relays 11 retransmissions needed to flood the network

55 55 Optimized Link State Routing (OLSR) OLSR floods link-state information only through multipoint relays. Routes used by OLSR only include multipoint relays as intermediate nodes. Each node maintains information about its MPR (multipoint relay) selector set, i.e., set of neighbors that have selected itself as MPR. Each node with non-empty MPR selector set periodically floods the network with topology control (TC) messages containing own MPR selector set. – This information is used to construct the topology database used for routing calculations.

56 Delay-Tolerant Networks

57 Disruption Tolerant Networks DTN Characteristics – Intermittent connectivity – Partitioning – No guarantee of end-to-end paths Goals: – High message delivery ratio – Acceptable delay Routing Approach – Store-carry-and-forward routing – Replication 57 Emergency response networks Community networks Battlefield networks Emergency response networks Community networks Battlefield networks

58 No Reliance on Infrastructure Benefit of DTN communication – Allows end-users to not rely on infrastructure Infrastructure may be not available – Destroyed (emergency response) – Never there (military / third- world development) Infrastructure may not be ideal – Costly (community networks) – Overloaded / Slow (community networks) 58 Instead, mobility is used to form connections Replication is used to overcome intermittent connectivity

59 Routing Considerations Are contacts scheduled or not? Can I extract any information from the mobility? Based on these questions: – How much do I replicate? – Who do I give replicas to? – Which packets do I send / drop first?

60 Routing Categories Replication Scale Direct DeliveryQuota-basedFlooding-basedEpidemic Spray and Wait Spray and Focus Encounter-based Routing MaxProp Prophet RAPID Hard limit on number of replicates per message No limit on number of replicas

61 Epidemic Routing If nothing is known and resources are available, just send to everyone! Epidemic routing is the DTN equivalent to flooding: S D I S D I S D I

62 Synchronizing AB M1 M2 M5 M1 M4 M6 I have 1, 2, and 5 I’ll take 2, 5 M2 M5 M2 ACK M5 ACK

63 Pros and Cons Pros: – Extremely simple to implement – Optimal in terms of delivery and delay if no resource constraints Cons: – Performance greatly suffers if there are resource constraints (buffer, bandwidth, contact duration)

64 MaxProp High replication is good, if we can properly manage the buffers – Which messages do I send first? – Which messages do I drop first? Still replicate all messages to all contacts!

65 MaxProp SD 1. Bandwidth 2. Storage 3. Contact duration Maintain a priority-ordered queue – Priority is estimated delivery likelihood – Forward copies of all messages in this order Which packets do I send first?

66 Meeting Probabilities Each node maintains a vector of size n: – i th entry indicates probability of meeting node i. – Upon meeting a node, increment by 1 and normalize A B.25 C D E D B C D 1.25 E.25 B.125 C D.625 E.125 Each node stores n of these vectors: oUpon meeting a node, exchange vectors Transmission: O(n) Storage: O(n 2 )

67 Path Cost Calculation The cost of a path is the sum of probabilities that each connection on the path does not occur Choose the path with minimal cost A D C B BC.5 BC.6.4 AC.25.5 D.25 AB.2.6 D.2 Path Costs: ABD = (1 -.5) + (1 -.25) = 1.25 ACD = (1 -.5) + (1 -.2) = 1.3 ABCD = (1 -.5) + (1 -.5) + (1 -.2) = 1.8 ACBD = (1 -.5) + (1 -.6) + (1 -.25) = 1.65

68 Complementary Mechanisms Acknowledgements – Flooded, to clear out buffers – Hash of message (128bits) Packet “head start” – Give priority to low hop-count packets Buffer management – Drop order Acknowledged messages Lowest delivery score Highest hop count Protocol 1.Direct delivery 2.Routing information 3.Acknowledgements 4.Low hop-count pkts 5.Remaining pkts

69 Spray and Wait Strictly limit replication – Message copies contain quota – Distribute quota at replication time Benefits – Resource friendly Limitations – Potential reduced delivery ratio – May miss important contact opportunities 69 4 4 2 2 2 2 Message Quota 1 1 1 1 Buffer management is too difficult, so instead just limit replication

70 Example S D 4 1 2 Spray Phase Give a replica with half my quota to my current contact S D 1 1 1 Wait Phase When quota is 1 for a replica, only direct delivery is allowed 1 1

71 Pros and Cons Pros: – Very resource friendly – Doesn’t require a complex buffer management technique – No routing overhead Cons: – You may give valuable quota away to useless nodes – Node mixing must be high and, to some extend, random

72 Encounter-Based Routing Insight: – Popularity can be used to determine forwarding usefulness Naive Approach – Give entire message, or a replica of the message, to the more popular node EBR’s Approach – Distribute quota in proportion to node “popularity” – Easily extendable to groups by distributing quota in proportion to group popularity LittleLot 72 Low popularity High popularity

73 Measuring Popularity Encounter value (EV) – Gauge overall popularity of a node – Counting Window Count contacts (perhaps not unique) within a specified window (CWC) Update using an exponentially weighted moving average 73 EV can be expanded to multiple dimensions – Gauge popularity with different groups – Each dimension represents a group – Update EV in the dimension of the contact’s group(s)

74 Distributing Quota Node A meets Node B – Get Node B’s EV (extremely low overhead) – Determine amount of initial quota M (if any) to keep and to give Node B, for each message in A’s buffer – Transmit a copy of message with the new quota for B Proportional – Quota flow from high popularity to low popularity can occur, mitigating local maximums 74

75 Example 75 AB 4 4 8 8 EV A = 5 EV B = 15

76 Example 76 A sends ¾ of all quota to BB sends ¼ of all quota to A AB 4 4 8 8 EV A = 5 EV B = 15

77 Example 77 A sends ¾ of all quota to BB sends ¼ of all quota to A AB 4 4 8 8 EV A = 5 EV B = 15 1 1 3 3 6 6 2 2 Give away Keep

78 Pros and Cons Pros: – Very resource friendly – Very low routing overhead – Can still achieve high results Cons: – Assumes uneven popularities, and that popularity will stay the same for a node – Can miss important contact opportunities due to being quota-based

79 Conclusions Mobile networking is a very interesting and active field of research! – DTNs – Vehicular networks – Underwater networks – Sensor networks Other topics, such as mobile security and privacy, have lots of activity as well.


Download ppt "Overview of Mobile Networking ECE 544 2015 Prof. D. Raychaudhuri Slides courtesy of Dr. Sam Nelson."

Similar presentations


Ads by Google