Question

can somebody please help me with the following two questions: List and explain three differences between...

can somebody please help me with the following two questions:

List and explain three differences between distance vector routing and link state

routing. Explain some problems encountered with distance vector and link state

routing.

2. In case a change occurs in the network (for example: a node/communication link

comes up or goes down), which routing approach converges faster and why?

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Solution 1---

A] Distance Vector Routing:-

  • It contains 2 factors-

1) Vector or Direction to reach destination.

2) Distance or Metric of destonation.

  • The directly connected neighbours exchange Routing information between themselves.
  • A router knows to which neighnour router to route with but the router is unawared from where the neighbour has learned the route.
  • The beyond neighbours can't be seen by the router.
  • The Distance Vector Routing uses Bellman Ford algorithm.
  • It is sometimes called as "Routing by Rumor".
  • The Distance Vector Routing uses methods like Poison Reverse and Split Horizon to avoid routing loops.

B] Link State Routing:-

  • This routing requires information about all the routers, reachable paths to all other routers in the network.
  • All the routers posses a synchronized copy of area's link state database Link State information is flooded throughout the Link state domain(an area in IS-IS or OSPF).
  • For all known routes, each router with itself as a root, constructs its own relative Shortest-Path tree from this common database.
  • The Link State routing uses Djikstra's algorithm.
Distance Vector Routing Link State Routing
1) Less Bandwidth required. 1) More Bandwidth required.
2) Implemented using Bellman Ford algorithm. 2) Implemented using Djikstra's algorithm.
3) Less Traffic. 3) More Traffic.
4) Slow in Convergence. 4) Fatser in Convergence.
5) Problem of Persistent Looping. 5) No Problem of Persistence Looping.
6) Hop Count is been used as a Metric. 6) Shortest Path is used here.
7) Less processing power and memory of routers required. 7) More processing power and memory of routers required.

The problems encountered with Distance Vector Routing are as follows:-

  • It is highly risky from count-to-infinity problem.
  • It is much slower to converge than Link state.
  • As a hop count change is propagated and processed to all routers this routing creates more traffic than Link state.
  • Bandwidth Wasting broadcasts occurs because hop count updates takes place periodically, even if there is no chnages in network topology.
  • In Distance Vector Routing there are larger routing tables for larger networks because each router must know about all other routers.This can lead to WAN Link congestion.

The problems encountered with Link State Routing are as follows:-

  • Due to flooding of packets there is heavy traffic.
  • Flooding caused Infinite Looping which is resolved by Time-To-Leave field.
  • Link State Routing is more CPU and memory intensive.
  • To reduce the size of the table it requires hierarchical network design
  • The network's total bandwidth is wasted.
  • The maximum load on the network increases beacuse a message has to be sent to every router inspite of having only one destination.
  • Duplication of message is also possible.

Solution 2:-

  • In case a change occurs in the network then Link State Routing converges faster.
  • This is because each router knows about its own directly connected networks and learns about its own link.
  • In Link State Routing each router manages all the responsibilty automatically if any problem or changes occur in the network.
  • The routers also search the shortest path.
  • All the routers floods the Link State Packets(LSP) to all its neighbours, which are then saved in the database.
