SlideShare a Scribd company logo
1 of 81
Mobile Ad Hoc Networks
Subject – Mobile Computing
Course – M.Tech. CSE (Networking Systems)
by
Vikash MainanwaI
Submitted to
Rajdeep Singh
Department of Computer Science & Engineering
Punjab Institute of Technology, Kapurthala
(PTU Main Campus )
Outline
 Introduction
 Medium Access Control
 Routing (unicast)
– Reactive Protocols
– Proactive Protocols
– Hybrid Protocols
 Transport Issues
 Summary and Conclusions
Wireless Networks
 Need: Access computing and communication services, on the move
 Infrastructure-based Networks
– traditional cellular systems (base station infrastructure)
 Wireless LANs
– Infrared (IrDA) or radio links (Wavelan)
– very flexible within the reception area; ad-hoc networks possible
– low bandwidth compared to wired networks (1-10 Mbit/s)
 Ad hoc Networks
– useful when infrastructure not available, impractical, or expensive
– military applications, rescue, home networking
Cellular Wireless
 Single hop wireless connectivity to the wired world
– Space divided into cells
– A base station is responsible to communicate with hosts in its cell
– Mobile hosts can change cells while communicating
– Hand-off occurs when a mobile host starts communicating via a
new base station
Multi-Hop Wireless
 May need to traverse multiple links to reach destination
 Mobility causes route changes
Mobile Ad Hoc Networks (MANET)
 Host movement frequent
 Topology change frequent
 No cellular infrastructure. Multi-hop wireless links.
 Data must be routed via intermediate nodes.
A
B A
B
Why Ad Hoc Networks ?
 Setting up of fixed access points and backbone
infrastructure is not always viable
– Infrastructure may not be present in a disaster area or war zone
– Infrastructure may not be practical for short-range radios;
Bluetooth (range ~ 10m)
 Ad hoc networks:
– Do not need backbone infrastructure support
– Are easy to deploy
– Useful when infrastructure is absent, destroyed or impractical
Routing Protocols
Traditional Routing
 A routing protocol sets up a routing table in routers
 A node makes a local choice depending on global
topology
Distance-vector & Link-state Routing
 Both assume router knows
– address of each neighbor
– cost of reaching each neighbor
 Both allow a router to determine global routing
information by talking to its neighbors
 Distance vector - router knows cost to each destination
 Link state - router knows entire network topology and
computes shortest path
Distance Vector Routing: Example


2

Link State Routing: Example
Routing and Mobility
 Finding a path from a source to a destination
 Issues
– Frequent route changes
• amount of data transferred between route changes may be
much smaller than traditional networks
– Route changes may be related to host movement
– Low bandwidth links
 Goal of routing protocols
– decrease routing-related overhead
– find short routes
– find “stable” routes (despite mobility)
Routing in MANET
Unicasting
 The routing we have discussed so far is mainly point-to-
point routing.
 A source node wants to send a message to a destination
node.
Multicasting
 However, in many situations a node wants to send a
message to a group of nodes in the network.
 This is called multicasting and the group is called a
multicast group.
Broadcasting
 Broadcasting is a special case of multicasting when all the
nodes in the network is in the multicast group.
Unicast Routing Protocols
 Many protocols have been proposed
 Some specifically invented for MANET
 Others adapted from protocols for wired networks
 No single protocol works well in all environments
– some attempts made to develop adaptive/hybrid protocols
 Standardization efforts in IETF
– MANET, MobileIP working groups
– http://www.ietf.org
Routing Protocols
 Proactive protocols
– Traditional distributed shortest-path protocols
– Maintain routes between every host pair at all times
– Based on periodic updates; High routing overhead
– Example: DSDV (destination sequenced distance vector)
 Reactive protocols
– Determine route if and when needed
– Source initiates route discovery
– Example: DSR (dynamic source routing)
 Hybrid protocols
– Adaptive; Combination of proactive and reactive
– Example : ZRP (zone routing protocol)
Protocol Trade-offs
 Proactive protocols
– Always maintain routes
– Little or no delay for route determination
– Consume bandwidth to keep routes up-to-date
– Maintain routes which may never be used
 Reactive protocols
– Lower overhead since routes are determined on demand
– Significant delay in route determination
– Employ flooding (global search)
– Control traffic may be bursty
 Which approach achieves a better trade-off depends on the traffic and
mobility patterns
Reactive Routing Protocols
Dynamic Source Routing (DSR) [Johnson96]
 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 Route Request (RREQ)
 Each node appends own identifier when forwarding RREQ
