OcNOS-SP : Layer 3 Guide : Layer 3 Unicast Configuration Guide : OSPFv2 : LSA Throttling
LSA Throttling
This section contains basic OSPF LSA throttling configuration examples.
The OSPF Link-State Advertisement (LSA) throttling feature provides a mechanism to dynamically slow down link-state advertisement (LSA) updates in OSPF during times of network instability. It also allows faster OSPF convergence by providing LSA rate limiting in milliseconds, when the network is stable.
How OSPF LSA Throttling Works
The timers throttle lsa all command controls the generation (sending) of LSAs. The first LSA is always generated immediately upon an OSPF topology change, and the next LSA generated is controlled by the minimum start interval. The subsequent LSAs generated for the same LSA are rate-limited until the maximum interval is reached. The “same LSA” is defined as an LSA instance that contains the same LSA ID number, LSA type, and advertising router ID.
The timers lsa arrival command controls the minimum interval for accepting the same LSA. If an instance of the same LSA arrives sooner than the interval that is set, the LSA is dropped. It is recommended that the arrival interval be less than or equal to the hold-time interval of the timers throttle lsa all command.
Topology
The diagram shows the minimum configuration required to enable OSPF LSA Throttling Timers feature. R1 and R2 are two routers in Area 0 connecting to network 10.10.10.0/24.
Note: Configure one interface so that it belongs to only one area. It is possible, however, to configure different interfaces on a router to belong to different areas.
Figure 8-75: Basic OSPF Topology
R1
 
#configure terminal
Enter configure mode.
(config)#interface lo
Specify the interface loopback to configure.
(config-if)#ip address 1.1.1.1/32 secondary
Configure the ip address (1.1.1.1) of the interface loopback.
(config-if)#exit
Exit interface mode.
(config)#router ospf 1
Configure the routing process, and specify the Process ID (1). The Process ID should be a unique positive integer identifying the routing process.
(config-router)#network 10.10.10.0/24 area 0
Define the interface (10.10.10.0/24) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area).
(config-router)#network 1.1.1.1/32 area 0
Define the interface (1.1.1.1/32) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area).
(config-router)#timers throttle lsa all 10000 20000 45000
Configure LSA Throttling timers (Starting interval: <0-600000>, Min Hold Interval: <1-600000> and Max Wait Interval:< 1-600000>) in milliseconds. The Default value for corresponding timers are: Starting interval: 0, Min Hold Interval: 5 sec and Max Wait Interval: 5 sec.
(config-router)#logging monitor 7
 
Enable logging monitor globally.
 
(config)#logging level ospf 7
Enable logging level ospf globally.
(config)#commit
Commit the candidate configuration to the running configuration.
(config)#end
Exit router mode
R2
 
#configure terminal
Enter configure mode.
(config)#router ospf 1
Configure the routing process, and specify the Process ID (1). The Process ID should be a unique positive integer identifying the routing process.
(config-router)#network 10.10.10.0/24 area 0
Define the interface (10.10.10.0/24) on which OSPF runs, and associate the area ID (0) with the interface.
(config-router)#commit
Commit the candidate configuration to the running configuration.
Validation
R1
Check the output of show ip ospf and verify the initial throttle delay, minimum hold time for LSA throttle and maximum wait time for LSA throttle.
#show ip ospf 1
Routing Process "ospf 1" with ID 1.1.1.1
Process uptime is 11 minutes
Process bound to VRF default
Conforms to RFC2328, and RFC1583 Compatibility flag is disabled
Supports only single TOS(TOS0) routes
Supports opaque LSA
Supports Graceful Restart
SPF schedule delay initial 0 secs 500 msecs
SPF schedule delay min 0 secs 500 msecs
SPF schedule delay max 50 secs 0 msecs
Refresh timer 10 secs
Number of incoming current DD exchange neighbors 0/64
Number of outgoing current DD exchange neighbors 0/64
Initial LSA throttle delay 10 secs 0 msecs
Minimum hold time for LSA throttle 20 secs 0 msecs
Maximum wait time for LSA throttle 45 secs 0 msecs
Minimum LSA arrival 1 secs 0 msecs
Number of external LSA 0. Checksum 0x000000
Number of opaque AS LSA 0. Checksum 0x000000
Number of non-default external LSA 0
External LSA database is unlimited.
Number of LSA originated 4
Number of LSA received 4
Number of areas attached to this router: 1
MemPool - struct ospf lsa : (0-8) | Total (8/100000) blk_size:160
MemPool - struct rxmt : | Total (0/0) blk_size:8
Area 0.0.0.0 (BACKBONE)
Number of interfaces in this area is 2(2)
Number of fully adjacent neighbors in this area is 1
Area has no authentication
SPF algorithm last executed 00:10:12.807 ago
SPF algorithm executed 5 times
Number of LSA 7. Checksum 0x02c480
Dste Staus: Disabled
 
 
#show ip ospf neighbor
 
