Type-1 (Router) LSA
From CT3
The OSPF type-1 (router) LSA describes an OSPF router, its stub interfaces and links to adjacent OSPF routers and transit networks in the same area.
- An OSPF router originates a single type-1 LSA for each area that it belongs to.
- Type-1 LSA is flooded only within an area and never crosses an area boundary. Type-3 (summarization) LSA is used to advertise IP prefixes listed in a type-1 LSA into another area.
- A single type-1 LSA can have numerous links to adjacent routers, transit networks (described by type-2 LSA), stub networks and virtual links.
Contents |
Stub interfaces
A type-3 (stub) link is added to the router LSA for each stub interface belonging to the OSPF process. A stub interface could be a loopback interface or any other point-to-point or multipoint interface on which there are no OSPF neighbors.
Example #1: A router with a single loopback interface generates a type-1 LSA (even though it has no OSPF neighbors) with a single stub link.
Relevant parts of the router configuration
interface Loopback0 ip address 10.0.1.1 255.255.255.255 ip ospf 1 area 1 ! router ospf 1 log-adjacency-changes
OSPF-enabled interfaces
A1#show ip ospf interface brief Interface PID Area IP Address/Mask Cost State Nbrs F/C Lo0 1 1 10.0.1.1/32 1 LOOP 0/0
Contents of the router LSA
A1#show ip ospf database router self-originate
OSPF Router with ID (10.0.1.1) (Process ID 1)
Router Link States (Area 1)
LS age: 34
Options: (No TOS-capability, DC)
LS Type: Router Links
Link State ID: 10.0.1.1
Advertising Router: 10.0.1.1
LS Seq Number: 80000001
Checksum: 0x55B8
Length: 36
Number of Links: 1
Link connected to: a Stub Network
(Link ID) Network/subnet number: 10.0.1.1
(Link Data) Network Mask: 255.255.255.255
Number of MTID metrics: 0
TOS 0 Metrics: 1
Example #2: A router with a loopback interface and a multi-access (LAN) interface with no OSPF neighbors generates a type-1 LSA with two stub links, one describing the loopback interface, the other the LAN interface.
Relevant parts of the router configuration
interface Loopback0 ip address 10.0.1.1 255.255.255.255 ip ospf 1 area 1 ! interface FastEthernet0/1 description LAN 1 (A2) ip address 10.2.1.1 255.255.255.0 ip ospf 1 area 1 ! router ospf 1 log-adjacency-changes passive-interface FastEthernet0/1
State of the OSPF interfaces
A1#show ip ospf interface brief Interface PID Area IP Address/Mask Cost State Nbrs F/C Fa0/1 1 1 10.2.1.1/24 1 DR 0/0 Lo0 1 1 10.0.1.1/32 1 LOOP 0/0
Router LSA with two stub links
A1#show ip ospf database router self-originate
OSPF Router with ID (10.0.1.1) (Process ID 1)
Router Link States (Area 1)
LS age: 74
Options: (No TOS-capability, DC)
LS Type: Router Links
Link State ID: 10.0.1.1
Advertising Router: 10.0.1.1
LS Seq Number: 80000002
Checksum: 0xD01E
Length: 48
Number of Links: 2
Link connected to: a Stub Network
(Link ID) Network/subnet number: 10.2.1.0
(Link Data) Network Mask: 255.255.255.0
Number of MTID metrics: 0
TOS 0 Metrics: 1
Link connected to: a Stub Network
(Link ID) Network/subnet number: 10.0.1.1
(Link Data) Network Mask: 255.255.255.255
Number of MTID metrics: 0
TOS 0 Metrics: 1
Point-to-point interfaces
Two links are added to the router LSA for each point-to-point interface:
- A router link describing the connection to the OSPF neighbor
- A stub link describing the subnet of the point-to-point interface.
Example #3: A router with a loopback interface and a point-to-point WAN link generates a type-1 LSA with two stub links (one describing the loopback interface, the other the point-to-point WAN subnet) and a router link (describing the connection to the OSPF neighbor).
Relevant parts of the router configuration
interface Loopback0 ip address 10.0.1.1 255.255.255.255 ip ospf 1 area 1 ! interface Serial1/0 ip address 10.0.7.5 255.255.255.252 encapsulation ppp ip ospf cost 100 ip ospf 1 area 1 ! router ospf 1 log-adjacency-changes
State of the OSPF interfaces
A1#show ip ospf interface brief Interface PID Area IP Address/Mask Cost State Nbrs F/C Se1/0 1 1 10.0.7.5/30 100 P2P 1/1 Lo0 1 1 10.0.1.1/32 1 LOOP 0/0
Router LSA describing a point-to-point link and a loopback interface
A1#show ip ospf database router self-originate
OSPF Router with ID (10.0.1.1) (Process ID 1)
Router Link States (Area 1)
LS age: 67
Options: (No TOS-capability, DC)
LS Type: Router Links
Link State ID: 10.0.1.1
Advertising Router: 10.0.1.1
LS Seq Number: 80000004
Checksum: 0x24C8
Length: 60
Number of Links: 3
Link connected to: another Router (point-to-point)
(Link ID) Neighboring Router ID: 10.0.1.4
(Link Data) Router Interface address: 10.0.7.5
Number of MTID metrics: 0
TOS 0 Metrics: 100
Link connected to: a Stub Network
(Link ID) Network/subnet number: 10.0.7.4
(Link Data) Network Mask: 255.255.255.252
Number of MTID metrics: 0
TOS 0 Metrics: 100
Link connected to: a Stub Network
(Link ID) Network/subnet number: 10.0.1.1
(Link Data) Network Mask: 255.255.255.255
Number of MTID metrics: 0
TOS 0 Metrics: 1
Unnumbered point-to-point interfaces
A single router link is added to the router LSA for each OSPF neighbor reachable across a point-to-point interface. The router interface address field in the router link is an internal interface number (not necessary equal to the SNMP index of the local interface as required by RFC 2328).
Example #4: A router with a loopback interface and an unnumbered point-to-point WAN link generates a type-1 LSA with a stub link (describing the loopback interface) and a router link (describing the connection to the OSPF neighbor).
Relevant parts of the router configuration
interface Loopback0 ip address 10.0.1.1 255.255.255.255 ip ospf 1 area 1 ! interface Serial1/0 ip unnumbered Loopback0 encapsulation ppp ip ospf cost 100 ip ospf 1 area 1 ! router ospf 1 log-adjacency-changes
OSPF interface state
A1#show ip ospf interface brief Interface PID Area IP Address/Mask Cost State Nbrs F/C Se1/0 1 1 0.0.0.0/30 100 P2P 1/1 Lo0 1 1 10.0.1.1/32 1 LOOP 0/0
Router LSA has a single router link and a single stub link
A1#show ip ospf database router self-originate
OSPF Router with ID (10.0.1.1) (Process ID 1)
Router Link States (Area 1)
LS age: 459
Options: (No TOS-capability, DC)
LS Type: Router Links
Link State ID: 10.0.1.1
Advertising Router: 10.0.1.1
LS Seq Number: 80000006
Checksum: 0x67C
Length: 48
Number of Links: 2
Link connected to: another Router (point-to-point)
(Link ID) Neighboring Router ID: 10.0.1.4
(Link Data) Router Interface address: 0.0.0.5
Number of MTID metrics: 0
TOS 0 Metrics: 100
Link connected to: a Stub Network
(Link ID) Network/subnet number: 10.0.1.1
(Link Data) Network Mask: 255.255.255.255
Number of MTID metrics: 0
TOS 0 Metrics: 1
The contents of the Router Interface address field in the router link in the router LSA do not necessarily match the SNMP interface index (displayed below).
SNMP interface index of the WAN interface
A1#show snmp mib ifmib ifindex Serial1/0 Interface = Serial1/0, Ifindex = 3
Links to transit multi-access interfaces
Router LSA contains a link to transit network for each transit broadcast or NBMA interface. The transit network referred to in the router LSA is the type-2 LSA originated by the designated router selected on the interface.
Example #5: A router with a loopback interface and a transit Ethernet interface generates a type-1 LSA with a stub link (describing the loopback interface) and link to a transit network (the type-2 LSA originated by the DR).
Relevant parts of the router configuration
interface Loopback0 ip address 10.0.1.1 255.255.255.255 ip ospf 1 area 1 ! interface FastEthernet0/0 ip address 10.2.2.1 255.255.255.0 ip ospf 1 area 1 ! router ospf 1 log-adjacency-changes
The show ip ospf interface command shows a single OSPF neighbor on the Fast Ethernet interface. A1 is the backup DR (the State column in the printout), therefore the other router must be the DR.
OSPF interface state
A1#show ip ospf interface brief Interface PID Area IP Address/Mask Cost State Nbrs F/C Fa0/0 1 1 10.2.2.1/24 1 BDR 1/1 Lo0 1 1 10.0.1.1/32 1 LOOP 0/0
The router LSA has two links: a stub link and a link to the type-2 LSA originated by the DR.
Router LSA describing a connection to a transit network
A1#show ip ospf database router self-originate
OSPF Router with ID (10.0.1.1) (Process ID 1)
Router Link States (Area 1)
LS age: 545
Options: (No TOS-capability, DC)
LS Type: Router Links
Link State ID: 10.0.1.1
Advertising Router: 10.0.1.1
LS Seq Number: 8000000A
Checksum: 0x874D
Length: 48
Number of Links: 2
Link connected to: a Transit Network
(Link ID) Designated Router address: 10.2.2.3
(Link Data) Router Interface address: 10.2.2.1
Number of MTID metrics: 0
TOS 0 Metrics: 1
Link connected to: a Stub Network
(Link ID) Network/subnet number: 10.0.1.1
(Link Data) Network Mask: 255.255.255.255
Number of MTID metrics: 0
TOS 0 Metrics: 1
BlogMarks
del.icio.us
digg
Facebook
LinkedIn
Newsvine
reddit
Slashdot