Route Discovery in DSR
B
A
S E
F
H
J
D
C
G
I
K
Z
Y
Represents a node that has received RREQ for D from S
M
N
L
Route Discovery in DSR
B
A
S E
F
H
J
D
C
G
I
K
Represents transmission of RREQ
Z
Y
Broadcast transmission
M
N
L
[S]
[X,Y] Represents list of identifiers appended to RREQ
Route Discovery in DSR
B
A
S E
F
H
J
D
C
G
I
K
• Node H receives packet RREQ from two neighbors:
potential for collision
Z
Y
M
N
L
[S,E]
[S,C]
Route Discovery in DSR
B
A
S E
F
H
J
D
C
G
I
K
• Node C receives RREQ from G and H, but does not forward
it again, because node C has already forwarded RREQ once
Z
Y
M
N
L
[S,C,G]
[S,E,F]
Route Discovery in DSR
B
A
S E
F
H
J
D
C
G
I
K
Z
Y
M
• Nodes J and K both broadcast RREQ to node D
• Since nodes J and K are hidden from each other, their
transmissions may collide
N
L
[S,C,G,K]
[S,E,F,J]
Route Discovery in DSR
B
A
S E
F
H
J
D
C
G
I
K
Z
Y
• Node D does not forward RREQ, because node D
is the intended target of the route discovery
M
N
L
[S,E,F,J,M]
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 route from S to D on which RREQ was
received by node D
Route Reply in DSR
B
A
S E
F
H
J
D
C
G
I
K
Z
Y
M
N
L
RREP [S,E,F,J,D]
Represents RREP control message
Dynamic Source Routing (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
Data Delivery in DSR
B
A
S E
F
H
J
D
C
G
I
K
Z
Y
M
N
L
DATA [S,E,F,J,D]
Packet header size grows with route length
DSR Optimization: Route Caching
 Each node caches a new route it learns by any means
 When node S finds route [S,E,F,J,D] to node D, node S
also learns route [S,E,F] to node F
 When node K receives Route Request [S,C,G] destined for
node, node K learns route [K,G,C,S] to node S
 When node F forwards Route Reply RREP [S,E,F,J,D],
node F learns route [F,J,D] to node D
 When node E forwards Data [S,E,F,J,D] it learns route
[E,F,J,D] to node D
 A node may also learn a route when it overhears Data
 Problem: Stale caches may increase overheads
Dynamic Source Routing: Advantages
 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
Dynamic Source Routing: Disadvantages
 Packet header size grows with route length due to source
routing
 Flood of route requests may potentially reach all nodes in
the network
 Potential collisions between route requests propagated by
neighboring nodes
– insertion of random delays before forwarding RREQ
 Increased contention if too many route replies come back
due to nodes replying using their local cache
– Route Reply Storm problem
 Stale caches will lead to increased overhead
Location-Aided Routing (LAR) [Ko98Mobicom]
 Exploits location information to limit scope of route
request flood
– Location information may be obtained using GPS
 Expected Zone is determined as a region that is expected to
hold the current location of the destination
– Expected region determined based on potentially old location
information, and knowledge of the destination’s speed
 Route requests limited to a Request Zone that contains the
Expected Zone and location of the sender node
Request Zone
 Define a Request Zone
 LAR is same as flooding, except that only nodes in request
zone forward route request
 Smallest rectangle including S and expected zone for D
S
Request Zone
D
Expected Zone
x
Y
Location Aided Routing (LAR)
 Advantages
– reduces the scope of route request flood
– reduces overhead of route discovery
 Disadvantages
– Nodes need to know their physical locations
– Does not take into account possible existence of obstructions for
radio transmissions
Ad Hoc On-Demand Distance Vector Routing
(AODV) [Perkins99Wmcsa]
 DSR includes source routes in packet headers
 Resulting large headers can sometimes degrade
performance
– particularly when data contents of a packet are small
 AODV attempts to improve on DSR by maintaining
routing tables at the nodes, so that data packets do not have
to contain routes
 AODV retains the desirable feature of DSR that routes are
maintained only between nodes which need to
communicate
AODV
 Route Requests (RREQ) are forwarded in a manner similar
to DSR
 When a node re-broadcasts a Route Request, it sets up a
reverse path pointing towards the source
– AODV assumes symmetric (bi-directional) links
 When the intended destination receives a Route Request, it
replies by sending a Route Reply (RREP)
 Route Reply travels along the reverse path set-up when
Route Request is forwarded
RREQ Message
 a
B?B?
B?B?
B?B?
B?B?
B?B?
B?B? B?B?
BB
AA
RREP Message
a
BB
AA
AA
AA
AA
AA
AA
AA
Route Requests in AODV
B
A
S E
F
H
J
D
C
G
I
K
Z
Y
Represents a node that has received RREQ for D from S
M
N
L
Route Requests in AODV
B
A
S E
F
H
J
D
C
G
I
K
Represents transmission of RREQ
Z
Y
Broadcast transmission
M
N
L
Route Requests in AODV
B
A
S E
F
H
J
D
C
G
I
K
Represents links on Reverse Path
Z
Y
M
N
L
Reverse Path Setup in AODV
B
A
S E
F
H
J
D
C
G
I
K
• Node C receives RREQ from G and H, but does not forward
it again, because node C has already forwarded RREQ once
Z
Y
M
N
L
Reverse Path Setup in AODV
B
A
S E
F
H
J
D
C
G
I
K
Z
Y
M
N
L
Reverse Path Setup in AODV
B
A
S E
F
H
J
D
C
G
I
K
Z
Y
• Node D does not forward RREQ, because node D
is the intended target of the RREQ
M
N
L
Forward Path Setup in AODV
B
A
S E
F
H
J
D
C
G
I
K
Z
Y
M
N
L
Forward links are setup when RREP travels along
the reverse path
Represents a link on the forward path
Route Request and Route Reply
 Route Request (RREQ) includes the last known sequence number for
the destination
 An intermediate node may also send a Route Reply (RREP) provided
that it knows a more recent path than the one previously known to
sender
 Intermediate nodes that forward the RREP, also record the next hop to
destination
 A routing table entry maintaining a reverse path is purged after a
timeout interval
 A routing table entry maintaining a forward path is purged if not used
for a active_route_timeout interval
Link Failure
 A neighbor of node X is considered active for a routing table entry if
the neighbor sent a packet within active_route_timeout interval which
was forwarded using that entry
 Neighboring nodes periodically exchange hello message
 When the next hop link in a routing table entry breaks, all active
neighbors are informed
 Link failures are propagated by means of Route Error (RERR)
messages, which also update destination sequence numbers
Route Error
 When node X is unable to forward packet P (from node S to node D)
on link (X,Y), it generates a RERR message
 Node X increments the destination sequence number for D cached at
node X
 The incremented sequence number N is included in the RERR
 When node S receives the RERR, it initiates a new route discovery for
D using destination sequence number at least as large as N
 When node D receives the route request with destination sequence
number N, node D will set its sequence number to N, unless it is
already larger than N
AODV: Summary
 Routes need not be included in packet headers
 Nodes maintain routing tables containing entries only for
routes that are in active use
 At most one next-hop per destination maintained at each
node
– DSR may maintain several routes for a single destination
 Sequence numbers are used to avoid old/broken routes
 Sequence numbers prevent formation of routing loops
 Unused routes expire even if topology does not change
Other Protocols
 Many variations of using control packet flooding for route discovery
 Power-Aware Routing [Singh98Mobicom]
– Assign a weight to each link: function of energy consumed when
transmitting a packet on that link, as well as the residual energy level
– Modify DSR to incorporate weights and prefer a route with the smallest
aggregate weight
 Associativity-Based Routing (ABR) [Toh97]
– Only links that have been stable for some minimum duration are utilized
– Nodes increment the associativity ticks of neighbors by using periodic
beacons
 Signal Stability Based Adaptive Routing (SSA) [Dube97]
– A node X re-broadcasts a Route Request received from Y only if the
(X,Y) link has a strong signal stability
– Signal stability is evaluated as a moving average of the signal strength of
packets received on the link in recent past
Signal Stability Routing (SSA)
Signal Stability Routing (SSA)
Link Reversal Algorithm [Gafni81]
A FB
C E G
D
Link Reversal Algorithm
A FB
C E G
D
Maintain a directed acyclic
graph (DAG) for each
destination, with the destination
being the only sink
This DAG is for destination
node D
Links are bi-directional
But algorithm imposes
logical directions on them
Link Reversal Algorithm
Link (G,D) broke
A FB
C E G
D
Any node, other than the destination, that has no outgoing links
reverses all its incoming links.
Node G has no outgoing links
Link Reversal Algorithm
A FB
C E G
D
Now nodes E and F have no outgoing links
Represents a
link that was
reversed recently
Link Reversal Algorithm
A FB
C E G
D
Now nodes B and G have no outgoing links
Represents a
link that was
reversed recently
Link Reversal Algorithm
A FB
C E G
D
Now nodes A and F have no outgoing links
Represents a
link that was
reversed recently
Link Reversal Algorithm
A FB
C E G
D
Now all nodes (other than destination D) have an outgoing link
Represents a
link that was
reversed recently
Link Reversal Algorithm
A FB
C E G
D
DAG has been restored with only the destination as a sink
Link Reversal Algorithm
 Attempts to keep link reversals local to where the failure
occurred
– But this is not guaranteed
 When the first packet is sent to a destination, the
destination oriented DAG is constructed
 The initial construction does result in flooding of control
packets
Link Reversal Algorithm
 The previous algorithm is called a full reversal method
since when a node reverses links, it reverses all its
incoming links
 Partial reversal method [Gafni81]: A node reverses
incoming links from only those neighbors who have not
themselves reversed links “previously”
– If all neighbors have reversed links, then the node reverses all its
incoming links
– “Previously” at node X means since the last link reversal done by
node X
Link Reversal Methods
 Advantages
– Link reversal methods attempt to limit updates to routing tables at
nodes in the vicinity of a broken link
• Partial reversal method tends to be better than full reversal
method
– Each node may potentially have multiple routes to a destination
 Disadvantages
– Need a mechanism to detect link failure
• hello messages may be used
– If network is partitioned, link reversals continue indefinitely
Temporally-Ordered Routing Algorithm
(TORA) [Park97Infocom]
 Route optimality is considered of secondary importance; longer routes
may be used
 At each node, a logically separate copy of TORA is run for each
destination, that computes the height of the node with respect to the
destination
 Height captures number of hops and next hop
 Route discovery is by using query and update packets
 TORA modifies the partial link reversal method to be able to detect
partitions
 When a partition is detected, all nodes in the partition are informed,
and link reversals in that partition cease
Asymmetric Algorithms
 Clusterhead Gateway Switch Routing (CGSR)
– All nodes within a cluster communicate with a clusterhead
– Routing uses a hierarchical clusterhead-to-gateway approach
 Core-Extraction Distributed Ad Hoc Routing (CEDAR)
[Sivakumar99]
– A subset of nodes in the network is identified as the core
– Each node in the network must be adjacent to at least one node in
the core
– Each core node determines paths to nearby core nodes by means of
a localized broadcast
CGSR
CEDAR
B
A
C E
JS K
D
F
H
G
A core node
Node E is the dominator
for nodes D, F and K
Proactive Routing Protocols
Destination-Sequenced Distance-Vector (DSDV)
[Perkins94Sigcomm]
 Each node maintains a routing table which stores
– next hop, cost metric towards each destination
– a sequence number that is created by the destination itself
 Each node periodically forwards routing table to neighbors
– Each node increments and appends its sequence number when sending its
local routing table
 Each route is tagged with a sequence number; routes with greater
sequence numbers are preferred
 Each node advertises a monotonically increasing even sequence
number for itself
 When a node decides that a route is broken, it increments the sequence
number of the route and advertises it with infinite metric
 Destination advertises new sequence number
Destination-Sequenced Distance-Vector (DSDV)
 When X receives information from Y about a route to Z
– Let destination sequence number for Z at X be S(X), S(Y) is sent
from Y
– If S(X) > S(Y), then X ignores the routing information received
from Y
– If S(X) = S(Y), and cost of going through Y is smaller than the
route known to X, then X sets Y as the next hop to Z
– If S(X) < S(Y), then X sets Y as the next hop to Z, and S(X) is
updated to equal S(Y)
X Y Z
Optimized Link State Routing (OLSR)
[Jacquet00ietf]
 Nodes C and E are multipoint relays of node A
– Multipoint relays of A are its neighbors such that each two-hop
neighbor of A is a one-hop neighbor of one multipoint relay of A
– Nodes exchange neighbor lists to know their 2-hop neighbors and
choose the multipoint relays
A
B F
C
D
E H
G
K
J
Node that has broadcast state information from A
Optimized Link State Routing (OLSR)
 Nodes C and E forward information received from A
 Nodes E and K are multipoint relays for node H
 Node K forwards information received from H
A
B F
C
D
E H
G
K
J
Node that has broadcast state information from A
Hybrid Routing Protocols
Zone Routing Protocol (ZRP) [Haas98]
 ZRP combines proactive and reactive approaches
 All nodes within hop distance at most d from a node X are
said to be in the routing zone of node X
 All nodes at hop distance exactly d are said to be
peripheral nodes of node X’s routing zone
 Intra-zone routing: Proactively maintain routes to all nodes
within the source node’s own zone.
 Inter-zone routing: Use an on-demand protocol (similar to
DSR or AODV) to determine routes to outside zone.
Zone Routing Protocol (ZRP)
Radius of routing zone = 2
Manet By Vikas mainanwal
Manet By Vikas mainanwal

More Related Content

What's hot

Simulation & comparison of aodv & dsr protocol
Simulation & comparison of aodv & dsr protocolSimulation & comparison of aodv & dsr protocol
Simulation & comparison of aodv & dsr protocolPrafull Johri
 
Dynamic Source Routing Sink hole attack
Dynamic Source Routing Sink hole attackDynamic Source Routing Sink hole attack
Dynamic Source Routing Sink hole attackDr Praveen Jain
 
Zone Routing Protocol
Zone Routing ProtocolZone Routing Protocol
Zone Routing Protocolnitss007
 
Comparison between aodv and olsr protocol
Comparison between aodv and olsr protocolComparison between aodv and olsr protocol
Comparison between aodv and olsr protocolMehedi
 
Fisheye State Routing (FSR) - Protocol Overview
Fisheye State Routing (FSR) - Protocol OverviewFisheye State Routing (FSR) - Protocol Overview
Fisheye State Routing (FSR) - Protocol OverviewYoav Francis
 
Routing in Mobile Ad hoc Networks
Routing in Mobile Ad hoc NetworksRouting in Mobile Ad hoc Networks
Routing in Mobile Ad hoc NetworksSayed Chhattan Shah
 
(Paper Presentation) DSDV
(Paper Presentation) DSDV(Paper Presentation) DSDV
(Paper Presentation) DSDVRajesh Piryani
 
Mobile adhoc network
Mobile adhoc networkMobile adhoc network
Mobile adhoc networkSubiya Nadar
 
Routing protocol
Routing protocolRouting protocol
Routing protocolAmzadKhn
 
Performance Comparison of AODV and DSDV Routing Protocols for Ad-hoc Wireless...
Performance Comparison of AODV and DSDV Routing Protocols for Ad-hoc Wireless...Performance Comparison of AODV and DSDV Routing Protocols for Ad-hoc Wireless...
Performance Comparison of AODV and DSDV Routing Protocols for Ad-hoc Wireless...Narendra Singh Yadav
 
Energy Efficient Multipath Routing Protocol For MANET
Energy Efficient Multipath Routing Protocol For MANETEnergy Efficient Multipath Routing Protocol For MANET
Energy Efficient Multipath Routing Protocol For MANETPrasanta kumr Manohari
 
Media Access and Internetworking
Media Access and InternetworkingMedia Access and Internetworking
Media Access and InternetworkingN.Jagadish Kumar
 
Cluster based routing protocol
Cluster based routing protocolCluster based routing protocol
Cluster based routing protocolSudhansu Dash
 

What's hot (20)

Global state routing
Global state routingGlobal state routing
Global state routing
 
Simulation & comparison of aodv & dsr protocol
Simulation & comparison of aodv & dsr protocolSimulation & comparison of aodv & dsr protocol
Simulation & comparison of aodv & dsr protocol
 
Dynamic Source Routing Sink hole attack
Dynamic Source Routing Sink hole attackDynamic Source Routing Sink hole attack
Dynamic Source Routing Sink hole attack
 
Zone Routing Protocol
Zone Routing ProtocolZone Routing Protocol
Zone Routing Protocol
 
DYNAMIC SOURCE ROUTING (DSR)
DYNAMIC SOURCE ROUTING  (DSR)DYNAMIC SOURCE ROUTING  (DSR)
DYNAMIC SOURCE ROUTING (DSR)
 
Dsdv
DsdvDsdv
Dsdv
 
Comparison between aodv and olsr protocol
Comparison between aodv and olsr protocolComparison between aodv and olsr protocol
Comparison between aodv and olsr protocol
 
Dsdv
DsdvDsdv
Dsdv
 
Fisheye State Routing (FSR) - Protocol Overview
Fisheye State Routing (FSR) - Protocol OverviewFisheye State Routing (FSR) - Protocol Overview
Fisheye State Routing (FSR) - Protocol Overview
 
Routing ad hoc network
Routing ad hoc networkRouting ad hoc network
Routing ad hoc network
 
Routing in Mobile Ad hoc Networks
Routing in Mobile Ad hoc NetworksRouting in Mobile Ad hoc Networks
Routing in Mobile Ad hoc Networks
 
(Paper Presentation) DSDV
(Paper Presentation) DSDV(Paper Presentation) DSDV
(Paper Presentation) DSDV
 
AODV Protocol
AODV ProtocolAODV Protocol
AODV Protocol
 
Mobile adhoc network
Mobile adhoc networkMobile adhoc network
Mobile adhoc network
 
Routing protocol
Routing protocolRouting protocol
Routing protocol
 
Performance Comparison of AODV and DSDV Routing Protocols for Ad-hoc Wireless...
Performance Comparison of AODV and DSDV Routing Protocols for Ad-hoc Wireless...Performance Comparison of AODV and DSDV Routing Protocols for Ad-hoc Wireless...
Performance Comparison of AODV and DSDV Routing Protocols for Ad-hoc Wireless...
 
Energy Efficient Multipath Routing Protocol For MANET
Energy Efficient Multipath Routing Protocol For MANETEnergy Efficient Multipath Routing Protocol For MANET
Energy Efficient Multipath Routing Protocol For MANET
 
Media Access and Internetworking
Media Access and InternetworkingMedia Access and Internetworking
Media Access and Internetworking
 
Routing protocols in ad hoc network
Routing protocols in ad hoc networkRouting protocols in ad hoc network
Routing protocols in ad hoc network
 
Cluster based routing protocol
Cluster based routing protocolCluster based routing protocol
Cluster based routing protocol
 

Viewers also liked (6)

Performance analysis of AODV And OLSR
Performance analysis of AODV And OLSRPerformance analysis of AODV And OLSR
Performance analysis of AODV And OLSR
 
Mobile ad-hoc network [autosaved]
Mobile ad-hoc network [autosaved]Mobile ad-hoc network [autosaved]
Mobile ad-hoc network [autosaved]
 
The Internet of Things: Privacy and Security Issues
The Internet of Things: Privacy and Security IssuesThe Internet of Things: Privacy and Security Issues
The Internet of Things: Privacy and Security Issues
 
Internet of Things: Challenges and Issues
Internet of Things: Challenges and IssuesInternet of Things: Challenges and Issues
Internet of Things: Challenges and Issues
 
The 5 elements of IoT security
The 5 elements of IoT securityThe 5 elements of IoT security
The 5 elements of IoT security
 
IoT security (Internet of Things)
IoT security (Internet of Things)IoT security (Internet of Things)
IoT security (Internet of Things)
 

Similar to Manet By Vikas mainanwal

implementation of sinkhole attack on DSR protocol
implementation of sinkhole attack on DSR protocolimplementation of sinkhole attack on DSR protocol
implementation of sinkhole attack on DSR protocolAtul Atalkar
 
a-seminar-on-manet.pptx
a-seminar-on-manet.pptxa-seminar-on-manet.pptx
a-seminar-on-manet.pptxSujit833143
 
Comparison of different MANET routing protocols in wireless ADHOC
Comparison of different MANET routing protocols in wireless ADHOCComparison of different MANET routing protocols in wireless ADHOC
Comparison of different MANET routing protocols in wireless ADHOCAmitoj Kaur
 
Presentation MANETs.pptx
Presentation MANETs.pptxPresentation MANETs.pptx
Presentation MANETs.pptxpriyam219327
 
Presentation MANETs.pptx
Presentation MANETs.pptxPresentation MANETs.pptx
Presentation MANETs.pptxSujit833143
 
introAdhocRoutingRoutingRoutingRouting-new.ppt
introAdhocRoutingRoutingRoutingRouting-new.pptintroAdhocRoutingRoutingRoutingRouting-new.ppt
introAdhocRoutingRoutingRoutingRouting-new.pptDEEPAK948083
 
MOBILE COMPUTING Unit 4.pptx
 MOBILE COMPUTING Unit 4.pptx MOBILE COMPUTING Unit 4.pptx
MOBILE COMPUTING Unit 4.pptxkarthiksmart21
 
Module 3: Routing Protocols and Transport Layer in Ad-hoc Networks
Module 3: Routing Protocols and Transport Layer in Ad-hoc Networks Module 3: Routing Protocols and Transport Layer in Ad-hoc Networks
Module 3: Routing Protocols and Transport Layer in Ad-hoc Networks Sitamarhi Institute of Technology
 
Unit VIII wireless sensor networks
Unit VIII wireless sensor networksUnit VIII wireless sensor networks
Unit VIII wireless sensor networkssangusajjan
 
RoutingProtocols.ppt
RoutingProtocols.pptRoutingProtocols.ppt
RoutingProtocols.pptImXaib
 
Lecture 9 10 .mobile ad-hoc routing protocols
Lecture 9 10 .mobile ad-hoc routing protocolsLecture 9 10 .mobile ad-hoc routing protocols
Lecture 9 10 .mobile ad-hoc routing protocolsChandra Meena
 
Improved aodv based on energy strength and dropping ratio
Improved aodv based on energy strength and dropping ratioImproved aodv based on energy strength and dropping ratio
Improved aodv based on energy strength and dropping ratioIJLT EMAS
 

Similar to Manet By Vikas mainanwal (20)

implementation of sinkhole attack on DSR protocol
implementation of sinkhole attack on DSR protocolimplementation of sinkhole attack on DSR protocol
implementation of sinkhole attack on DSR protocol
 
Mona
MonaMona
Mona
 
a-seminar-on-manet.pptx
a-seminar-on-manet.pptxa-seminar-on-manet.pptx
a-seminar-on-manet.pptx
 
Comparison of different MANET routing protocols in wireless ADHOC
Comparison of different MANET routing protocols in wireless ADHOCComparison of different MANET routing protocols in wireless ADHOC
Comparison of different MANET routing protocols in wireless ADHOC
 
MANET.ppt
MANET.pptMANET.ppt
MANET.ppt
 
Presentation MANETs.pptx
Presentation MANETs.pptxPresentation MANETs.pptx
Presentation MANETs.pptx
 
Presentation MANETs.pptx
Presentation MANETs.pptxPresentation MANETs.pptx
Presentation MANETs.pptx
 
introAdhocRoutingRoutingRoutingRouting-new.ppt
introAdhocRoutingRoutingRoutingRouting-new.pptintroAdhocRoutingRoutingRoutingRouting-new.ppt
introAdhocRoutingRoutingRoutingRouting-new.ppt
 
Lecture 7
 Lecture 7 Lecture 7
Lecture 7
 
UnIT VIII manet
UnIT VIII manetUnIT VIII manet
UnIT VIII manet
 
MOBILE COMPUTING Unit 4.pptx
 MOBILE COMPUTING Unit 4.pptx MOBILE COMPUTING Unit 4.pptx
MOBILE COMPUTING Unit 4.pptx
 
Module 3: Routing Protocols and Transport Layer in Ad-hoc Networks
Module 3: Routing Protocols and Transport Layer in Ad-hoc Networks Module 3: Routing Protocols and Transport Layer in Ad-hoc Networks
Module 3: Routing Protocols and Transport Layer in Ad-hoc Networks
 
Unit VIII wireless sensor networks
Unit VIII wireless sensor networksUnit VIII wireless sensor networks
Unit VIII wireless sensor networks
 
RoutingProtocols.ppt
RoutingProtocols.pptRoutingProtocols.ppt
RoutingProtocols.ppt
 
Lecture 9 10 .mobile ad-hoc routing protocols
Lecture 9 10 .mobile ad-hoc routing protocolsLecture 9 10 .mobile ad-hoc routing protocols
Lecture 9 10 .mobile ad-hoc routing protocols
 
En33838844
En33838844En33838844
En33838844
 
En33838844
En33838844En33838844
En33838844
 
Improved aodv based on energy strength and dropping ratio
Improved aodv based on energy strength and dropping ratioImproved aodv based on energy strength and dropping ratio
Improved aodv based on energy strength and dropping ratio
 
It6601 mobile computing unit 4
It6601 mobile computing unit 4It6601 mobile computing unit 4
It6601 mobile computing unit 4
 
Mobile ad hoc networks (manets)
Mobile ad hoc networks (manets)Mobile ad hoc networks (manets)
Mobile ad hoc networks (manets)
 

More from VIKASH MAINANWAL

Gas Management System by Vikash Mainanwal
Gas Management System by Vikash MainanwalGas Management System by Vikash Mainanwal
Gas Management System by Vikash MainanwalVIKASH MAINANWAL
 
Virus Attack & firewall by vikash mainanwal
Virus Attack & firewall by vikash mainanwalVirus Attack & firewall by vikash mainanwal
Virus Attack & firewall by vikash mainanwalVIKASH MAINANWAL
 
MANETS Routing By Vikash Maianwal
MANETS Routing By Vikash MaianwalMANETS Routing By Vikash Maianwal
MANETS Routing By Vikash MaianwalVIKASH MAINANWAL
 
Asynchronous Message Passing
Asynchronous Message PassingAsynchronous Message Passing
Asynchronous Message PassingVIKASH MAINANWAL
 
Implicit and explicit sequence control with exception handling
Implicit and explicit sequence control with exception handlingImplicit and explicit sequence control with exception handling
Implicit and explicit sequence control with exception handlingVIKASH MAINANWAL
 

More from VIKASH MAINANWAL (6)

Remote Procedure Call
Remote Procedure CallRemote Procedure Call
Remote Procedure Call
 
Gas Management System by Vikash Mainanwal
Gas Management System by Vikash MainanwalGas Management System by Vikash Mainanwal
Gas Management System by Vikash Mainanwal
 
Virus Attack & firewall by vikash mainanwal
Virus Attack & firewall by vikash mainanwalVirus Attack & firewall by vikash mainanwal
Virus Attack & firewall by vikash mainanwal
 
MANETS Routing By Vikash Maianwal
MANETS Routing By Vikash MaianwalMANETS Routing By Vikash Maianwal
MANETS Routing By Vikash Maianwal
 
Asynchronous Message Passing
Asynchronous Message PassingAsynchronous Message Passing
Asynchronous Message Passing
 
Implicit and explicit sequence control with exception handling
Implicit and explicit sequence control with exception handlingImplicit and explicit sequence control with exception handling
Implicit and explicit sequence control with exception handling
 

Recently uploaded

Call US Pooja 9892124323 ✓Call Girls In Mira Road ( Mumbai ) secure service,
Call US Pooja 9892124323 ✓Call Girls In Mira Road ( Mumbai ) secure service,Call US Pooja 9892124323 ✓Call Girls In Mira Road ( Mumbai ) secure service,
Call US Pooja 9892124323 ✓Call Girls In Mira Road ( Mumbai ) secure service,Pooja Nehwal
 
Model Call Girl in Shalimar Bagh Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Shalimar Bagh Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Shalimar Bagh Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Shalimar Bagh Delhi reach out to us at 🔝8264348440🔝soniya singh
 
CALL ON ➥8923113531 🔝Call Girls Saharaganj Lucknow best sexual service
CALL ON ➥8923113531 🔝Call Girls Saharaganj Lucknow best sexual serviceCALL ON ➥8923113531 🔝Call Girls Saharaganj Lucknow best sexual service
CALL ON ➥8923113531 🔝Call Girls Saharaganj Lucknow best sexual serviceanilsa9823
 
CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best Night Fun serviceanilsa9823
 
哪里有卖的《俄亥俄大学学历证书+俄亥俄大学文凭证书+俄亥俄大学学位证书》Q微信741003700《俄亥俄大学学位证书复制》办理俄亥俄大学毕业证成绩单|购买...
哪里有卖的《俄亥俄大学学历证书+俄亥俄大学文凭证书+俄亥俄大学学位证书》Q微信741003700《俄亥俄大学学位证书复制》办理俄亥俄大学毕业证成绩单|购买...哪里有卖的《俄亥俄大学学历证书+俄亥俄大学文凭证书+俄亥俄大学学位证书》Q微信741003700《俄亥俄大学学位证书复制》办理俄亥俄大学毕业证成绩单|购买...
哪里有卖的《俄亥俄大学学历证书+俄亥俄大学文凭证书+俄亥俄大学学位证书》Q微信741003700《俄亥俄大学学位证书复制》办理俄亥俄大学毕业证成绩单|购买...wyqazy
 
9892124323 | Book Call Girls in Juhu and escort services 24x7
9892124323 | Book Call Girls in Juhu and escort services 24x79892124323 | Book Call Girls in Juhu and escort services 24x7
9892124323 | Book Call Girls in Juhu and escort services 24x7Pooja Nehwal
 
Chandigarh Call Girls Service ❤️🍑 9115573837 👄🫦Independent Escort Service Cha...
Chandigarh Call Girls Service ❤️🍑 9115573837 👄🫦Independent Escort Service Cha...Chandigarh Call Girls Service ❤️🍑 9115573837 👄🫦Independent Escort Service Cha...
Chandigarh Call Girls Service ❤️🍑 9115573837 👄🫦Independent Escort Service Cha...Niamh verma
 

Recently uploaded (7)

Call US Pooja 9892124323 ✓Call Girls In Mira Road ( Mumbai ) secure service,
Call US Pooja 9892124323 ✓Call Girls In Mira Road ( Mumbai ) secure service,Call US Pooja 9892124323 ✓Call Girls In Mira Road ( Mumbai ) secure service,
Call US Pooja 9892124323 ✓Call Girls In Mira Road ( Mumbai ) secure service,
 
Model Call Girl in Shalimar Bagh Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Shalimar Bagh Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Shalimar Bagh Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Shalimar Bagh Delhi reach out to us at 🔝8264348440🔝
 
CALL ON ➥8923113531 🔝Call Girls Saharaganj Lucknow best sexual service
CALL ON ➥8923113531 🔝Call Girls Saharaganj Lucknow best sexual serviceCALL ON ➥8923113531 🔝Call Girls Saharaganj Lucknow best sexual service
CALL ON ➥8923113531 🔝Call Girls Saharaganj Lucknow best sexual service
 
CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best Night Fun service
 
哪里有卖的《俄亥俄大学学历证书+俄亥俄大学文凭证书+俄亥俄大学学位证书》Q微信741003700《俄亥俄大学学位证书复制》办理俄亥俄大学毕业证成绩单|购买...
哪里有卖的《俄亥俄大学学历证书+俄亥俄大学文凭证书+俄亥俄大学学位证书》Q微信741003700《俄亥俄大学学位证书复制》办理俄亥俄大学毕业证成绩单|购买...哪里有卖的《俄亥俄大学学历证书+俄亥俄大学文凭证书+俄亥俄大学学位证书》Q微信741003700《俄亥俄大学学位证书复制》办理俄亥俄大学毕业证成绩单|购买...
哪里有卖的《俄亥俄大学学历证书+俄亥俄大学文凭证书+俄亥俄大学学位证书》Q微信741003700《俄亥俄大学学位证书复制》办理俄亥俄大学毕业证成绩单|购买...
 
9892124323 | Book Call Girls in Juhu and escort services 24x7
9892124323 | Book Call Girls in Juhu and escort services 24x79892124323 | Book Call Girls in Juhu and escort services 24x7
9892124323 | Book Call Girls in Juhu and escort services 24x7
 
Chandigarh Call Girls Service ❤️🍑 9115573837 👄🫦Independent Escort Service Cha...
Chandigarh Call Girls Service ❤️🍑 9115573837 👄🫦Independent Escort Service Cha...Chandigarh Call Girls Service ❤️🍑 9115573837 👄🫦Independent Escort Service Cha...
Chandigarh Call Girls Service ❤️🍑 9115573837 👄🫦Independent Escort Service Cha...
 

Manet By Vikas mainanwal

  • 1. Mobile Ad Hoc Networks Subject – Mobile Computing Course – M.Tech. CSE (Networking Systems) by Vikash MainanwaI Submitted to Rajdeep Singh Department of Computer Science & Engineering Punjab Institute of Technology, Kapurthala (PTU Main Campus )
  • 2. Outline  Introduction  Medium Access Control  Routing (unicast) – Reactive Protocols – Proactive Protocols – Hybrid Protocols  Transport Issues  Summary and Conclusions
  • 3. Wireless Networks  Need: Access computing and communication services, on the move  Infrastructure-based Networks – traditional cellular systems (base station infrastructure)  Wireless LANs – Infrared (IrDA) or radio links (Wavelan) – very flexible within the reception area; ad-hoc networks possible – low bandwidth compared to wired networks (1-10 Mbit/s)  Ad hoc Networks – useful when infrastructure not available, impractical, or expensive – military applications, rescue, home networking
  • 4. Cellular Wireless  Single hop wireless connectivity to the wired world – Space divided into cells – A base station is responsible to communicate with hosts in its cell – Mobile hosts can change cells while communicating – Hand-off occurs when a mobile host starts communicating via a new base station
  • 5. Multi-Hop Wireless  May need to traverse multiple links to reach destination  Mobility causes route changes
  • 6. Mobile Ad Hoc Networks (MANET)  Host movement frequent  Topology change frequent  No cellular infrastructure. Multi-hop wireless links.  Data must be routed via intermediate nodes. A B A B
  • 7. Why Ad Hoc Networks ?  Setting up of fixed access points and backbone infrastructure is not always viable – Infrastructure may not be present in a disaster area or war zone – Infrastructure may not be practical for short-range radios; Bluetooth (range ~ 10m)  Ad hoc networks: – Do not need backbone infrastructure support – Are easy to deploy – Useful when infrastructure is absent, destroyed or impractical
  • 9. Traditional Routing  A routing protocol sets up a routing table in routers  A node makes a local choice depending on global topology
  • 10. Distance-vector & Link-state Routing  Both assume router knows – address of each neighbor – cost of reaching each neighbor  Both allow a router to determine global routing information by talking to its neighbors  Distance vector - router knows cost to each destination  Link state - router knows entire network topology and computes shortest path
  • 11. Distance Vector Routing: Example   2 
  • 13. Routing and Mobility  Finding a path from a source to a destination  Issues – Frequent route changes • amount of data transferred between route changes may be much smaller than traditional networks – Route changes may be related to host movement – Low bandwidth links  Goal of routing protocols – decrease routing-related overhead – find short routes – find “stable” routes (despite mobility)
  • 15. Unicasting  The routing we have discussed so far is mainly point-to- point routing.  A source node wants to send a message to a destination node.
  • 16. Multicasting  However, in many situations a node wants to send a message to a group of nodes in the network.  This is called multicasting and the group is called a multicast group.
  • 17. Broadcasting  Broadcasting is a special case of multicasting when all the nodes in the network is in the multicast group.
  • 18. Unicast Routing Protocols  Many protocols have been proposed  Some specifically invented for MANET  Others adapted from protocols for wired networks  No single protocol works well in all environments – some attempts made to develop adaptive/hybrid protocols  Standardization efforts in IETF – MANET, MobileIP working groups – http://www.ietf.org
  • 19. Routing Protocols  Proactive protocols – Traditional distributed shortest-path protocols – Maintain routes between every host pair at all times – Based on periodic updates; High routing overhead – Example: DSDV (destination sequenced distance vector)  Reactive protocols – Determine route if and when needed – Source initiates route discovery – Example: DSR (dynamic source routing)  Hybrid protocols – Adaptive; Combination of proactive and reactive – Example : ZRP (zone routing protocol)
  • 20. Protocol Trade-offs  Proactive protocols – Always maintain routes – Little or no delay for route determination – Consume bandwidth to keep routes up-to-date – Maintain routes which may never be used  Reactive protocols – Lower overhead since routes are determined on demand – Significant delay in route determination – Employ flooding (global search) – Control traffic may be bursty  Which approach achieves a better trade-off depends on the traffic and mobility patterns
  • 22. Dynamic Source Routing (DSR) [Johnson96]  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 Route Request (RREQ)  Each node appends own identifier when forwarding RREQ
  • 23. Route Discovery in DSR B A S E F H J D C G I K Z Y Represents a node that has received RREQ for D from S M N L
  • 24. Route Discovery in DSR B A S E F H J D C G I K Represents transmission of RREQ Z Y Broadcast transmission M N L [S] [X,Y] Represents list of identifiers appended to RREQ
  • 25. Route Discovery in DSR B A S E F H J D C G I K • Node H receives packet RREQ from two neighbors: potential for collision Z Y M N L [S,E] [S,C]
  • 26. Route Discovery in DSR B A S E F H J D C G I K • Node C receives RREQ from G and H, but does not forward it again, because node C has already forwarded RREQ once Z Y M N L [S,C,G] [S,E,F]
  • 27. Route Discovery in DSR B A S E F H J D C G I K Z Y M • Nodes J and K both broadcast RREQ to node D • Since nodes J and K are hidden from each other, their transmissions may collide N L [S,C,G,K] [S,E,F,J]
  • 28. Route Discovery in DSR B A S E F H J D C G I K Z Y • Node D does not forward RREQ, because node D is the intended target of the route discovery M N L [S,E,F,J,M]
  • 29. 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 route from S to D on which RREQ was received by node D
  • 30. Route Reply in DSR B A S E F H J D C G I K Z Y M N L RREP [S,E,F,J,D] Represents RREP control message
  • 31. Dynamic Source Routing (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
  • 32. Data Delivery in DSR B A S E F H J D C G I K Z Y M N L DATA [S,E,F,J,D] Packet header size grows with route length
  • 33. DSR Optimization: Route Caching  Each node caches a new route it learns by any means  When node S finds route [S,E,F,J,D] to node D, node S also learns route [S,E,F] to node F  When node K receives Route Request [S,C,G] destined for node, node K learns route [K,G,C,S] to node S  When node F forwards Route Reply RREP [S,E,F,J,D], node F learns route [F,J,D] to node D  When node E forwards Data [S,E,F,J,D] it learns route [E,F,J,D] to node D  A node may also learn a route when it overhears Data  Problem: Stale caches may increase overheads
  • 34. Dynamic Source Routing: Advantages  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
  • 35. Dynamic Source Routing: Disadvantages  Packet header size grows with route length due to source routing  Flood of route requests may potentially reach all nodes in the network  Potential collisions between route requests propagated by neighboring nodes – insertion of random delays before forwarding RREQ  Increased contention if too many route replies come back due to nodes replying using their local cache – Route Reply Storm problem  Stale caches will lead to increased overhead
  • 36. Location-Aided Routing (LAR) [Ko98Mobicom]  Exploits location information to limit scope of route request flood – Location information may be obtained using GPS  Expected Zone is determined as a region that is expected to hold the current location of the destination – Expected region determined based on potentially old location information, and knowledge of the destination’s speed  Route requests limited to a Request Zone that contains the Expected Zone and location of the sender node
  • 37. Request Zone  Define a Request Zone  LAR is same as flooding, except that only nodes in request zone forward route request  Smallest rectangle including S and expected zone for D S Request Zone D Expected Zone x Y
  • 38. Location Aided Routing (LAR)  Advantages – reduces the scope of route request flood – reduces overhead of route discovery  Disadvantages – Nodes need to know their physical locations – Does not take into account possible existence of obstructions for radio transmissions
  • 39. Ad Hoc On-Demand Distance Vector Routing (AODV) [Perkins99Wmcsa]  DSR includes source routes in packet headers  Resulting large headers can sometimes degrade performance – particularly when data contents of a packet are small  AODV attempts to improve on DSR by maintaining routing tables at the nodes, so that data packets do not have to contain routes  AODV retains the desirable feature of DSR that routes are maintained only between nodes which need to communicate
  • 40. AODV  Route Requests (RREQ) are forwarded in a manner similar to DSR  When a node re-broadcasts a Route Request, it sets up a reverse path pointing towards the source – AODV assumes symmetric (bi-directional) links  When the intended destination receives a Route Request, it replies by sending a Route Reply (RREP)  Route Reply travels along the reverse path set-up when Route Request is forwarded
  • 43. Route Requests in AODV B A S E F H J D C G I K Z Y Represents a node that has received RREQ for D from S M N L
  • 44. Route Requests in AODV B A S E F H J D C G I K Represents transmission of RREQ Z Y Broadcast transmission M N L
  • 45. Route Requests in AODV B A S E F H J D C G I K Represents links on Reverse Path Z Y M N L
  • 46. Reverse Path Setup in AODV B A S E F H J D C G I K • Node C receives RREQ from G and H, but does not forward it again, because node C has already forwarded RREQ once Z Y M N L
  • 47. Reverse Path Setup in AODV B A S E F H J D C G I K Z Y M N L
  • 48. Reverse Path Setup in AODV B A S E F H J D C G I K Z Y • Node D does not forward RREQ, because node D is the intended target of the RREQ M N L
  • 49. Forward Path Setup in AODV B A S E F H J D C G I K Z Y M N L Forward links are setup when RREP travels along the reverse path Represents a link on the forward path
  • 50. Route Request and Route Reply  Route Request (RREQ) includes the last known sequence number for the destination  An intermediate node may also send a Route Reply (RREP) provided that it knows a more recent path than the one previously known to sender  Intermediate nodes that forward the RREP, also record the next hop to destination  A routing table entry maintaining a reverse path is purged after a timeout interval  A routing table entry maintaining a forward path is purged if not used for a active_route_timeout interval
  • 51. Link Failure  A neighbor of node X is considered active for a routing table entry if the neighbor sent a packet within active_route_timeout interval which was forwarded using that entry  Neighboring nodes periodically exchange hello message  When the next hop link in a routing table entry breaks, all active neighbors are informed  Link failures are propagated by means of Route Error (RERR) messages, which also update destination sequence numbers
  • 52. Route Error  When node X is unable to forward packet P (from node S to node D) on link (X,Y), it generates a RERR message  Node X increments the destination sequence number for D cached at node X  The incremented sequence number N is included in the RERR  When node S receives the RERR, it initiates a new route discovery for D using destination sequence number at least as large as N  When node D receives the route request with destination sequence number N, node D will set its sequence number to N, unless it is already larger than N
  • 53. AODV: Summary  Routes need not be included in packet headers  Nodes maintain routing tables containing entries only for routes that are in active use  At most one next-hop per destination maintained at each node – DSR may maintain several routes for a single destination  Sequence numbers are used to avoid old/broken routes  Sequence numbers prevent formation of routing loops  Unused routes expire even if topology does not change
  • 54. Other Protocols  Many variations of using control packet flooding for route discovery  Power-Aware Routing [Singh98Mobicom] – Assign a weight to each link: function of energy consumed when transmitting a packet on that link, as well as the residual energy level – Modify DSR to incorporate weights and prefer a route with the smallest aggregate weight  Associativity-Based Routing (ABR) [Toh97] – Only links that have been stable for some minimum duration are utilized – Nodes increment the associativity ticks of neighbors by using periodic beacons  Signal Stability Based Adaptive Routing (SSA) [Dube97] – A node X re-broadcasts a Route Request received from Y only if the (X,Y) link has a strong signal stability – Signal stability is evaluated as a moving average of the signal strength of packets received on the link in recent past
  • 57. Link Reversal Algorithm [Gafni81] A FB C E G D
  • 58. Link Reversal Algorithm A FB C E G D Maintain a directed acyclic graph (DAG) for each destination, with the destination being the only sink This DAG is for destination node D Links are bi-directional But algorithm imposes logical directions on them
  • 59. Link Reversal Algorithm Link (G,D) broke A FB C E G D Any node, other than the destination, that has no outgoing links reverses all its incoming links. Node G has no outgoing links
  • 60. Link Reversal Algorithm A FB C E G D Now nodes E and F have no outgoing links Represents a link that was reversed recently
  • 61. Link Reversal Algorithm A FB C E G D Now nodes B and G have no outgoing links Represents a link that was reversed recently
  • 62. Link Reversal Algorithm A FB C E G D Now nodes A and F have no outgoing links Represents a link that was reversed recently
  • 63. Link Reversal Algorithm A FB C E G D Now all nodes (other than destination D) have an outgoing link Represents a link that was reversed recently
  • 64. Link Reversal Algorithm A FB C E G D DAG has been restored with only the destination as a sink
  • 65. Link Reversal Algorithm  Attempts to keep link reversals local to where the failure occurred – But this is not guaranteed  When the first packet is sent to a destination, the destination oriented DAG is constructed  The initial construction does result in flooding of control packets
  • 66. Link Reversal Algorithm  The previous algorithm is called a full reversal method since when a node reverses links, it reverses all its incoming links  Partial reversal method [Gafni81]: A node reverses incoming links from only those neighbors who have not themselves reversed links “previously” – If all neighbors have reversed links, then the node reverses all its incoming links – “Previously” at node X means since the last link reversal done by node X
  • 67. Link Reversal Methods  Advantages – Link reversal methods attempt to limit updates to routing tables at nodes in the vicinity of a broken link • Partial reversal method tends to be better than full reversal method – Each node may potentially have multiple routes to a destination  Disadvantages – Need a mechanism to detect link failure • hello messages may be used – If network is partitioned, link reversals continue indefinitely
  • 68. Temporally-Ordered Routing Algorithm (TORA) [Park97Infocom]  Route optimality is considered of secondary importance; longer routes may be used  At each node, a logically separate copy of TORA is run for each destination, that computes the height of the node with respect to the destination  Height captures number of hops and next hop  Route discovery is by using query and update packets  TORA modifies the partial link reversal method to be able to detect partitions  When a partition is detected, all nodes in the partition are informed, and link reversals in that partition cease
  • 69. Asymmetric Algorithms  Clusterhead Gateway Switch Routing (CGSR) – All nodes within a cluster communicate with a clusterhead – Routing uses a hierarchical clusterhead-to-gateway approach  Core-Extraction Distributed Ad Hoc Routing (CEDAR) [Sivakumar99] – A subset of nodes in the network is identified as the core – Each node in the network must be adjacent to at least one node in the core – Each core node determines paths to nearby core nodes by means of a localized broadcast
  • 70. CGSR
  • 71. CEDAR B A C E JS K D F H G A core node Node E is the dominator for nodes D, F and K
  • 73. Destination-Sequenced Distance-Vector (DSDV) [Perkins94Sigcomm]  Each node maintains a routing table which stores – next hop, cost metric towards each destination – a sequence number that is created by the destination itself  Each node periodically forwards routing table to neighbors – Each node increments and appends its sequence number when sending its local routing table  Each route is tagged with a sequence number; routes with greater sequence numbers are preferred  Each node advertises a monotonically increasing even sequence number for itself  When a node decides that a route is broken, it increments the sequence number of the route and advertises it with infinite metric  Destination advertises new sequence number
  • 74. Destination-Sequenced Distance-Vector (DSDV)  When X receives information from Y about a route to Z – Let destination sequence number for Z at X be S(X), S(Y) is sent from Y – If S(X) > S(Y), then X ignores the routing information received from Y – If S(X) = S(Y), and cost of going through Y is smaller than the route known to X, then X sets Y as the next hop to Z – If S(X) < S(Y), then X sets Y as the next hop to Z, and S(X) is updated to equal S(Y) X Y Z
  • 75. Optimized Link State Routing (OLSR) [Jacquet00ietf]  Nodes C and E are multipoint relays of node A – Multipoint relays of A are its neighbors such that each two-hop neighbor of A is a one-hop neighbor of one multipoint relay of A – Nodes exchange neighbor lists to know their 2-hop neighbors and choose the multipoint relays A B F C D E H G K J Node that has broadcast state information from A
  • 76. Optimized Link State Routing (OLSR)  Nodes C and E forward information received from A  Nodes E and K are multipoint relays for node H  Node K forwards information received from H A B F C D E H G K J Node that has broadcast state information from A
  • 78. Zone Routing Protocol (ZRP) [Haas98]  ZRP combines proactive and reactive approaches  All nodes within hop distance at most d from a node X are said to be in the routing zone of node X  All nodes at hop distance exactly d are said to be peripheral nodes of node X’s routing zone  Intra-zone routing: Proactively maintain routes to all nodes within the source node’s own zone.  Inter-zone routing: Use an on-demand protocol (similar to DSR or AODV) to determine routes to outside zone.
  • 79. Zone Routing Protocol (ZRP) Radius of routing zone = 2