Routing 4: Bellman-Ford Algorithm

Поділитися
Вставка
  • Опубліковано 28 жов 2024

КОМЕНТАРІ • 15

  • @charyog7
    @charyog7 7 років тому +2

    Very well explained ! The first lesson on Bellman-Ford that I have understood , well done !

  • @will.i_yamm
    @will.i_yamm 6 років тому

    Great video. I especially appreciate the time spent to sneakily edit out the handwriting

  • @bendorsampson3133
    @bendorsampson3133 Місяць тому

    I have a concern for you regarding your lecture for Bellman-Ford. In the first ITERATION, THE LEAST OR MINIMUM cost IS 1 HOP WITH A PATH OF 7-4. HOW COME YOU NEED TO USE IT AS THE MINIMUM IN YOUR SECOND ITERATION. RATHER YOU TOOK 2 WITH A PATH OF 7-4-6. PLEASE, I NEED CLARIFICATION VERY URGENTLY.

  • @petrocksgarage
    @petrocksgarage 3 роки тому

    In a traditional network this algo would be better. But what about in a Software Defined Network (SDN), where the Controller knows the topology of the network up front? In that case, Dijkstra's algo would be better. Right?

  • @rociogonzalez5990
    @rociogonzalez5990 4 роки тому

    I dont understand why in row 2 below L(3) is 2 and L (4) is 1 as well as why their respective paths

  • @pooya130
    @pooya130 6 років тому +2

    Why does this algorithm require less information? I am still confused how you would calculate all the values for V7 if you don't have all the edge connectivity/cost information.

    • @riseabovehate9476
      @riseabovehate9476 5 років тому +1

      If router A is not connected directly to router C, but router C is connected to B which in turn is connected to A. The routing Table of B will have connection information about C. So when B shares its routing table with A, A indirectly comes to know that C is connected to B. So A will simply add the Distance AB + BC to get distance AC. So the process continues and A gets the distance between itself and all other routers through its neighbors only.

  • @rociogonzalez5990
    @rociogonzalez5990 4 роки тому

    why the route for V3 and V4 will not change? in row 2

  • @markedionisio9658
    @markedionisio9658 7 років тому

    What happens to the table when h = 0? Does that mean that because the number of hops is 0, the node that you are working from doesn't go off and find a path? Would we just put in the Lh(N) Path columns an infinity sign and a dash to indicate nothing is happening?

    • @JacobSchrum
      @JacobSchrum  7 років тому

      Correct. They would all be infinite distance with no paths

  • @emmanuelkz4519
    @emmanuelkz4519 4 роки тому

    You saved me 320 Dollars ! passed CCNA and Bellman- Ford was one of the exam tests . Thanks xoxo

  • @DamaDZN
    @DamaDZN 6 років тому

    Shouldn't the cost of each hop that you calculate be the one going from the other nodes towards v7? Because the cost you fill in the matrix is what v7 needs to reach the other nodes and not the other way around.I think that is how Dijstra works and not Bellman Ford

  • @asyrafzlkln1701
    @asyrafzlkln1701 6 років тому

    Nice video . Thank you sir :)

  • @yarfaizi
    @yarfaizi 6 років тому

    Best explanation !

  • @bendorsampson3133
    @bendorsampson3133 Місяць тому

    Hello