Table Of Contents
Prerequisites for OSPFv2 Local RIB
Restrictions for OSPFv2 Local RIB
Information About OSPFv2 Local RIB
Function of the OSPF Local RIB
How to Configure the OSPFv2 Local RIB Feature
Changing the Default Local RIB Criteria
Changing the Administrative Distance for Discard Routes
Configuration Examples for the OSPFv2 Local RIB Feature
Example: Changing the Default Local RIB Criteria
Example: Changing the Administrative Distance for Discard Routes
Feature Information for the OSPFv2 Local RIB Feature
OSPFv2 Local RIB
First Published: June 28, 2007Last Updated: May 5, 2008With the OSPFv2 Local RIB feature, each OSPF protocol instance has its own local Routing Information Base (RIB). The OSPF local RIB serves as the primary state for OSPF SPF route computation. The global RIB is not updated with intermediate results during the SPF. Instead, the global RIB is updated only when routes are added, deleted, or changed, thereby reducing global RIB computation. This reduced update activity may result in fewer dropped packets.
This feature is enabled by default and does not need to be configured. This document describes some optional configuration tasks to modify how the global and local RIBs function, although it is recommended to keep the default settings.
Finding Feature Information in This Module
Your Cisco IOS software release may not support all of the features documented in this module. For the latest feature information and caveats, see the release notes for your Cisco IOS software release. To reach links to specific feature documentation in this module and to see a list of the releases in which each feature is supported, use the "Feature Information for the OSPFv2 Local RIB Feature" section.
Finding Support Information for Platforms and Cisco IOS and Catalyst OS Software Images
Use Cisco Feature Navigator to find information about platform support and Cisco IOS and Catalyst OS software image support. To access Cisco Feature Navigator, go to http://www.cisco.com/go/cfn. An account on Cisco.com is not required.
Contents
•
Prerequisites for OSPFv2 Local RIB
•
Restrictions for OSPFv2 Local RIB
•
Information About OSPFv2 Local RIB
•
How to Configure the OSPFv2 Local RIB Feature
•
Configuration Examples for the OSPFv2 Local RIB Feature
•
Feature Information for the OSPFv2 Local RIB Feature
Prerequisites for OSPFv2 Local RIB
Before this feature is configured, the OSPF routing protocol must be configured.
Restrictions for OSPFv2 Local RIB
This feature is available only for IP Version 4 networks.
Information About OSPFv2 Local RIB
Function of the OSPF Local RIB
A router that is running OSPFv2 maintains a local RIB in which it stores all routes to destinations that it has learned from its neighbors. At the end of each SPF, OSPF attempts to install the best (that is, the least-cost) routes to a destination present in the local RIB into the global IPv4 routing table. The global RIB will be updated only when routes are added, deleted, or changed. Routes in the local RIB and Forwarding Information Base (FIB) will not compute when intermediate results are computed during SPF, resulting in fewer dropped packets in some circumstances.
By default, OSPF installs discard routes to null0 for any area range (internal) or summary-address (external) prefixes that it advertises to other routers. Installation of a discard route can prevent routing loops in cases where portions of a summary do not have a more specific route in the RIB. Normally, internal discard routes are installed with an administrative distance of 110, while external discard routes have an administrative distance of 254.
There may be rare circumstances, however, when some other values are needed. For example, if one OSPF process installs a route that exactly matches an area range configured on another OSPF process, the internal discard routes for the second OSPF process could be given a higher (less desirable) administrative distance.
By default, the contents of the global RIB are used to compute inter-area summaries, NSSA translation, and forwarding addresses for type-5 and type-7 LSAs. Each of these functions can be configured to use the contents of the OSPF local RIB instead of the global RIB for their computation. Using the local RIB for the computation may be slightly faster in some circumstances, but because the local RIB has information for only a particular instance of OSPF, using it for the computation may yield incorrect results. Potential problems that may occur include routing loops and black-hole routes.
How to Configure the OSPFv2 Local RIB Feature
Although it is recommended to keep the default settings for the commands described in the following sections, it is optional to change the defaults settings. This section describes the following optional tasks:
•
Changing the Default Local RIB Criteria (optional)
•
Changing the Administrative Distance for Discard Routes (optional)
Changing the Default Local RIB Criteria
Note
It is recommended that you not change the default values because they are conservative and preserve the current global RIB behavior.
SUMMARY STEPS
1.
enable
2.
configure terminal
3.
router ospf process-id [vrf vpn-name]
4.
local-rib-criteria [forwarding-address] [inter-area-summary] [nssa-translation]
5.
end
6.
show ip ospf process-id rib [redistribution] [network-prefix] [network-mask] [detail]
DETAILED STEPS
Changing the Administrative Distance for Discard Routes
Note
It is recommended to keep the default settings, but you can follow the steps in this section to change the administrative distance for discard routes.
SUMMARY STEPS
1.
enable
2.
configure terminal
3.
router ospf process-id [vrf vpn-name]
4.
discard-route [external [distance]] [internal [distance]]
5.
end
6.
show ip route [ip-address [mask] [longer-prefixes] | protocol [process-id] | list [access-list-number | access-list-name] | static download]
DETAILED STEPS
Examples
The sample output displayed for the show ip route command confirms that the administrative distance for the IP route 192.168.0.0 255.255.255.0 is 110.
Router# show ip route 192.168.0.0 255.255.255.0
Routing entry for 192.168.0.0/24
Known via "ospf 1", distance 110, metric 0, type intra area
Routing Descriptor Blocks:
* directly connected, via Null0
Route metric is 0, traffic share count is 1
Troubleshooting Tips
You can research the output from the debug ip ospf rib command to learn about the function of the local RIB and the interaction between the route redistribution process and the global RIB. For example, you can learn why the routes that OSPF placed in the global RIB are not the same ones that you anticipated.
Configuration Examples for the OSPFv2 Local RIB Feature
This section provides the following configuration examples:
•
Example: Changing the Default Local RIB Criteria
•
Example: Changing the Administrative Distance for Discard Routes
Example: Changing the Default Local RIB Criteria
In the following example, the local-rib-criteria command is entered without any keywords to specify that the local RIB will be used as criteria for all of the following options: forwarding address, inter-area summary, and NSSA translation.
router ospf 1router-id 10.0.0.6local-rib-criteriaExample: Changing the Administrative Distance for Discard Routes
In the following example, the administrative distance for external and internal discard routes is set to 25 and 30, respectively.
router ospf 1router-id 10.0.0.6log-adjacency-changesdiscard-route external 25 internal 30area 4 range 10.2.0.0 255.255.0.0summary-address 192.168.130.2 255.255.255.0redistribute static subnetsnetwork 192.168.129.2 0.255.255.255 area 0network 192.168.130.12 0.255.255.255 area 0The output from the show ip route command verifies that the administrative distance for the internal route 10.2.0.0/16 is set to 30.
Router# show ip route 10.2.0.0 255.255.0.0Routing entry for 10.2.0.0/16Known via "ospf 1", distance 30, metric 1, type intra area
Routing Descriptor Blocks:* directly connected, via Null0Route metric is 1, traffic share count is 1The output from the show ip route command verifies that the administrative distance for the external route 192.168.130.2/24 is set to 25.
Router# show ip route 192.168.130.2 255.255.255.0Routing entry for 192.168.130.2/24Known via "ospf 1", distance 25, metric 20, type intra areaRouting Descriptor Blocks:* directly connected, via Null0Route metric is 20, traffic share count is 1Additional References
The following sections provide references related to the OSPFv2 Local RIB feature.
Related Documents
Standards
Standard TitleNo new or modified standards are supported by this feature, and support for existing standards has not been modified by this feature.
—
MIBs
RFCs
Technical Assistance
Command Reference
The following commands are introduced or modified in the feature or features documented in this module. For information about these commands, see the Cisco IOS IP Routing: OSPF Command Reference. For information about all Cisco IOS commands, use the Command Lookup Tool at http://tools.cisco.com/Support/CLILookup or a Cisco IOS master commands list.
•
debug ip ospf rib
•
discard-route
•
local-rib-criteria
•
show ip ospf rib
Feature Information for the OSPFv2 Local RIB Feature
Table 1 lists the release history for this feature.
Not all commands may be available in your Cisco IOS software release. For release information about a specific command, see the command reference documentation.
Use Cisco Feature Navigator to find information about platform support and software image support. Cisco Feature Navigator enables you to determine which Cisco IOS and Catalyst OS software images support a specific software release, feature set, or platform. To access Cisco Feature Navigator, go to http://www.cisco.com/go/cfn. An account on Cisco.com is not required.
Note
Table 1 lists only the Cisco IOS software release that introduced support for a given feature in a given Cisco IOS software release train. Unless noted otherwise, subsequent releases of that Cisco IOS software release train also support that feature.
Cisco and the Cisco Logo are trademarks of Cisco Systems, Inc. and/or its affiliates in the U.S. and other countries. A listing of Cisco's trademarks can be found at www.cisco.com/go/trademarks. Third party trademarks mentioned are the property of their respective owners. The use of the word partner does not imply a partnership relationship between Cisco and any other company. (1005R)
Any Internet Protocol (IP) addresses and phone numbers used in this document are not intended to be actual addresses and phone numbers. Any examples, command display output, network topology diagrams, and other figures included in the document are shown for illustrative purposes only. Any use of actual IP addresses or phone numbers in illustrative content is unintentional and coincidental.
© 2011 Cisco Systems, Inc. All rights reserved.
