CN Report
CN Report
CN Report
1
ensures network resilience and minimizes downtime, enhancing overall network
reliability.
Distance Vector Routing protocols support incremental updates, whereby only
changes to routing information are transmitted rather than the entire routing table.
This feature reduces network overhead and conserves bandwidth, especially in
scenarios with frequent topology changes or limited bandwidth availability.
A
/\
/ \
/ \
B _______ C
\ /
\ /
\/
D
Step 1: Initialization
At the beginning, each router initializes its routing table, containing entries for
directly connected neighbors and infinity (∞) for all other destinations. For example,
Router A's initial routing table may look like this:
2
DESTINATION NEXT HOP COST
B B 1
C C 1
D D ∞
3
Step 5: Convergence
The process of exchanging and updating routing tables continues until all routers
have consistent routing information. Eventually, the network converges to a stable
state where each router has optimal paths to reach all destinations. This
diagrammatic example illustrates the iterative nature of Distance Vector Routing,
where routers collaborate to determine the best paths for data transmission based on
distance metrics. Final Tables stand as below.
Router A:
DEST NEXT COST
B B 1
C C 1
D B 2
Router B:
DEST NEXT COST
A A 1
C C 1
D C 2
Router C:
DEST NEXT COST
A A 1
B B 1
D D 1
Router D:
DEST NEXT COST
A B 2
B C 2
C C 1
4
CHAPTER 4: PROTOCOLS OF DVR
1. RIP (Routing Information Protocol):
Routing Metrics: RIP uses hop count as its routing metric, where the number of
hops between routers represents the distance to a destination network. It assumes
that the shortest path to a destination is the one with the fewest hops.
Update Mechanisms: RIP exchanges routing updates periodically (every 30
seconds by default) or in response to changes in the network topology. It utilizes
broadcast updates, where routers broadcast their entire routing tables to neighboring
routers.
Compatibility: RIP is compatible with small to medium-sized networks and is
widely supported by various router vendors. It is suitable for homogeneous network
environments with relatively stable topologies.
Scalability: RIP has limitations in scalability due to its reliance on hop count as the
metric and the frequency of periodic updates. In large networks, RIP's convergence
time may be slow, and its routing table size can become unwieldy.
6
Outcome: The deployment of RIP enables the small office to establish reliable
connectivity between its internal resources, such as workstations, printers, and
servers. The network operates efficiently, with RIP dynamically adapting to changes
in network topology, ensuring seamless communication among devices.
CONCLUSION
Distance Vector Routing is a basic concept in computer networks, offering a
decentralized way to route computation and packet forwarding. Despite its
limitations, Distance Vector Routing protocols remain relevant and widely used in
diverse networking environments. By understanding the principles, protocols, and
applications of Distance Vector Routing, network engineers can design and manage
efficient and reliable communication networks.