Total number of full neighbors: 1
OSPF process 1 VRF(default):
Neighbor ID Pri State Dead Time Address Interface Instance ID
3.1.1.1 1 Full/Backup 00:00:34 10.10.10.11 eth1 0
 
 
#debug ospf database-timer rate-limit
 
#show debugging ospf
OSPF debugging status:
OSPF rate limit timer events debugging is on
Here, we administratively shutdown and then bring up the loopback interface to generate Rate Limit Timer events for OSPF debugging to capture.
(config)#int lo
(config-if)#shutdown
2019 Mar 29 16:32:36.838 : OcNOS : OSPF : NOTIF : [OSPF_OPR_LINK_DOWN_4]: Received Link down for interface: lo
2019 Mar 29 16:32:36.838 : OcNOS : OSPF : INFO : Starting Rate Limit Timer for LSA[0.0.0.0:Type1:1.1.1.1:(self)]: with 10000 msec delay
2019 Mar 29 16:32:36.838 : OcNOS : OSPF : NOTIF : [OSPF_OPR_STATE_4]: [lo:1.1.1.1]: Status change Loopback -> Down
 
(config-if)#no shutdown
2019 Mar 29 16:32:42.705 : OcNOS : OSPF : NOTIF : [OSPF_OPR_LINK_UP_4]: Received Link up for interface: lo
2019 Mar 29 16:32:42.705 : OcNOS : OSPF : NOTIF : [OSPF_OPR_STATE_4]: [lo:1.1.1.1]: Status change Down -> Loopback
2019 Mar 29 16:32:46.853 : OcNOS : OSPF : INFO : Rate Limit Timer for LSA[0.0.0.0:Type1:1.1.1.1:(self)]: expired
2019 Mar 29 16:32:46.853 : OcNOS : OSPF : INFO : For Next Instance of LSA[0.0.0.0:Type1:1.1.1.1:(self)]: generation wait 20000 msec
 
 
(config-if)#shutdown
2019 Mar 29 16:32:54.353 : OcNOS : OSPF : NOTIF : [OSPF_OPR_LINK_DOWN_4]: Received Link down for interface: lo
2019 Mar 29 16:32:54.353 : OcNOS : OSPF : INFO : Starting Rate Limit Timer for LSA[0.0.0.0:Type1:1.1.1.1:(self)]: with 12499 msec delay
2019 Mar 29 16:32:54.353 : OcNOS : OSPF : NOTIF : [OSPF_OPR_STATE_4]: [lo:1.1.1.1]: Status change Loopback -> Down
 
(config-if)#no shutdown
2019 Mar 29 16:32:59.252 : OcNOS : OSPF : NOTIF : [OSPF_OPR_LINK_UP_4]: Received Link up for interface: lo
2019 Mar 29 16:32:59.252 : OcNOS : OSPF : NOTIF : [OSPF_OPR_STATE_4]: [lo:1.1.1.1]: Status change Down -> Loopback
2019 Mar 29 16:33:06.870 : OcNOS : OSPF : INFO : Rate Limit Timer for LSA[0.0.0.0:Type1:1.1.1.1:(self)]: expired
2019 Mar 29 16:33:06.870 : OcNOS : OSPF : INFO : For Next Instance of LSA[0.0.0.0:Type1:1.1.1.1:(self)]: generation wait 40000 msec
R2
Check the output of “show ip ospf neighbor” and verify that OSPF adjacency is up.
#show ip ospf neighbor
 
