Computer NetworksTU Board 2080
Differentiate between link state and distance vector routing.
5Answer
Both are dynamic routing algorithms, but they share different information with different routers.
| Distance vector routing | Link state routing |
|---|---|
| Each router shares its whole routing table (its distances to every destination). | Each router shares information about its own links (its directly connected neighbours and their costs). |
| Shared only with directly connected neighbours. | Flooded to all routers in the network. |
| Updates are sent periodically (e.g. every 30 s in RIP). | Updates are sent only when a link changes. |
| Uses the Bellman–Ford algorithm. | Each router builds the full topology and runs Dijkstra's shortest path algorithm. |
| Each router knows only the next hop and distance ("routing by rumour"). | Each router has a complete map of the network. |
| Slow convergence; suffers from the count-to-infinity problem. | Fast convergence; no count-to-infinity problem. |
| Less CPU and memory needed; simple to configure. | More CPU and memory needed; more complex. |
| Suitable for small networks. | Suitable for large networks. |
| Examples: RIP, IGRP. | Examples: OSPF, IS-IS. |
Discussion
Loading…
More Computer Networks questions
What are the advantages of layered architecture in network communication? Explain the TCP/IP protocol stack in detail.TU Board 208210What are the services provided by the Transport Layer? Explain the working principle of the Distance Vector Algorithm with a suitable example.TU Board 208210Differentiate between IPV4 and IPV6 protocol in brief. Explain Cyclic Redundancy Check with a suitable numerical example.TU Board 208210How is a connection established in TCP protocol using 3 way handshaking? Explain.TU Board 20825Write the subnet ID, broadcast address and address range of each subnet if you divide a class C network 193.168.2.0/24 into 8 different subnets. What is the…TU Board 20825What is the major purpose of DNS? Explain how DNS resolves a domain name to an IP address.TU Board 20825