Table Of Contents
Prerequisites for CISCO-IP-URPF-MIB Support
Restrictions for CISCO-IP-URPF-MIB Support
Information About CISCO-IP-URPF-MIB Support
Implementing URPF Notification
Software Basis for URPF Notification
How to Configure URPF Drop-Rate Notification
Configuring URPF Drop-Rate Notification via Syslog
Configuring URPF Drop-Rate Notification via SNMP
Verifying the URPF Configuration
Configuration Examples for CISCO-IP-URPF-MIB Support
Configuring URPF Drop-Rate Notification via Syslog: Example
Configuring URPF Drop-Rate Notification via SNMP: Example
ip verify drop-rate compute interval
ip verify drop-rate compute window
ip verify drop-rate notify hold-down
ip verify unicast notification threshold
Feature Information for CISCO-IP-URPF-MIB Support
CISCO-IP-URPF-MIB Support
First Published: November 20, 2006Last Updated: November 20, 2006Customers use the IP Unicast Reverse Path Forwarding (URPF) feature to avert denial of service (DoS) attacks by verifying the validity of the source IP of an incoming packet. The CISCO-IP-URPF-MIB has been defined to provide Simple Network Management Protocol (SNMP) notification when a specified URPF drop-rate threshold on a managed device is exceeded. The URPF drop-rate threshold can be configured globally for a device, or per interface.
Finding Feature Information in This Module
Your Cisco IOS software release may not support all of the features documented in this module. 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 CISCO-IP-URPF-MIB Support" 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 CISCO-IP-URPF-MIB Support
•Restrictions for CISCO-IP-URPF-MIB Support
•Information About CISCO-IP-URPF-MIB Support
•How to Configure URPF Drop-Rate Notification
•Configuration Examples for CISCO-IP-URPF-MIB Support
•Feature Information for CISCO-IP-URPF-MIB Support
Prerequisites for CISCO-IP-URPF-MIB Support
Cisco IOS support for the CISCO-IP-URPF-MIB requires the following to be configured on the device:
•U RPF
•Cisco Express Forwarding (CEF)
•IP Routing
•SNMP
Restrictions for CISCO-IP-URPF-MIB Support
•Because Cisco IOS does not support Virtual Private Network (VPN) routing and forwarding- (VRF)- specific URPF counters, the following MIB objects related to VRF are not supported:
–cipUrpfIfVrfName
–cipUrpfVrfName
–cipUrpfVrfIfDrops
–cipUrpfVrfIfDiscontinuityTime
•This implementation of the CISCO-IP-URPF MIB supports IPv4 only.
Information About CISCO-IP-URPF-MIB Support
To configure a notification threshold for URPF dropped packets, you should understand the following concepts:
•Implementing URPF Notification
•Software Basis for URPF Notification
Implementing URPF Notification
URPF is a security feature that verifies the validity of the source IP of an incoming packet. When a packet arrives at an interface and its source IP is unknown in the routing table or is a known bad source address, URPF drops the packet. Source IP verification is done to prevent denial of service (DoS) attacks by detecting problems with the incoming packets on an interface. However, URPF is challenging to deploy without some automated monitoring capability.
The CISCO-IP-URPF-MIB allows users to specify a URPF drop-rate threshold on interfaces of a managed device, which when exceeded causes an SNMP notification to be sent. This MIB includes objects for specifying global and per-interface drop counts and drop rates, as well as a means of generating SNMP traps when the drop rate exceeds a configurable per-interface threshold.
Although some parameters can be configured globally, this feature must be configured on individual interfaces.
Software Basis for URPF Notification
The following elements make URPF drop-rate notification work:
Global Scalars
The following global scalars affect the behavior of the MIB agent in computing all drop rates and controlling notification generation:
•cipUrpfDropRateWindow
This object specifies the window of time in the recent past over which the computation takes place. If there were no window (that is, the window is the epoch since booting up), an identical drop count burst at a later time would produce a smaller drop rate than one occurring earlier.
•cipUrpfComputeInterval
This object specifies how often the drop-rate computation occurs.
•cipUrpfDropNotifyHoldDownTime
This object specifies the minimum time between notifications for a particular packet flow on an interface.
Global Tables
The CISCO-IP-URPF-MIB includes the following global tables:
•cipUrpfTable
This table contains global drop count and drop-rate objects per packet flow (for both IPv4 and IPv6). These global rates are useful for determining quickly whether there is URPF activity on the managed device at a specific time.
•cipUrpfVrfTable
This table allows users to index drop counters by VRF, if a VRF routing table is used to determine URPF checking. The table provides a means to index all the URPF-enabled interfaces by VRF.
Per-interface Statistics
The following MIB objects track per-interface statistics:
•cipUrpfIfMonTable
This table contains the statistics for a particular packet flow on an interface.
•cipUrpfIfDrops
This object accumulates URPF drops on an interface. Snapshots of this value are used in the drop-rate computation. Computed drop rate is specified in the cipUrpfIfDropRate object. IfURPF is configured on a subinterface, drop rates are computed.
Per-interface Configuration
The following MIB objects enable per-interface configuration.
•cipUrpfIfDropRateNotifyEnable
This object specifies whether the system produces the cipUrpfIfDropRateNotify notification because URPF has dropped of version cipUrpfIfIpVersion IP packets on the specified interface.
•cipUrpfIfNotifyDropRateThreshold
This object specifies the drop-rate threshold value above which a notification is generated.
Drop-Rate Computation
Whenever URPF is configured on an interface, the drop-rate calculation is performed periodically (at intervals specified by the cipUrpfComputeInterval object). Drop rates are computed over a constantly sliding window, covering the period ending with the performance of the calculation and starting the configured number of seconds before the calculation.
How to Configure URPF Drop-Rate Notification
This section contains the following tasks:
•Configuring URPF Drop-Rate Notification via Syslog
•Configuring URPF Drop-Rate Notification via SNMP
•Verifying the URPF Configuration
Configuring URPF Drop-Rate Notification via Syslog
This task describes how to configure the URPF drop-rate threshold and computation parameters for notification via syslog.
Prerequisites
You must have URPF configured on the router before configuring this feature. For information about configuring URPF, see Configuring Unicast Reverse Path Forwarding.
Restrictions
This feature can be configured only with IPv4.
SUMMARY STEPS
1. enable
2. configure terminal
3. ip verify drop-rate compute window seconds
4. ip verify drop-rate compute interval seconds
5. ip verify drop-rate notify hold-down seconds
6. configure interface type number
7. ip verify unicast notification threshold rate-val
DETAILED STEPS
Configuring URPF Drop-Rate Notification via SNMP
This task describes how to configure the URPF drop-rate threshold and computation parameters for notification via SNMP.
Prerequisites
You must have URPF configured on the router before configuring this feature. For information about configuring URPF, see Configuring Unicast Reverse Path Forwarding.
You must enable SNMP on the router to use this feature. For information about enabling SNMP, see Configuring SNMP Support.
Restrictions
This feature can be configured only with IPv4.
SUMMARY STEPS
1. enable
2. configure terminal
3. ip verify drop-rate compute window seconds
4. ip verify drop-rate compute interval seconds
5. ip verify drop-rate notify hold-down seconds
6. configure interface type number
7. ip verify unicast notification threshold rate-val
8. snmp trap ip verify drop-rate
DETAILED STEPS
Verifying the URPF Configuration
You can use the following two commands to verify the URPF configuration and troubleshoot the operation of URPF drop-rate notification.
SUMMARY STEPS
1. enable
2. show ip interface type number
3. debug ip verify mib
DETAILED STEPS
Examples
The last five lines in following example shows the output of the show ip interface command when URPF is configured:
Router# show ip interface ethernet 2/3
Ethernet2/3 is up, line protocol is upInternet address is 9.9.5.4/16Broadcast address is 255.255.255.255Address determined by non-volatile memoryMTU is 1500 bytesHelper address is not setDirected broadcast forwarding is disabledOutgoing access list is not setInbound access list is not setProxy ARP is enabledLocal Proxy ARP is disabledSecurity level is defaultSplit horizon is enabledICMP redirects are always sentICMP unreachables are always sentICMP mask replies are never sentIP fast switching is disabledIP Flow switching is disabledIP CEF switching is disabledIP Null turbo vectorIP Null turbo vectorIP multicast fast switching is disabledIP multicast distributed fast switching is disabledIP route-cache flags are No CEFRouter Discovery is disabledIP output packet accounting is disabledIP access violation accounting is disabledTCP/IP header compression is disabledRTP/IP header compression is disabledProbe proxy name replies are disabledPolicy routing is disabledNetwork address translation is disabledWCCP Redirect outbound is disabledWCCP Redirect inbound is disabledWCCP Redirect exclude is disabledBGP Policy Mapping is disabledInput features: uRPFIP verify source reachable-via RX, allow default0 verification drops0 suppressed verification drops0 verification drop-raterouter#The following example shows the output of the debug ip verify mib command:
Router# debug ip verify mib
01:29:45: cipUrpfScalar_get, searchType 16101:29:45: ipurpfmib_get_scalars01:29:45: cipUrpfScalar_get, searchType 16101:29:45: cipUrpfScalar_get, searchType 16101:29:45: ipurpfmib_get_scalars01:29:45: cipUrpfScalar_get, searchType 16101:29:45: cipUrpfScalar_get, searchType 16101:29:45: ipurpfmib_get_scalars01:29:45: cipUrpfScalar_get, searchType 161ipurpfmib_get_urpf_entryipurpfmib_get_urpf_entryipurpfmib_get_urpf_entryipurpfmib_get_ urpf_entry01:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 1Configuration Examples for CISCO-IP-URPF-MIB Support
This section includes the following examples:
•Configuring URPF Drop-Rate Notification via Syslog: Example
•Configuring URPF Drop-Rate Notification via SNMP: Example
Configuring URPF Drop-Rate Notification via Syslog: Example
The following example shows how to configure URPF drop-rate notification via syslog:
configure terminalip verify drop-rate compute window 60ip verify drop-rate compute interval 60ip verify drop-rate hold-down 60configure interface ethernet 3/0interface ethernet 3/0ip verify unicast notification threshold 750Configuring URPF Drop-Rate Notification via SNMP: Example
The following example shows how to configure URPF drop-rate notification via SNMP:
configure terminalip verify drop-rate compute window 60ip verify drop-rate compute interval 60ip verify drop-rate hold-down 60configure interface ethernet 3/0interface ethernet 3/0ip verify unicast notification threshold 750snmp trap ip verify drop-rateAdditional References
The following sections provide references related to theCISCO-IP-URPF-MIB Support feature.
Related Documents
Related Topic Document TitleConfiguring Unicast Reverse Path Forwarding
Configuring Unicast Reverse Path Forwarding
Configuring SNMP
Configuring SNMP Support
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
MIB MIBs Link•CISCO-IP-URPF-MIB
To locate and download MIBs for selected platforms, Cisco IOS releases, and feature sets, use Cisco MIB Locator found at the following URL:
RFCs
RFC TitleNo new or modified RFCs are supported by this feature, and support for existing RFCs has not been modified by this feature.
—
Technical Assistance
Command Reference
This section documents new and modified commands only.
•ip verify drop-rate compute interval
•ip verify drop-rate compute window
•ip verify drop-rate notify hold-down
•ip verify unicast notification threshold
•snmp trap ip verify drop-rate
debug ip verify mib
To view debug output that displays the operation of unicast reverse path forwarding (URPF) MIB objects and the helper software, use the debug ip verify mib command in privileged EXEC mode. To disable debugging for URPF, use the no form of this command.
debug ip verify mib
no debug ip verify mib
Syntax Description
This command has no arguments or keywords.
Command Modes
Privileged EXEC
Command History
Usage Guidelines
Debug information for the URPF MIB is collected only when logging is enabled. URPF messages are stored in the logging buffer, and they are not displayed on the console unless you use the debug ip verify mib command.
Examples
The following example shows sample output of the debug ip verify mib command:
router# debug ip verify mib
01:29:45: cipUrpfScalar_get, searchType 16101:29:45: ipurpfmib_get_scalars01:29:45: cipUrpfScalar_get, searchType 16101:29:45: cipUrpfScalar_get, searchType 16101:29:45: ipurpfmib_get_scalars01:29:45: cipUrpfScalar_get, searchType 16101:29:45: cipUrpfScalar_get, searchType 16101:29:45: ipurpfmib_get_scalars01:29:45: cipUrpfScalar_get, searchType 161ipurpfmib_get_urpf_entryipurpfmib_get_urpf_entryipurpfmib_get_urpf_entryipurpfmib_get_ urpf_entry01:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 101:29:45: cipUrpfIfMonEntry_get, searchType 16101:29:45: ipurpfmib_get_urpf_ifmon_entry entry: ST 161, if 1, ip 1The command output is self-explanatory.
Related Commands
Command Descriptionshow ip interface
Displays the usability status of interfaces configured for IP.
ip verify drop-rate compute interval
To configure the interval of time between unicast reverse path forwarding (URPF) drop rate computations, use the ip verify drop-rate compute interval command in global configuration mode. To reset the interval to the default value, use the no form of this command.
ip verify drop-rate compute interval seconds
no ip verify drop-rate compute interval
Syntax Description
seconds
Interval, in seconds, between URPF drop rate computations. The range is from 30 to 300. The default is 30.
Command Default
The drop rate is not computed.
Command Modes
Global configuration
Command History
Usage Guidelines
This command configures the interval between URPF drop rate computations. The configured value applies for the computation of all URPF drop rates, global and per-interface. The value for the compute interval must be less than or equal to the value configured using the ip verify drop-rate compute window command.
If you configure the no form of the command while the cipUrpfDropRateWindow value is configured to be less than the default compute interval value, the following message appears on the console:
"urpf drop rate window < interval"
This error message means the command was not executed. The compute interval remains at the configured value rather than changing to the default value.
Examples
The following example shows how to configure a compute interval of 45 seconds:
ip verify drop-rate compute interval 45Related Commands
Command Descriptionip verify drop-rate compute window
Configures the the interval of time over which the URPF drop count used in the drop rate computation is collected.
ip verify drop-rate compute window
To configure the interval of time over which the unicast reverse path forwarding (URPF) drop count used in the drop rate computation is collected, use the ip verify drop-rate compute window command in global configuration mode. To reset the window to the default value, use the no form of this command.
ip verify drop-rate compute window seconds
no ip verify drop-rate compute window
Syntax Description
seconds
Interval, in seconds, during which the URPF drop count is accumulated for the drop rate computation. The range is from 30 to 300. The default is 300.
Command Default
The drop rate is not calculated.
Command Modes
Global configuration
Command History
Usage Guidelines
This command configures the sliding window that ends with the URPF drop rate computation and begins the configured number of seconds prior to the computation. The configured value applies for the computation of all URPF drop rates, global and per-interface. The value configured for the "compute window" must be greater than or equal to the value configured using the ip verify drop-rate compute interval command.
If you configure the no form of the command while the cipUrpfDropRateInterval value is configured to be greater than the default compute window value, the following message appears on the console:
"urpf drop rate window < interval"
This error message means the command was not executed. The compute window remains at the configured value rather than changing to the default value.
Examples
The following example shows how to configure a compute window of 60 seconds:
ip verify drop-rate compute window 60Related Commands
Command Descriptionip verify drop-rate compute interval
Configures the interval between URPF drop rate computations.
ip verify drop-rate notify hold-down
To configure the minimum time between unicast reverse path forwarding (URPF) drop rate notifications, use the ip verify drop-rate notify hold-down command in global configuration mode. To reset the hold-down time to the default value, use the no form of this command.
ip verify drop-rate notify hold-down seconds
no ip verify drop-rate notify hold-down
Syntax Description
seconds
Minimum time, in seconds, between URPF drop rate notifications. The range is from 30 to 300. The default is 300.
Command Default
No notifications are sent.
Command Modes
Global configuration
Command History
Usage Guidelines
This command configures the interval between URPF drop rate computations. The configured value applies for the computation of all URPF drop rates, global and per-interface.
Examples
The following example shows how to configure a notify hold-down time of 40 seconds:
ip verify drop-rate notify hold-down 40Related Commands
ip verify unicast notification threshold
To configure the threshold value used to determine whether to send a unicast reverse path forwarding (URPF) drop rate notification, use the ip verify unicast notification threshold command in interface configuration mode. To set the notification threshold back to the default value, use the no form of this command.
ip verify unicast notification threshold rate-val
no ip verify unicast notification threshold
Syntax Description
rate-val
Threshold value, in packets per second, used to determine whether to send a URPF drop rate notification. The range is from 0 to 4294967295. The default is 1000.
Command Default
No notifications are sent.
Command Modes
Interface configuration
Command History
Usage Guidelines
This command configures the threshold URPF drop rate which, when exceeded triggers a notification. Configuring a value of 0 means any URPF packet drop will trigger a notification.
Examples
The following example shows how to configure a notification threshold value of 900:
ip verify unicast notification threshold 900Related Commands
show ip interface
To display the usability status of interfaces configured for IP, use the show ip interface command in privileged EXEC mode.
show ip interface [type number] [brief]
Syntax Description
type
(Optional) Interface type.
number
(Optional) Interface number.
brief
(Optional) Displays a summary of the usability status information for each interface.
Command Modes
Privileged EXEC
Command History
Usage Guidelines
The Cisco IOS software automatically enters a directly connected route in the routing table if the interface is usable. A usable interface can send and receive packets. If an interface is not usable, the directly connected routing entry is removed from the routing table. Removing the entry allows the software to use dynamic routing protocols to determine backup routes to the network, if any.
If the interface can provide two-way communication, the line protocol is marked "up." If the interface hardware is usable, the interface is marked "up."
If you specify an optional interface type, you see information for that specific interface.
If you specify no optional arguments, you see information on all the interfaces.
When an asynchronous interface is encapsulated with PPP or Serial Line Internet Protocol (SLIP), IP fast switching is enabled. A show ip interface command on an asynchronous interface encapsulated with PPP or SLIP displays a message indicating that IP fast switching is enabled.
The show ip interface brief command can be used to view a summary of the router interfaces. This command displays the IP address, interface status, and additional information.
The show ip interface brief command does not display any information related to URPF.
Examples
The following examples from Cisco IOS Release 12.3(14)YM2 show:
•Configuration information on interface Gigabit Ethernet0/3, where the IP flow egress feature is configured on the output side (where packets go out of the interface) and the policy route-map named PBR_NAME is configured on the input side (where packets come into the interface).
•Interface information on Gigabit Ethernet interface 0/3 showing that MPF is enabled and that both features are not supported by MPF and are ignored.
The highlighted arrows (for documentation purposes only) show the configured output and input features and the additional MPF interface information.
Router# show running-config interface gigabitethernet 0/3
interface GigabitEthernet0/3ip address 10.1.1.1 255.255.0.0ip flow egress <== output
ip policy route-map PBR_NAME <== input
duplex autospeed automedia-type gbicnegotiation autoendRouter# show ip interface gigabitethernet 0/3
GigabitEthernet0/3 is up, line protocol is upInternet address is 10.1.1.1/16Broadcast address is 255.255.255.255Address determined by setup commandMTU is 1500 bytesHelper address is not setDirected broadcast forwarding is disabledOutgoing access list is not setInbound access list is not setProxy ARP is enabledLocal Proxy ARP is disabledSecurity level is defaultSplit horizon is enabledICMP redirects are always sentICMP unreachables are always sentICMP mask replies are never sentIP fast switching is enabledIP fast switching on the same interface is disabledIP Flow switching is disabledIP CEF switching is enabledIP Feature Fast switching turbo vectorIP VPN Flow CEF switching turbo vectorIP multicast fast switching is enabledIP multicast distributed fast switching is disabledIP route-cache flags are Fast, CEFRouter Discovery is disabledIP output packet accounting is disabledIP access violation accounting is disabledTCP/IP header compression is disabledRTP/IP header compression is disabledPolicy routing is enabled, using route map PBRNetwork address translation is disabledBGP Policy Mapping is disabledIP Multi-Processor Forwarding is enabled <======== MPF information
IP Input features, "PBR",are not supported by MPF and are IGNOREDIP Output features, "NetFlow",are not supported by MPF and are IGNOREDThe following example identifies a downstream VRF. The highlighted line (for documentation purposes only) identifies the downstream VRF.
Router# show ip interface vi 3Virtual-Access3 is up, line protocol is upInterface is unnumbered. Using address of Loopback2 (10.0.0.8)Broadcast address is 255.255.255.255Peer address is 10.8.1.1MTU is 1492 bytesHelper address is not setDirected broadcast forwarding is disabledOutgoing access list is not setInbound access list is not setProxy ARP is enabledLocal Proxy ARP is disabledSecurity level is defaultSplit horizon is enabledICMP redirects are always sentICMP unreachables are always sentICMP mask replies are never sentIP fast switching is enabledIP fast switching on the same interface is enabledIP Flow switching is disabledIP CEF switching is enabledIP Feature Fast switching turbo vectorIP VPN CEF switching turbo vectorVPN Routing/Forwarding "U"Downstream VPN Routing/Forwarding "D"IP multicast fast switching is disabledIP multicast distributed fast switching is disabledIP route-cache flags are Fast, CEFRouter Discovery is disabledIP output packet accounting is disabledIP access violation accounting is disabledTCP/IP header compression is disabledRTP/IP header compression is disabledPolicy routing is disabledNetwork address translation is disabledWCCP Redirect outbound is disabledWCCP Redirect inbound is disabledWCCP Redirect exclude is disabledBGP Policy Mapping is disabledThe following example shows the information displayed when URPF drop-rate notification is configured:
Router# show ip interface ethernet 2/3
Ethernet2/3 is up, line protocol is upInternet address is 10.0.0.4/16Broadcast address is 255.255.255.255Address determined by non-volatile memoryMTU is 1500 bytesHelper address is not setDirected broadcast forwarding is disabledOutgoing access list is not setInbound access list is not setProxy ARP is enabledLocal Proxy ARP is disabledSecurity level is defaultSplit horizon is enabledICMP redirects are always sentICMP unreachables are always sentICMP mask replies are never sentIP fast switching is disabledIP Flow switching is disabledIP CEF switching is disabledIP Null turbo vectorIP Null turbo vectorIP multicast fast switching is disabledIP multicast distributed fast switching is disabledIP route-cache flags are No CEFRouter Discovery is disabledIP output packet accounting is disabledIP access violation accounting is disabledTCP/IP header compression is disabledRTP/IP header compression is disabledProbe proxy name replies are disabledPolicy routing is disabledNetwork address translation is disabledWCCP Redirect outbound is disabledWCCP Redirect inbound is disabledWCCP Redirect exclude is disabledBGP Policy Mapping is disabledURPF Information
Input features: uRPFIP verify source reachable-via RX, allow default0 verification drops0 suppressed verification drops0 verification drop-raterouter#This example shows how to display the usability status for a specific VLAN:
Router# show ip interface vlan 1Vlan1 is up, line protocol is upInternet address is 10.0.0.4/24Broadcast address is 255.255.255.255Address determined by non-volatile memoryMTU is 1500 bytesHelper address is not setDirected broadcast forwarding is disabledOutgoing access list is not setInbound access list is not setProxy ARP is enabledLocal Proxy ARP is disabledSecurity level is defaultSplit horizon is enabledICMP redirects are always sentICMP unreachables are always sentICMP mask replies are never sentIP fast switching is enabledIP fast switching on the same interface is disabledIP Flow switching is disabledIP CEF switching is enabledIP Fast switching turbo vectorIP Normal CEF switching turbo vectorIP multicast fast switching is enabledIP multicast distributed fast switching is disabledIP route-cache flags are Fast, CEFRouter Discovery is disabledIP output packet accounting is disabledIP access violation accounting is disabledTCP/IP header compression is disabledRTP/IP header compression is disabledProbe proxy name replies are disabledPolicy routing is disabledNetwork address translation is disabledWCCP Redirect outbound is disabledWCCP Redirect inbound is disabledWCCP Redirect exclude is disabledBGP Policy Mapping is disabledSampled Netflow is disabledIP multicast multilayer switching is disabledNetflow Data Export (hardware) is enabledTable 1 describes the significant fields shown in the display.
The following is sample output from the show ip interface brief command:
Router# show ip interface brief
Interface IP-Address OK? Method Status ProtocolEthernet0 10.108.00.5 YES NVRAM up upEthernet1 unassigned YES unset administratively down downLoopback0 10.108.200.5 YES NVRAM up upSerial0 10.108.100.5 YES NVRAM up upSerial1 10.108.40.5 YES NVRAM up upSerial2 10.108.100.5 YES manual up upSerial3 unassigned YES unset administratively down downTable 2 describes the significant fields shown in the display.
Related Commands
snmp trap ip verify drop-rate
To configure the router to send a simple network management protocol (SNMP) notification when the unicast reverse path forwarding (URPF) drop rate exceeds the configured threshold, use the snmp trap ip verify drop-rate command in interface configuration mode. To disable SNMP notification, use the no form of this command.
snmp trap ip verify drop-rate
no snmp trap ip verify drop-rate
Syntax Description
This command has no arguments or keywords.
Command Default
Disabled (no SNMP notifications are sent).
Command Modes
Interface configuration
Command History
Usage Guidelines
This command enables cipUrpfIfDropRateNotify notification. This notification is sent when the URPF drop rate exceeds the threshold.
Examples
The following example shows how to configure SNMP notification for the URPF drop rate:
snmp trap ip verify drop-rateRelated Commands
Feature Information for CISCO-IP-URPF-MIB Support
Table 3 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 3 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.
Any Internet Protocol (IP) addresses used in this document are not intended to be actual addresses. Any examples, command display output, and figures included in the document are shown for illustrative purposes only. Any use of actual IP addresses in illustrative content is unintentional and coincidental.
© 2006 Cisco Systems, Inc. All rights reserved.