• In the previous course, you learned that each area has its own LSDB.
    But what is actually stored inside an LSDB?

    Look at the topology again.
    You can see three different areas:

    • Area 1

    • Area 0 (Backbone Area)

    • Area 2

    ospf multi area lsa types explained

    Figure 1 - OSPF Multi Area Topology

    Now think about what is really happening behind the scenes.

    • How do routers in Area 1 learn about the network inside Area 2?

    • How does every router build an accurate and consistent view of the entire OSPF domain?

    The answer is straightforward: OSPF uses different types of LSAs.
    You already know LSAs from your CCNA: they are the messages OSPF routers exchange to build the LSDB.

    The Five LSA Types You Must Know

    For the CCNP ENCOR, you must clearly understand these five LSA types:

    • Type 1 – Router LSA

    • Type 2 – Network LSA

    • Type 3 – Summary LSA

    • Type 4 – ASBR Summary LSA

    • Type 5 – External LSA

    This course covers Type 1 and Type 2.
    Type 3, 4 and 5 are covered in the next course.

    Answer the question below

    How many LSA types must you know for the CCNP ENCOR?

    Reading the LSDB

    Connect to R1 and display its LSDB:

    R1# show ip ospf database
    
                OSPF Router with ID (1.1.1.1) (Process ID 1)
    
                    Router Link States (Area 1)
    
    Link ID         ADV Router      Age         Seq#       Checksum Link count
    1.1.1.1         1.1.1.1         512         0x80000004 0x00A1B2 1
    2.2.2.2         2.2.2.2         498         0x80000003 0x00C3D4 1
    
                    Net Link States (Area 1)
    
    Link ID         ADV Router      Age         Seq#       Checksum
    10.1.12.1       1.1.1.1         512         0x80000001 0x00E5F6
    
                    Summary Net Link States (Area 1)
    
    Link ID         ADV Router      Age         Seq#       Checksum
    10.0.23.0       2.2.2.2         480         0x80000001 0x001A2B
    10.2.34.0       2.2.2.2         480         0x80000001 0x003C4D
    10.2.100.0      2.2.2.2         475         0x80000001 0x005E6F

    The LSDB is organized by LSA type.
    Router Link States are the Type 1 LSAs. Net Link States are the Type 2 LSAs.
    Let's look at them one by one.

    Answer the question below

    In the LSDB, Router Link States are the Type ___ LSAs.