Proactive vs. Reactive

Содержание

Слайд 2

Reactive Protocols

Dynamic Source Routing (DSR)
Ad Hoc On-Demand Distance Vector (AODV)
Temporally Ordered Routing

Reactive Protocols Dynamic Source Routing (DSR) Ad Hoc On-Demand Distance Vector (AODV) Temporally Ordered Routing Algorithm(TORA)
Algorithm(TORA)

Слайд 3

Dynamic Source Routing (DSR)
When S sends a data packet to D,

Dynamic Source Routing (DSR) When S sends a data packet to D,
the entire route is included in the packet header
Intermediate nodes use the source route embedded in the packet’s header to determine to whom the packet should be forwarded

Слайд 4

Two basic mechanisms
Route Discovery
Route Request (RREQ)
Route Reply (RREP)
Route Maintenance
Route Error (RERR)
Key

Two basic mechanisms Route Discovery Route Request (RREQ) Route Reply (RREP) Route
optimization
Each node maintains a route cache

DSR

Слайд 5

Route Discovery
Every route request packet (RREQ) contains

Route Discovery Every route request packet (RREQ) contains Each node maintains a
record, request ID>
Each node maintains a list of the < Src address, request ID>
When a node S receives a RREQ
Discards the route request packet
if < Src ID, request ID> is in its list
Return a route reply packet which contains a route from S to D
If D is dest
If D has an entry in its route cache for a route to dest
Append itself address to the route record in RREQ and re-broadcast RREQ

Слайд 6

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

Route Discovery in DSR B A S E F H J D
from S

M

N

L

Слайд 7

Route Discovery in DSR

B

A

S

E

F

H

J

D

C

G

I

K

Represents transmission of RREQ

Z

Y

Broadcast

M

N

L

[S]

[X,Y] Represents route record stored in

Route Discovery in DSR B A S E F H J D
RREQ

Слайд 8

Route Discovery in DSR

B

A

S

E

F

H

J

D

C

G

I

K

Node H receives packet RREQ from two neighbors:

Route Discovery in DSR B A S E F H J D
potential for collision

Z

Y

M

N

L

[S,E]

[S,C]

[S,B]

Слайд 9

Route Discovery in DSR

B

A

S

E

F

H

J

D

C

G

I

K

C receives RREQ from G and H, but

Route Discovery in DSR B A S E F H J D
does not forward
it again, because C has already forwarded RREQ once

Z

Y

M

N

L

[S,C,G]

[S,E,F]

[S,B,A]

[S,B,H]

Слайд 10

Route Discovery in DSR

B

A

S

E

F

H

J

D

C

G

I

K

Z

Y

M

J and K both broadcast RREQ to D

Route Discovery in DSR B A S E F H J D
Their transmissions may collide at D

N

L

[S,C,G,K]

[S,E,F,J]

[S,B,H,I]

Слайд 11

Route Discovery in DSR

B

A

S

E

F

H

J

D

C

G

I

K

Z

Y

D does not forward RREQ, because D is the

Route Discovery in DSR B A S E F H J D
intended target

M

N

L

[S,E,F,J,M]

Слайд 12

Route Reply in DSR

Destination D on receiving the first RREQ, sends a

Route Reply in DSR Destination D on receiving the first RREQ, sends
Route Reply (RREP)
RREP includes the route from S to D
Route Reply can be sent by reversing the route in Route Request (RREQ)
If links are bi-directional

Слайд 13

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

Route Reply in DSR B A S E F H J D

Слайд 14

An Example of Route Maintenance

J sends a route error to S

An Example of Route Maintenance J sends a route error to S
along route J-F-E-S when it finds link [J-D] broken
Nodes hearing RERR update their route cache to remove all invalid routes related with link J-D

Route Error Packet : RERR

Слайд 15

Use of Route Caching Can Speed up Route Discovery

When node Z sends

Use of Route Caching Can Speed up Route Discovery When node Z
a route request for node C, node K sends back a route reply [Z,K,G,C] to node Z using a locally cached route

Слайд 16

Use of Route Caching Can Reduce Propagation of Route Requests

Route Replies (RREP)

Use of Route Caching Can Reduce Propagation of Route Requests Route Replies
from node K and D limit flooding of RREQ.

Слайд 17

DSR

The diameter of an ad-hoc network will not be too larger
Packet header

DSR The diameter of an ad-hoc network will not be too larger
will be bigger than payload if route is very longer

Слайд 18

Ad Hoc On-Demand Distance Vector Routing (AODV) Protocol

The Ad hoc On-Demand Distance

Ad Hoc On-Demand Distance Vector Routing (AODV) Protocol The Ad hoc On-Demand
Vector protocol is both an on-demand and a table-driven protocol.
The packet size in AODV is uniform unlike DSR. Unlike DSDV, there is no need for system-wide broadcasts due to local changes.

Слайд 19

AODV
Each route has a lifetime after which the route expires if it

AODV Each route has a lifetime after which the route expires if
is not used.
A route is maintained only when it is used and hence old and expired routes are never used.

Слайд 20

AODV

