OSPF DR and BDR

  • OSPF needs to elect a DR (Designated Router) and a BDR (Backup Designated Router) to function efficiently on multi-access networks.

    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

    The number of adjacencies grows according to the 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. More routers means:

    • More OSPF neighbors to maintain

    • More LSAs exchanged between devices

    • More CPU and memory consumed to keep OSPF running

    That’s exactly why OSPF DR and BDR were introduced to reduce adjacency overload and improve scalability on multi-access networks.

    Answer the question below