OSPF DR and BDR

OSPF DR and BDR are elected on multi-access networks to reduce the number of adjacencies and avoid LSA flooding storms. In this lesson, you will see how elections work and how to verify which routers become DR, BDR, and DROTHER.

  • The OSPF protocol needs to elect a DR (Designated Router) and a BDR (Backup Designated Router) to function on multi-access networks. You might have asked yourself several questions about this topic, and you’re absolutely right. Let’s uncover the truth behind DR and BDR.

    Why are OSPF DR and BDR necessary?

    On multi-access segments (such as Ethernet), many routers can be connected to the same network, as shown below. When each router tries to form OSPF neighbor adjacencies with every other router, the number of relationships increases rapidly.

    OSPF DR and BDR problem with full adjacencies between multiple routers in a multi-access network

    Figure 1 – Full Mesh OSPF Adjacency Without DR/BDR on a Multi-Access Network

    As you can see, each router needs to establish an OSPF adjacency with every other router on the network. However, if we keep this approach, the number of adjacencies quickly increases according to the following formula:

    n(n – 1) / 2, where n is the number of routers.

    In the example above, we have 4 routers:
    4(4 – 1) / 2 = 6 adjacencies

    Now imagine a larger segment with 10 routers:
    10(10 – 1) / 2 = 45 adjacencies

    This quickly becomes inefficient because the more routers connected to the network means:

    • More OSPF neighbors to maintain.

    • More LSAs exchanged between devices.

    • More CPU and memory consumed to keep OSPF running.

    To responds to theses problem, an OSPF DR and BDR were introduced to reduce adjacency overload and improve scalability on multi-access networks.

    Answer the question below

    On which type of network does OSPF require a DR and BDR?