Total number of full neighbors: 1
OSPF process 1 VRF(default):
Neighbor ID Pri State Dead Time Address Interface Instance ID
1.1.1.1 1 Full/DR 00:00:33 10.10.10.10 eth1 0
 
Check the output of show ip ospf database and verify that LSA (router LSA in this example) is updated according to the configured LSA throttling timers configured on its neighbor.
#show ip ospf database
 
OSPF Router with ID (3.1.1.1) (Process ID 1 VRF default)
 
Router Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Link count
3.1.1.1 3.1.1.1 373 0x80000004 0xc60c 1
1.1.1.1 1.1.1.1 71 0x80000008 0xb9f2 2
 
Net Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum
10.10.10.10 1.1.1.1 375 0x80000001 0x18e5
 
Area-Local Opaque-LSA (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Opaque ID
1.0.0.1 3.1.1.1 372 0x80000001 0x2cf6 1
1.0.0.1 1.1.1.1 373 0x80000001 0x2af6 1
1.0.0.8 3.1.1.1 372 0x80000001 0x7d45 8
1.0.0.8 1.1.1.1 373 0x80000001 0x566c 8
 
 
#show ip ospf database
 
OSPF Router with ID (3.1.1.1) (Process ID 1 VRF default)
 
Router Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Link count
3.1.1.1 3.1.1.1 378 0x80000004 0xc60c 1
1.1.1.1 1.1.1.1 76 0x80000008 0xb9f2 2
 
Net Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum
10.10.10.10 1.1.1.1 380 0x80000001 0x18e5
 
Area-Local Opaque-LSA (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Opaque ID
1.0.0.1 3.1.1.1 377 0x80000001 0x2cf6 1
1.0.0.1 1.1.1.1 378 0x80000001 0x2af6 1
1.0.0.8 3.1.1.1 377 0x80000001 0x7d45 8
1.0.0.8 1.1.1.1 378 0x80000001 0x566c 8
 
 
#show ip ospf database
 
OSPF Router with ID (3.1.1.1) (Process ID 1 VRF default)
 
Router Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Link count
3.1.1.1 3.1.1.1 380 0x80000004 0xc60c 1
1.1.1.1 1.1.1.1 78 0x80000008 0xb9f2 2
 
Net Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum
10.10.10.10 1.1.1.1 382 0x80000001 0x18e5
 
Area-Local Opaque-LSA (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Opaque ID
1.0.0.1 3.1.1.1 379 0x80000001 0x2cf6 1
1.0.0.1 1.1.1.1 380 0x80000001 0x2af6 1
1.0.0.8 3.1.1.1 379 0x80000001 0x7d45 8
1.0.0.8 1.1.1.1 380 0x80000001 0x566c 8
 
 
#show ip ospf database
 
OSPF Router with ID (3.1.1.1) (Process ID 1 VRF default)
 
Router Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Link count
3.1.1.1 3.1.1.1 381 0x80000004 0xc60c 1
1.1.1.1 1.1.1.1 79 0x80000008 0xb9f2 2
 
Net Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum
10.10.10.10 1.1.1.1 383 0x80000001 0x18e5
 
Area-Local Opaque-LSA (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Opaque ID
1.0.0.1 3.1.1.1 380 0x80000001 0x2cf6 1
1.0.0.1 1.1.1.1 381 0x80000001 0x2af6 1
1.0.0.8 3.1.1.1 380 0x80000001 0x7d45 8
1.0.0.8 1.1.1.1 381 0x80000001 0x566c 8
 
 
#show ip ospf database
 
OSPF Router with ID (3.1.1.1) (Process ID 1 VRF default)
 
Router Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Link count
3.1.1.1 3.1.1.1 382 0x80000004 0xc60c 1
1.1.1.1 1.1.1.1 80 0x80000008 0xb9f2 2
 
Net Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum
10.10.10.10 1.1.1.1 384 0x80000001 0x18e5
 
Area-Local Opaque-LSA (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Opaque ID
1.0.0.1 3.1.1.1 381 0x80000001 0x2cf6 1
1.0.0.1 1.1.1.1 382 0x80000001 0x2af6 1
1.0.0.8 3.1.1.1 381 0x80000001 0x7d45 8
1.0.0.8 1.1.1.1 382 0x80000001 0x566c 8
 
 
#show ip ospf database
 
OSPF Router with ID (3.1.1.1) (Process ID 1 VRF default)
 
Router Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Link count
3.1.1.1 3.1.1.1 383 0x80000004 0xc60c 1
1.1.1.1 1.1.1.1 81 0x80000008 0xb9f2 2
 
Net Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum
10.10.10.10 1.1.1.1 385 0x80000001 0x18e5
 
Area-Local Opaque-LSA (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Opaque ID
1.0.0.1 3.1.1.1 382 0x80000001 0x2cf6 1
1.0.0.1 1.1.1.1 383 0x80000001 0x2af6 1
1.0.0.8 3.1.1.1 382 0x80000001 0x7d45 8
1.0.0.8 1.1.1.1 383 0x80000001 0x566c 8
Configure OSPF LSA Arrival Timers
The diagram shows the minimum configuration required to enable OSPF Minimum LSA Arrival Timers feature. R1 and R2 are two routers in Area 0 connecting to network 10.10.10.0/24.
Note: Configure one interface so that it belongs to only one area. It is possible, however, to configure different interfaces on a router to belong to different areas.
Topology
Figure 8-76: Basic OSPF Topology
Configuration
R1
 
#configure terminal
Enter configure mode.
(config)#interface lo
Specify the interface loopback to configure.
(config-if)#ip address 1.1.1.1/32 secondary
Configure the ip address (1.1.1.1) of the interface loopback.
(config-if)#exit
Exit interface mode.
(config)#router ospf 1
Configure the routing process, and specify the Process ID (1). The Process ID should be a unique positive integer identifying the routing process.
(config-router)#network 10.10.10.0/24 area 0
Define the interface (10.10.10.0/24) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area).
(config-router)#network 1.1.1.1/32 area 0
Define the interface (1.1.1.1/32) on which OSPF runs, and associate the area ID (0) with the interface (area ID 0 specifies the backbone area).
(config-router)#commit
Commit the candidate configuration to the running configuration.
(config-router)#end
Exit router mode
R2
 
#configure terminal
Enter configure mode.
(config)#router ospf 1
Configure the routing process, and specify the Process ID (1). The Process ID should be a unique positive integer identifying the routing process.
(config-router)#network 10.10.10.0/24 area 0
Define the interface (10.10.10.0/24) on which OSPF runs, and associate the area ID (0) with the interface.
(config-router)#timers lsa arrival 100000
Configure Minimum LSA Arrival timers (Minimum LSA arrival Interval:< 0-600000>) in milliseconds. The Default value for Minimum LSA Arrival timer is: 1 sec.
(config-router)#commit
Commit the candidate configuration to the running configuration.
Validation
R1
Check the output of show ip ospf and verify that the minimum LSA arrival timer by default is set to 1 sec.
#show ip ospf
Routing Process "ospf 1" with ID 1.1.1.1
Process uptime is 11 minutes
Process bound to VRF default
Conforms to RFC2328, and RFC1583 Compatibility flag is disabled
Supports only single TOS(TOS0) routes
Supports opaque LSA
Supports Graceful Restart
SPF schedule delay initial 0 secs 500 msecs
SPF schedule delay min 0 secs 500 msecs
SPF schedule delay max 50 secs 0 msecs
Refresh timer 10 secs
Number of incoming current DD exchange neighbors 0/64
Number of outgoing current DD exchange neighbors 0/64
Initial LSA throttle delay 10 secs 0 msecs
Minimum hold time for LSA throttle 20 secs 0 msecs
Maximum wait time for LSA throttle 45 secs 0 msecs
Minimum LSA arrival 1 secs 0 msecs
Number of external LSA 0. Checksum 0x000000
Number of opaque AS LSA 0. Checksum 0x000000
Number of non-default external LSA 0
External LSA database is unlimited.
Number of LSA originated 4
Number of LSA received 4
Number of areas attached to this router: 1
MemPool - struct ospf lsa : (0-8) | Total (8/100000) blk_size:160
MemPool - struct rxmt : | Total (0/0) blk_size:8
Area 0.0.0.0 (BACKBONE)
Number of interfaces in this area is 2(2)
Number of fully adjacent neighbors in this area is 1
Area has no authentication
SPF algorithm last executed 00:10:12.807 ago
SPF algorithm executed 5 times
Number of LSA 7. Checksum 0x02c480
Dste Staus: Disabled
 
#show ip ospf neighbor
 
Total number of full neighbors: 1
OSPF process 1 VRF(default):
Neighbor ID Pri State Dead Time Address Interface Instance ID
3.1.1.1 1 Full/Backup 00:00:34 10.10.10.11 eth1
R2
Check the output of show ip ospf and verify that the minimum LSA arrival timer is set to 100 sec.
#show ip ospf
Routing Process "ospf 1" with ID 3.1.1.1
Process uptime is 23 minutes
Process bound to VRF default
Conforms to RFC2328, and RFC1583 Compatibility flag is disabled
Supports only single TOS(TOS0) routes
Supports opaque LSA
Supports Graceful Restart
SPF schedule delay initial 0 secs 500 msecs
SPF schedule delay min 0 secs 500 msecs
SPF schedule delay max 50 secs 0 msecs
Refresh timer 10 secs
Number of incoming current DD exchange neighbors 0/64
Number of outgoing current DD exchange neighbors 0/64
Initial LSA throttle delay 0 secs 0 msecs
Minimum hold time for LSA throttle 5 secs 0 msecs
Maximum wait time for LSA throttle 5 secs 0 msecs
Minimum LSA arrival 100 secs 0 msecs
Number of external LSA 0. Checksum 0x000000
Number of opaque AS LSA 0. Checksum 0x000000
Number of non-default external LSA 0
External LSA database is unlimited.
Number of LSA originated 3
Number of LSA received 10
Number of areas attached to this router: 1
MemPool - struct ospf lsa : (0-9) | Total (9/100000) blk_size:160
MemPool - struct rxmt : | Total (0/0) blk_size:8
Area 0.0.0.0 (BACKBONE)
Number of interfaces in this area is 1(1)
Number of fully adjacent neighbors in this area is 1
Area has no authentication
SPF algorithm last executed 00:22:12.911 ago
SPF algorithm executed 4 times
Number of LSA 7. Checksum 0x02c281
Dste Staus: Disabled
Check the output of show ip ospf neighbor and verify that OSPF adjacency is up.
#show ip ospf neighbor
 
Total number of full neighbors: 1
OSPF process 1 VRF(default):
Neighbor ID Pri State Dead Time Address Interface Instance ID
1.1.1.1 1 Full/DR 00:00:35 10.10.10.10 eth1 0
Check the output of “show ip ospf database” and verify that LSA is accepted only after a time difference of 100 sec between two consecutive LSAs.
#show ip ospf database
 
OSPF Router with ID (3.1.1.1) (Process ID 1 VRF default)
 
Router Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Link count
3.1.1.1 3.1.1.1 1131 0x80000004 0xc60c 1
1.1.1.1 1.1.1.1 829 0x80000008 0xb9f2 2
 
Net Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum
10.10.10.10 1.1.1.1 1133 0x80000001 0x18e5
 
Area-Local Opaque-LSA (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Opaque ID
1.0.0.1 3.1.1.1 1130 0x80000001 0x2cf6 1
1.0.0.1 1.1.1.1 1131 0x80000001 0x2af6 1
1.0.0.8 3.1.1.1 1130 0x80000001 0x7d45 8
1.0.0.8 1.1.1.1 1131 0x80000001 0x566c 8
 
 
#show ip ospf database
 
OSPF Router with ID (3.1.1.1) (Process ID 1 VRF default)
 
Router Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Link count
3.1.1.1 3.1.1.1 1132 0x80000004 0xc60c 1
1.1.1.1 1.1.1.1 831 0x80000008 0xb9f2 2
 
Net Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum
10.10.10.10 1.1.1.1 1134 0x80000001 0x18e5
 
Area-Local Opaque-LSA (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Opaque ID
1.0.0.1 3.1.1.1 1131 0x80000001 0x2cf6 1
1.0.0.1 1.1.1.1 1132 0x80000001 0x2af6 1
1.0.0.8 3.1.1.1 1131 0x80000001 0x7d45 8
1.0.0.8 1.1.1.1 1132 0x80000001 0x566c 8
 
 
#show ip ospf database
 
OSPF Router with ID (3.1.1.1) (Process ID 1 VRF default)
 
Router Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Link count
3.1.1.1 3.1.1.1 1133 0x80000004 0xc60c 1
1.1.1.1 1.1.1.1 831 0x80000008 0xb9f2 2
 
Net Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum
10.10.10.10 1.1.1.1 1135 0x80000001 0x18e5
 
Area-Local Opaque-LSA (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Opaque ID
1.0.0.1 3.1.1.1 1132 0x80000001 0x2cf6 1
1.0.0.1 1.1.1.1 1133 0x80000001 0x2af6 1
1.0.0.8 3.1.1.1 1132 0x80000001 0x7d45 8
1.0.0.8 1.1.1.1 1133 0x80000001 0x566c 8
 
 
#show ip ospf database
 
OSPF Router with ID (3.1.1.1) (Process ID 1 VRF default)
 
Router Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Link count
3.1.1.1 3.1.1.1 1134 0x80000004 0xc60c 1
1.1.1.1 1.1.1.1 832 0x80000008 0xb9f2 2
 
Net Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum
10.10.10.10 1.1.1.1 1136 0x80000001 0x18e5
 
Area-Local Opaque-LSA (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Opaque ID
1.0.0.1 3.1.1.1 1133 0x80000001 0x2cf6 1
1.0.0.1 1.1.1.1 1134 0x80000001 0x2af6 1
1.0.0.8 3.1.1.1 1133 0x80000001 0x7d45 8
1.0.0.8 1.1.1.1 1134 0x80000001 0x566c 8
#
#show ip ospf database
 
OSPF Router with ID (3.1.1.1) (Process ID 1 VRF default)
 
Router Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Link count
3.1.1.1 3.1.1.1 1135 0x80000004 0xc60c 1
1.1.1.1 1.1.1.1 834 0x80000008 0xb9f2 2
 
Net Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum
10.10.10.10 1.1.1.1 1137 0x80000001 0x18e5
 
Area-Local Opaque-LSA (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Opaque ID
1.0.0.1 3.1.1.1 1134 0x80000001 0x2cf6 1
1.0.0.1 1.1.1.1 1135 0x80000001 0x2af6 1
1.0.0.8 3.1.1.1 1134 0x80000001 0x7d45 8
1.0.0.8 1.1.1.1 1135 0x80000001 0x566c 8
 
 
#show ip ospf database
 
OSPF Router with ID (3.1.1.1) (Process ID 1 VRF default)
 
Router Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Link count
3.1.1.1 3.1.1.1 1136 0x80000004 0xc60c 1
1.1.1.1 1.1.1.1 834 0x80000008 0xb9f2 2
 
Net Link States (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum
10.10.10.10 1.1.1.1 1138 0x80000001 0x18e5
 
Area-Local Opaque-LSA (Area 0.0.0.0)
 
Link ID ADV Router Age Seq# CkSum Opaque ID
1.0.0.1 3.1.1.1 1135 0x80000001 0x2cf6 1
1.0.0.1 1.1.1.1 1136 0x80000001 0x2af6 1
1.0.0.8 3.1.1.1 1135 0x80000001 0x7d45 8
1.0.0.8 1.1.1.1 1136 0x80000001 0x566c 8
Last modified date: 10/16/2023