- Read Me First
- Configuring OSPF
- IPv6 Routing: OSPFv3
- IPv6 Routing: OSPFv3 Authentication Support with IPsec
- OSPFv2 Cryptographic Authentication
- OSPFv3 External Path Preference Option
- OSPFv3 Graceful Restart
- Graceful Shutdown Support for OSPFv3
- OSPF Stub Router Advertisement
- OSPF Update Packet-Pacing Configurable Timers
- OSPF Sham-Link Support for MPLS VPN
- OSPF Support for Multi-VRF on CE Routers
- OSPFv2 Multiarea Adjacency
- OSPFv2 Autoroute Exclude
- OSPFv3 Address Families
- OSPFv3 Authentication Trailer
- Autoroute Announce and Forwarding Adjacencies For OSPFv3
- OSPFv3 Autoroute Exclude
- OSPFv2 IP FRR Local Microloop Avoidance
- OSPFv2-OSPF Live-Live
- OSPF Forwarding Address Suppression in Translated Type-5 LSAs
- OSPF Inbound Filtering Using Route Maps with a Distribute List
- OSPFv3 Route Filtering Using Distribute-List
- OSPF Shortest Path First Throttling
- OSPF Support for Fast Hello Packets
- OSPF Incremental SPF
- OSPF Limit on Number of Redistributed Routes
- OSPFv3 Fast Convergence: LSA and SPF Throttling
- OSPFv3 Max-Metric Router LSA
- OSPF Link-State Advertisement Throttling
- OSPF Support for Unlimited Software VRFs per PE Router
- OSPF Area Transit Capability
- OSPF Per-Interface Link-Local Signaling
- OSPF Link-State Database Overload Protection
- OSPF MIB Support of RFC 1850 and Latest Extensions
- OSPF Enhanced Traffic Statistics
- TTL Security Support for OSPFv3 on IPv6
- Configuring OSPF TTL Security Check and OSPF Graceful Shutdown
- OSPF Sham-Link MIB Support
- OSPF SNMP ifIndex Value for Interface ID in Data Fields
- OSPFv2 Local RIB
- OSPF Support for Forwarding Adjacencies over MPLS TE Tunnels
- Enabling OSPFv2 on an Interface Basis
- OSPF Nonstop Routing
- OSPFv3 NSR
- OSPFv2 Loop-Free Alternate Fast Reroute
- OSPFv3 MIB
- Prefix Suppression Support for OSPFv3
- OSPFv3 VRF-Lite/PE-CE
- OSPFv3 ABR Type 3 LSA Filtering
- OSPFv3 Demand Circuit Ignore
- OSPF IPv4 Remote Loop-Free Alternate IP Fast Reroute
- OSPFv3 Multiarea Adjacency
- OSPF Limiting Adjacency Formations
- Finding Feature Information
- Prerequisites for OSPF Limit on Number of Redistributed Routes
- Information About OSPF Limit on Number of Redistributed Routes
- How to Limit the Number of OSPF Redistributed Routes
- Configuration Examples for OSPF Limit on Number of Redistributed Routes
- Additional References
- Feature Information for OSPF Limit on Number of Redistributed Routes
OSPF Limit on Number of Redistributed Routes
Open Shortest Path First (OSPF) supports a user-defined maximum number of prefixes (routes) that are allowed to be redistributed into OSPF from other protocols or other OSPF processes. Such a limit could help prevent the router from being flooded by too many redistributed routes.
- Finding Feature Information
- Prerequisites for OSPF Limit on Number of Redistributed Routes
- Information About OSPF Limit on Number of Redistributed Routes
- How to Limit the Number of OSPF Redistributed Routes
- Configuration Examples for OSPF Limit on Number of Redistributed Routes
- Additional References
- Feature Information for OSPF Limit on Number of Redistributed Routes
Finding Feature Information
Your software release may not support all the features documented in this module. For the latest caveats and feature information, see Bug Search Tool and the release notes for your platform and software release. To find information about the features documented in this module, and to see a list of the releases in which each feature is supported, see the feature information table.
Use Cisco Feature Navigator to find information about platform support and Cisco software image support. To access Cisco Feature Navigator, go to www.cisco.com/go/cfn. An account on Cisco.com is not required.
Prerequisites for OSPF Limit on Number of Redistributed Routes
It is presumed that you have OSPF configured in your network, along with another protocol or another OSPF process you are redistributing.
Information About OSPF Limit on Number of Redistributed Routes
If large number of IP routes are sent into OSPF by redistributing Border Gateway Protocol (BGP) into OSPF, the network can be severely flooded. Limiting the number of redistributed routes prevents this potential problem.
OSPF can receive and accept packets from non-routable addresses (for example, 0.0.0.0/7) also.
How to Limit the Number of OSPF Redistributed Routes
This section contains the following procedures, which are mutually exclusive. That is, you cannot both limit redistributed prefixes and also choose to be warned.
- Limiting the Number of Redistributed Routes
- Requesting a Warning About the Number of Routes Redistributed into OSPF
Limiting the Number of Redistributed Routes
Note | You cannot both limit redistributed prefixes and also choose to be warned. |
1.
enable
2.
configure
terminal
3.
router
ospf
process-id
4.
redistribute
protocol
[process-id |
as-number]
[metric metric-value]
[metric-type type-value] [match{internal| external 1| external 2}][tag tag-value]
[route-map map-tag]
[subnets]
5.
redistribute
maximum-prefix
maximum
[threshold]
6.
end
7.
show
ip
ospf
[process-id]
DETAILED STEPS
Requesting a Warning About the Number of Routes Redistributed into OSPF
Note | You cannot both limit redistributed prefixes and also choose to be warned. |
1.
enable
2.
configure
terminal
3.
router
ospf
process-id
4.
redistribute
protocol
[process-id |
as-number]
[metric metric-value]
[metric-type type-value] [match{internal| external 1| external 2}][tag tag-value]
[route-map map-tag]
[subnets]
5.
redistribute
maximum-prefix
maximum
[threshold] warning-only
6.
end
DETAILED STEPS
Command or Action | Purpose | |
---|---|---|
Step 1 |
enable
Example: Router> enable |
Enables privileged EXEC mode. |
Step 2 |
configure
terminal
Example: Router# configure terminal |
Enters global configuration mode. |
Step 3 |
router
ospf
process-id
Example: Router(config)# router ospf 1 |
Configures an OSPF routing process. |
Step 4 |
redistribute
protocol
[process-id |
as-number]
[metric metric-value]
[metric-type type-value] [match{internal| external 1| external 2}][tag tag-value]
[route-map map-tag]
[subnets]
Example: Router(config-router)# redistribute eigrp 10 |
Redistributes routes from one routing domain into another routing domain. |
Step 5 |
redistribute
maximum-prefix
maximum
[threshold] warning-only Example: Router(config-router)# redistribute maximum-prefix 1000 80 warning-only |
Causes a warning message to be logged when the maximum number of IP prefixes has been redistributed into OSPF.
|
Step 6 |
end
Example: Router(config-router)# end |
Exits router configuration mode. |
Configuration Examples for OSPF Limit on Number of Redistributed Routes
- Example OSPF Limit the Number of Redistributed Routes
- Example Requesting a Warning About the Number of Redistributed Routes
Example OSPF Limit the Number of Redistributed Routes
This example sets a maximum of 1200 prefixes that can be redistributed into OSPF process 1. Prior to reaching the limit, when the number of prefixes redistributed reaches 80 percent of 1200 (960 prefixes), a warning message is logged. Another warning is logged when the limit is reached and no more routes are redistributed.
router ospf 1 router-id 10.0.0.1 domain-id 5.6.7.8 log-adjacency-changes timers lsa-interval 2 network 10.0.0.1 0.0.0.0 area 0 network 10.1.5.1 0.0.0.0 area 0 network 10.2.2.1 0.0.0.0 area 0 redistribute static subnets redistribute maximum-prefix 1200 80
Example Requesting a Warning About the Number of Redistributed Routes
This example allows two warning messages to be logged, the first if the number of prefixes redistributed reaches 85 percent of 600 (510 prefixes), and the second if the number of redistributed routes reaches 600. However, the number of redistributed routes is not limited.
router ospf 1 network 10.0.0.0 0.0.0.255 area 0 redistribute eigrp 10 subnets redistribute maximum-prefix 600 85 warning-only
Additional References
Related Documents
Related Topic |
Document Title |
---|---|
Cisco IOS commands |
|
OSPF commands |
Cisco IOS IP Routing: OSPF Command Reference |
OSPFv3 Address Families |
OSPFv3 Address Families module |
Standards
Standards |
Title |
---|---|
No new or modified standards are supported by this feature, and support for existing standards has not been modified by this feature. |
— |
MIBs
MIBs |
MIBs Link |
---|---|
No new or modified MIBs are supported by this feature, and support for existing MIBs has not been modified by this feature. |
To locate and download MIBs for selected platforms, Cisco software releases, and feature sets, use Cisco MIB Locator found at the following URL: |
RFCs
RFCs |
Title |
---|---|
RFC 5187. |
OSPFv3 Graceful Restart |
Technical Assistance
Description |
Link |
---|---|
The Cisco Support and Documentation website provides online resources to download documentation, software, and tools. Use these resources to install and configure the software and to troubleshoot and resolve technical issues with Cisco products and technologies. Access to most tools on the Cisco Support and Documentation website requires a Cisco.com user ID and password. |
Feature Information for OSPF Limit on Number of Redistributed Routes
The following table provides release information about the feature or features described in this module. This table lists only the software release that introduced support for a given feature in a given software release train. Unless noted otherwise, subsequent releases of that software release train also support that feature.
Use Cisco Feature Navigator to find information about platform support and Cisco software image support. To access Cisco Feature Navigator, go to www.cisco.com/go/cfn. An account on Cisco.com is not required.
Feature Name |
Releases |
Feature Information |
---|---|---|
OSPF Limit on Number of Redistributed Routes |
Cisco IOS XE Release 2.1 Cisco IOS XE Release 2.6 |
OSPF supports a user-defined maximum number of prefixes (routes) that are allowed to be redistributed into OSPF from other protocols or other OSPF processes. Such a limit could help prevent the router from being flooded by too many redistributed routes. The following commands are introduced or modified in the feature documented in this module:
|