Multi Area OSPF (page 3)
26 Oct 2003 @ 08:25AM

Updated: 20 Jan 2010 @ 09:10AM
Not So Stubby Areas (NSSA)

An NSSA is a special type of stub network. It is only used in an area with an ASBR, and is typically implemented to reduce routing traffic and SPF calculations within that area while maintaining communications with external ASes. External routes injected into the NSSA by the ASBR use type 7 packets. When the type 7 packets hits the ABR, it is then translated to a type 5 packet for dissemination through the rest of the OSPF AS.

To configure an NSSA, use the following commands:

area [area-id] nssa [no-summary]

Usually you would want to use the no-summary keyword, which prevents type 3 and type 4 LSAs. This further reduces OSPF traffic and SPF recalculations. You may also wish to use route summarization on the ASBR to further reduce SPF calculations and routing table entries.

Summary-address [prefix mask] [not advertise] [tag tag]

The [not advertise] option is used to suppress routes that match the prefix/mask. This only works for OSPF routes. [tag] is used for policy routing.
Comments (0)
Multi-Area OSPF Show Commands

CommandDescription
show ip ospf border-routersDisplay internal OSPF routing table entries to an ABR
show ip ospf virtual-linksDisplay virtual link parameters
show ip ospf [process-id]display are information and router OSPF information
show ip ospf databaseShow the topological database
show ip ospf [process-id area-id] database [router] Show router link-state information
show ip ospf [process-id area-id] database [network] Show network link-state information
show ip ospf [process-id area-id] database [summary]Summary information about ABR link-states
show ip ospf [process-id area-id] database [asbr-summary]Information on ASBR link states
show ip ospf [process-id area-id] database [external]Information on AS external link states
show ip ospf [process-id area-id] database [database-summary]display database summary and totals
Comments (0)
LSA and area type summary

LSA TypeDescription
1. Router link entry Internal to 1 area
2. Network Link entry Internal to 1 area, sent by DR in multiaccess networks
.
3. Summary Link Entry ABR to ABR in an AS and to backbone. Describes links in AS
4. Summary Link Entry ABR to ABR in an AS and to backbone. Describes links to ASBR(s).
.
5. AS External LinkFrom ASBR to all except in NSSA and stubs. E1/E2.
7. AS External LinkFrom ASBR to ABR, only in an NSSA. N1/N2.
.
6. MulticastNot Used


Area TypeLSAs allowed
Standard multiaccess1,2,3,4,5
Standard not-multiaccess1,3,4,5
Backbone1,2,3,4,5
Stub1,2,3,4
Totally Stubby1,2
Not So Stubby1,2,3,4,7
Not So Stubby, no-summary1,2,7
Comments (0)