close Warning: BrowserModule failed with ConfigurationError: Look in the Trac log for more information.

Changes between Version 1 and Version 2 of OverSimKbrRouting


Ignore:
Timestamp:
Sep 22, 2008, 12:19:22 PM (16 years ago)
Author:
Ingmar Baumgart
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OverSimKbrRouting

    v1 v2  
    33
    44 * '''iterative''': The originator starts a lookup by sending one (or multiple) !FindNode RPCs to the closest next hop
    5    stored in the local routing table. The received !FindNodeResponse contains better next hop nodes, which are successively queried by the originator until a !FindNodeResponse with set '''isSibling''' bit is received. Finally the message is directly sent to this sibling (= "closest node").
    6  * '''exhaustive-iterative'''
    7  * '''semi-recursive'''
    8  * '''full-recursive'''
    9  * '''source-routing-recursive'''
     5   stored in the local routing table. The received !FindNodeResponse contains better next hop nodes, which are successively queried by the originator until a !FindNodeResponse with set ''isSibling'' bit is received. Finally the message is directly sent to this sibling (= "closest node").
     6 * '''exhaustive-iterative''': This is similar to the ''iterative'' case above, but the ''isSibling'' bit is ignored. The originator instead continues to query all closest nodes, until no better nodes are returned. This increases bandwidth consumption and lookup latency, but is more secure.
     7 * '''semi-recursive''': The originator encapsulates the message in a ''!BaseRouteMessage'' and forwards it to the
     8closest next hop stored in the local routing table. The message get forwarded recursively until the sibling node (= "closest node") for the destination key is reached.
     9 * '''full-recursive''': ...
     10 * '''source-routing-recursive''': ...
    1011