• In the previous lesson, you displayed the LSDB of R1.
    One section was left unexplained: Summary Net Link States.
    These are the Type 3 LSAs.

    A Type 3 LSA is generated by an Area Border Router (ABR).
    It is used to advertise networks from one area into another area.

    Type 3 LSA Scope

    • Type 3 → Inter-area scope

    • Type 3 LSAs advertise networks, not routers.

    They allow routers in different areas to learn about networks that exist outside their local area.

    ospf type 3 lsa

    Figure 1 - Type 3 LSA

    Without Type 3 LSAs, each area would only know its internal topology.

    Answer the question below

    What is the acronym for the router that generates a Type 3 LSA?

    Verifying a Type 3 LSA

    We can verify a Type 3 LSA using the following command:

    R1# show ip ospf database summary 
    
    Summary Net Link States (Area 1)
    
      Link State ID: 10.0.23.0 (summary Network Number)
      Advertising Router: 2.2.2.2

    Here, we can see:

    • The Link State ID represents the advertised network (10.0.23.0).

    • The Advertising Router is 2.2.2.2, which is the ABR (R2).

    This means R1, located in Area 1, learned about the 10.0.23.0 network from another area through the ABR.

    And in the routing table, you already know how these networks appear:

    R1# show ip route ospf
    Codes: O - OSPF, IA - OSPF inter area
           E1 - OSPF external type 1, E2 - OSPF external type 2
    
    Gateway of last resort is not set
    
          10.0.0.0/8 is variably subnetted, 5 subnets, 3 masks
    O IA     10.0.23.0/30 [110/2] via 10.1.12.2, 01:28:14, GigabitEthernet0/0
    O IA     10.2.34.0/30 [110/3] via 10.1.12.2, 01:27:04, GigabitEthernet0/0
    O IA     10.2.100.0/24 [110/4] via 10.1.12.2, 00:17:39, GigabitEthernet0/0

    These routes were installed because of Type 3 LSAs.
    The ABR receives the Type 1 and Type 2 LSAs of one area, and generates one Type 3 LSA per network into the other area. This is what creates the O IA routes.

    Answer the question below

    Which routing table code indicates routes learned via Type 3 LSAs?