DSR includes source routes in packet headers
Resulting large headers can sometimes degrade

AODV DSR includes source routes in packet headers Resulting large headers can
performance.
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.

Слайд 21

AODV

Like DSR, this protocols uses two types of messages, route request (RREQ)

AODV Like DSR, this protocols uses two types of messages, route request
and route reply (RREP).
Like DSDV, we use sequence numbers to keep track of recent routes. Every time a node sends a new message, it uses a new sequence number which increases monotonically.

Слайд 22

Route Request (RREQ) Message

When node S wants to send a message to

Route Request (RREQ) Message When node S wants to send a message
node D, S searches its route table for a route to D.
If there is no route, S initiates a RREQ message with the following components :
The IP addresses of S and D
The current sequence number of S and the last known sequence number of D
A broadcast ID from S. This broadcast ID is incremented each time S sends a RREQ message.

Слайд 23

Processing a RREQ Message

The pair of the source

Processing a RREQ Message The pair of the source S forms a
S forms a unique identifier for the RREQ.
Suppose a node P receives the RREQ from S. P first checks whether it has received this RREQ before.
Each node stores the pairs for all the recent RREQs it has received.

Слайд 24

Processing a RREQ Message

If P has seen this RREQ from S already,

Processing a RREQ Message If P has seen this RREQ from S
P discards the RREQ. Otherwise, P processes the RREQ :
P sets up a reverse route entry in its route table for the source S.
This entry contains the IP address and current sequence number of S, number of hops to S and the address of the neighbour from whom P got the RREQ.

Слайд 25

Lifetime of a Route-Table Entry

A lifetime is associated with the entry in

Lifetime of a Route-Table Entry A lifetime is associated with the entry
the route table.
This is an important feature of AODV. If a route entry is not used within the specified lifetime, it is deleted.
A route is maintained only when it is used. A route that is unused for a long time is assumed to be stale.

Слайд 26

Handling More than one RREP

An intermediate node P may receive more than

Handling More than one RREP An intermediate node P may receive more
one RREP for the same RREQ.
P forwards the first RREP it receives and forwards a second RREP later only if :
The later RREP contains a greater sequence number for the destination, or
The hop-count to the destination is smaller in the later RREP
Otherwise, it does not forward the later RREPs. This reduces the number of RREPs propagating towards the source.

Слайд 27

Route Requests in AODV

B

A

E

F

H

J

C

G

I

K

Z

Y

Represents a node that has received RREQ for D

Route Requests in AODV B A E F H J C G
from S

M

N

L

D

S

Слайд 28

Route Requests in AODV

B

A

E

F

H

J

C

G

I

K

Represents transmission of RREQ

Z

Y

Broadcast transmission

M

N

L

S

D

Route Requests in AODV B A E F H J C G

Слайд 29

Route Requests in AODV

B

A

E

F

H

J

C

G

I

K

Represents links on Reverse Path

Z

Y

M

N

L

S

D

Route Requests in AODV B A E F H J C G

Слайд 30

Reverse Path Setup in AODV

B

A

E

F

H

J

C

G

I

K

Node C receives RREQ from G and

Reverse Path Setup in AODV B A E F H J C
H, but does not forward
it again, because node C has already forwarded RREQ once

Z

Y

M

N

L

S

D

Слайд 31

Reverse Path Setup in AODV

B

A

E

F

H

J

C

G

I

K

Z

Y

M

N

L

S

D

Reverse Path Setup in AODV B A E F H J C

Слайд 32

Reverse Path Setup in AODV

B

A

E

F

H

J

C

G

I

K

Z

Y

Node D does not forward RREQ, because

Reverse Path Setup in AODV B A E F H J C
node D
is the intended target of the RREQ

M

N

L

S

D

Слайд 33

Forward Path Setup in AODV

B

A

E

F

H

J

C

G

I

K

Z

Y

M

N

L

Forward links are setup when RREP travels along
the

Forward Path Setup in AODV B A E F H J C
reverse path
Represents a link on the forward path

S

D

Слайд 34

Route Maintenance

Once a unicast route has been established between two nodes S

Route Maintenance Once a unicast route has been established between two nodes
and D, it is maintained as long as S (source node) needs the route.
If S moves during an active session, it can reinitiate route discovery to establish a new route to D.
When D or an intermediate node moves, a route error (RERR) message is sent to S.

Слайд 35

Route Maintenance

The link from node 3 to D is broken as 3

Route Maintenance The link from node 3 to D is broken as
has moved away to a position 3´.
Node 2 sends a RERR message to 1 and 1 sends the message in turn to S.
S initiates a route discovery if it still needs the route to D.

Слайд 36

Temporally Ordered Routing Algorithm(TORA)

Based on a destination oriented Directed Acyclic Graph (DAG)

Temporally Ordered Routing Algorithm(TORA) Based on a destination oriented Directed Acyclic Graph

The protocol has three basic functions :
Route creation (QRY)
Route maintenance (UPD)
Route erasure (CLR)
Имя файла: Proactive-vs.-Reactive-.pptx
Количество просмотров: 170
Количество скачиваний: 1