Add a comment
Know the answer?
Add Answer to:
can somebody please help me with the following two questions: List and explain three differences between...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Can somebody help me with Java programming? please be brief and explain the process and carefully...

    Can somebody help me with Java programming? please be brief and explain the process and carefully follow the step by step instruction. Thanks Homework 12.1 - Write a program that generates five random sentences (like mad libs), prints them to a file, then reads in the sentences and prints them to the console. Start by creating four string arrays for nouns, verbs, colors, and places. They should store at least 5 of each type of word. You can have more...

  • PART A 21 MARKS SHORT ANSWER QUESTIONS Answer ALL questions from this part. Write your answers...

    PART A 21 MARKS SHORT ANSWER QUESTIONS Answer ALL questions from this part. Write your answers in the Examination Answer Booklet. Each question is worth 1.5 marks (14 x 1.5 = 21 marks). Question 1 An organisation has been granted a block of addresses with the mask /22. If the organisation creates 8 equal-sized subnets, how many addresses (including the special addresses) are available in each subnet? Show your calculations. Question 2 Give an example of a valid classful address...

  • Hi i need help to answer all the questions please can someone help me thank you. I need to create it in mongodb Perform the following tasks using MongoDB queries: a. List alphabetically only the fir...

    Hi i need help to answer all the questions please can someone help me thank you. I need to create it in mongodb Perform the following tasks using MongoDB queries: a. List alphabetically only the first 20 names of companies founded after the year 2010. b. List only the first 20 names of companies with offices either in California or Texas, ordered by the number of employees and sorted largest to smallest. 3. Perform the following tasks using the MongoDB...

  • Can somebody to help with the following questions, I really appreciate with your help: 1) Write...

    Can somebody to help with the following questions, I really appreciate with your help: 1) Write a short summary of the article (2 paragraphs or more). 2) Do you agree or disagree with the author? 3) In your opinion, from the U.S. perspective, what actions should the U.S. take against nations with unfair trade practices? Free Trade Is a Two-Way Street The Trump administration last week celebrated the workers and businesses that make this country great. The purpose of "Made...

  • Part 1-Please answer the following essay questions 1. We discussed the advantages and disadvantag...

    Part 1-Please answer the following essay questions 1. We discussed the advantages and disadvantages of internal recruiting, interviews and reference checks (and the entire hiring process). Please identify ONE disadvantage of each of these three activities -- and explain why you believe they are "disadvantages." 2. Choose ONE interview question listed below and answer it on paper as if it was being asked of you in a face-to-face interview. Please identify the Interview Question #. Details, details, details are necessary...

  • Please let me know below question and explain it with attached content ! Questions 1.Help Alex...

    Please let me know below question and explain it with attached content ! Questions 1.Help Alex and Meghan brainstorm risks for each of the three sourcing alternatives. Write down all of your risks—don't be too judgmental or selective. 2.Conduct an FMEA. Build a thoughtful worksheet (see Table 5-4). You'll have to make judgment calls on severity, likelihood, and detectability. Compute appropriate RPNs. What actions would you suggest to mitigate these risks? 3.Considering short- and long-term implications, articulate your overall risk-mitigation...

  • IN JAVA PLEASE HELP! ALSO PLEASE ADD COMMENTS Summary Build two classes (Fraction and Fraction Counter)...

    IN JAVA PLEASE HELP! ALSO PLEASE ADD COMMENTS Summary Build two classes (Fraction and Fraction Counter) and a Driver for use in counting the number of unique fractions read from a text file. We'll use the ArrayList class to store our list of unique Fraction Counters. Rather than designing a monolithic chunk of code in main like we did in the previous homework, we'll practice distributing our code into containers (called classes) that you will design specifically to tackle this...

  • PLEASE HELP ! It's two questions so you can charge me twice. Will vote thumbs up for a right ques...

    PLEASE HELP ! It's two questions so you can charge me twice. Will vote thumbs up for a right question X E201 Assgn6_p1_cost_calculations_blank.xls Open with Google Sheetsv Variable Cost Average Total Cost Marginal Cost Variable Cost Total Fixed Cost $15.00 $15.00 $15.00 Quanti Total Cost $0.00 $15.00 10.67 $12.67 $16.00 $20.67 $26.67 $34.00 $42.67 $52.67 $64.00 $76.67 $90.67 $106.00 $122.67 $140.67 S160.00 $180.67 $202.67 S226.00 $250.67 4 12 13 14 15 16 17 18 19 12 14 20 Assignment 6...

  • can someone please help me with an introduction paragraph and a summary of the whole article....

    can someone please help me with an introduction paragraph and a summary of the whole article. us. Trump Didn't Kill the Global Trade System. He Split It in Two. Allies find relations modestly tweaked despite the president's rhetoric, while relations with China are entering a deep freeze By Greg Ip Dec. 26, 2018 1136 am. ET When Donald Trump entered the White House on a platform of defiant nationalism nearly two years ago, many feared he would dismantle the global...

  • Can you please help me to find Possible test questions? Course Here.com Test #4 " Autonomic...

    Can you please help me to find Possible test questions? Course Here.com Test #4 " Autonomic Nervous System Overview of the Autonomic Nervous System (ANSH Maior Functions: maintain optimal muscle in order to maintain homeostatic state within the body Aalso is inv performance of visceral organs, glands, smooth muscle, and cardiac not under conscious control: regulates heart rate, blood pressure, MOST "effectors" (organs & tissues regulated) are visceral- r function, and secretions emperaturs smooth musele contraction, glandula most are not...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT