Table Of Contents
Prerequisites for HFC RIP Relay
Restrictions for HFC RIP Relay
Information About HFC RIP Relay
How to Configure HFC RIP Relay
Enabling HFC RIP Relay for a Single Subnet and Disabling Split-Horizon
Verifying the Configuration of HFC RIP Relay
Configuration Examples for HFC RIP Relay
Enabling HFC RIP Relay: Example
Enabling HFC RIP Relay for a Single Subnet and Disabling Split-Horizon: Example
Feature Information for HFC RIP Relay
HFC RIP Relay
First Published: December 17, 2007Last Updated: July 11, 2008The cable modem HFC RIP Relay feature allows the delivery of Routing Information Protocol (RIP) messages from a Cisco IOS router containing an integrated cable modem to the Hybrid Fiber-Coaxial (HFC) Cable Modem Termination System (CMTS) when they are on different subnets. The integrated cable modem may be physically integrated into the router or via a cable modem High-Speed WAN Interface Card (HWIC). In previous Cisco IOS releases, RIP messages were rejected by the CMTS because the interface on the Cisco IOS router was in a different subnet from the CMTS. The solution involves trapping and handling RIP messages by the cable modem and ensuring that the RIP messages are forwarded to the router. The cable modem HFC RIP Relay feature enhances the scalability, security, and certification requirements of cable operators who require RIP to provision and manage customer cable modems.
In addition, support is added for configuring a static IP address on the cable modem interface.
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 platform and 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 HFC RIP Relay" 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 HFC RIP Relay
•
Restrictions for HFC RIP Relay
•
Information About HFC RIP Relay
•
How to Configure HFC RIP Relay
•
Configuration Examples for HFC RIP Relay
•
Feature Information for HFC RIP Relay
Prerequisites for HFC RIP Relay
The HFC RIP Relay feature requires an Integrated Services Router (ISR) with an integrated cable modem and Cisco IOS Release 12.4(15)XY, 12.4(20)T, or later release and one of the following:
•
Cable modem firmware version filename of C21031014bFU07192007.CDF in the United States
•
Cable modem firmware version filename of C21041014bFU07192007.CDF in Europe and Japan.
ISR cable products include the Cisco 815, Cisco 1805, and the cable modem HWIC in the Cisco 1800, 2800, and 3800 series routers.
Restrictions for HFC RIP Relay
The HFC RIP Relay feature does not support multiple cable modem HWICs in a single router.
Information About HFC RIP Relay
To configure the HFC RIP Relay feature, you should understand the following concepts:
Cable HFC
Cable technology has been adapting to the deployment of fiber since 1994, leading to hybrid solutions known as hybrid fiber-coaxial (HFC). HFC networks contain both optical-fiber and coaxial cable lines. Optical fiber is deployed from the cable headend to cable operator subscribers with up to 2000 subscribers. Coaxial cable is deployed from the optical-fiber feeders to each subscriber. Hybrid networks provide the bandwidth and reliability of optical fiber at a lower cost than a pure fiber network.
HFC RIP Relay
In the provisioning systems used by some cable operators, when a Cisco IOS router containing an integrated cable modem is connected to a CMTS, RIP messages are rejected because the IP address derived from a Dynamic Host Configuration Protocol (DHCP) request for the router is from a different pool of IP addresses than for the cable modems. The RIP messages are rejected by the CMTS because the interface on the Cisco IOS router is in a different subnet from the CMTS. Without requiring additional configuration on the CMTS, the HFC RIP Relay feature enables the cable modem to bridge the RIP messages between the Cisco IOS router and the CMTS.
The cable modem HFC RIP Relay feature is implemented in Cisco IOS Release 12.4(15)XY, 12.4(20)T, and later releases. The feature requires the cable modem firmware version filename of C21031014bFU07192007.CDF in the United States or the cable modem firmware version filename of C21041014bFU07192007.CDF in Europe and Japan, and the feature is turned off by default. To enable HFC RIP relay, use the new service-module ip rip relay command-line interface (CLI) command.
Configuring a static IP address for the Cisco IOS router with an integrated cable modem is also supported in Cisco IOS Release 12.4(15)XY, 12.4(20)T, and later releases, using the ip address command.
How to Configure HFC RIP Relay
This section contains the following tasks:
•
Enabling HFC RIP Relay for a Single Subnet and Disabling Split-Horizon
•
Verifying the Configuration of HFC RIP Relay
Enabling HFC RIP Relay
Perform this task to enable RIP relay on an integrated cable modem. In this task, a static IP address is configured for the cable modem interface and RIP relay is enabled on the interface. Validation of the source IP address of incoming RIP routing updates is disabled to allow RIP updates from unknown sources. RIP is defined as the routing protocol to be used on all interfaces that are connected to networks 10.0.0.0 and 172.18.0.0.
SUMMARY STEPS
1.
enable
2.
configure terminal
3.
interface type number
4.
ip address ip-address mask [secondary]
5.
service-module ip rip relay
6.
exit
7.
router rip
8.
version {1 | 2}
9.
no validate-update-source
10.
network ip-address
11.
network ip-address
12.
end
DETAILED STEPS
Enabling HFC RIP Relay for a Single Subnet and Disabling Split-Horizon
Perform this task to enable RIP relay on an ISR cable modem. In this task, a static IP address is configured for the cable modem interface and RIP relay is enabled on the interface. Split-horizon is disabled, and RIP is defined as the routing protocol to be used on all interfaces connected to network 10.0.0.0.
SUMMARY STEPS
1.
enable
2.
configure terminal
3.
interface type number
4.
ip address ip-address mask [secondary]
5.
service-module ip rip relay
6.
no ip split-horizon
7.
exit
8.
router rip
9.
version {1 | 2}
10.
no validate-update-source
11.
network ip-address
12.
end
DETAILED STEPS
Verifying the Configuration of HFC RIP Relay
Use the following steps to verify the local configuration of HFC RIP relay on a router.
SUMMARY STEPS
1.
enable
2.
show running-config [options]
DETAILED STEPS
Step 1
enable
Enables privileged EXEC mode. Enter your password if prompted.
Router> enableStep 2
show running-config [options]
Displays the running configuration on the local router. The output will display the configuration of the service-module ip rip relay command in the cable modem interface section and the RIP commands under the RIP protocol section.
Router# show running-config...interface Cable-Modem0/3/0ip address 172.20.0.2 255.255.255.0service-module ip rip relayno ip split-horizon...router ripversion 2no validate-update-sourcenetwork 10.0.0.0network 172.18.0.0...
Configuration Examples for HFC RIP Relay
This section contains the following examples:
•
Enabling HFC RIP Relay: Example
•
Enabling HFC RIP Relay for a Single Subnet and Disabling Split-Horizon: Example
Enabling HFC RIP Relay: Example
The following example enables RIP relay on an ISR cable modem. A static IP address is configured for the cable-modem interface, and RIP relay is enabled on the interface. Validation of the source IP address of incoming RIP routing updates is disabled to allow RIP updates from unknown sources. RIP is defined as the routing protocol to be used on all interfaces connected to networks 10.0.0.0 and 172.18.0.0.
interface Cable-Modem0/3/0ip address 10.5.5.5 255.255.255.0service-module ip rip relayexitrouter ripversion 2no validate-update-sourcenetwork 10.0.0.0network 172.18.0.0Enabling HFC RIP Relay for a Single Subnet and Disabling Split-Horizon: Example
The following example enables RIP relay on an ISR cable modem. A static IP address is configured for the cable-modem interface, and RIP relay is enabled on the interface. Validation of the source IP address of incoming RIP routing updates is disabled to allow RIP updates from unknown sources, and split-horizon is disabled. RIP is defined as the routing protocol to be used on all interfaces connected to network 172.20.0.0.
interface Cable-Modem0/3/0ip address 172.20.0.2 255.255.255.0service-module ip rip relayno ip split-horizonexitrouter ripversion 2no validate-update-sourcenetwork 172.20.0.0Where to Go Next
For more details about the configuration of cable modem HWIC cards, see the Cisco Cable Modem High-Speed WAN Interface Cards Configuration Guide.
Additional References
The following sections provide references related to the HFC RIP Relay feature.
Related Documents
Related Topic Document TitleCable modem HWIC card configuration
Cisco Cable Modem High-Speed WAN Interface Cards Configuration Guide
RIP commands: complete command syntax, command mode, defaults, command history, usage guidelines, and examples
MIBs
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 Protocols Command Reference at http://www.cisco.com/en/US/docs/ios/iproute/command/reference/irp_book.html. For information about all Cisco IOS commands, use the Command Lookup Tool at http://tools.cisco.com/Support/CLILookup or the Cisco IOS Master Command List, All Releases, at http://www.cisco.com/en/US/docs/ios/mcl/allreleasemcl/all_book.html.
•
service-module ip rip relay
Feature Information for HFC RIP Relay
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.
CCDE, CCENT, Cisco Eos, Cisco Lumin, Cisco Nexus, Cisco StadiumVision, Cisco TelePresence, the Cisco logo, DCE, and Welcome to the Human Network are trademarks; Changing the Way We Work, Live, Play, and Learn and Cisco Store are service marks; and Access Registrar, Aironet, AsyncOS, Bringing the Meeting To You, Catalyst, CCDA, CCDP, CCIE, CCIP, CCNA, CCNP, CCSP, CCVP, Cisco, the Cisco Certified Internetwork Expert logo, Cisco IOS, Cisco Press, Cisco Systems, Cisco Systems Capital, the Cisco Systems logo, Cisco Unity, Collaboration Without Limitation, EtherFast, EtherSwitch, Event Center, Fast Step, Follow Me Browsing, FormShare, GigaDrive, HomeLink, Internet Quotient, IOS, iPhone, iQ Expertise, the iQ logo, iQ Net Readiness Scorecard, iQuick Study, IronPort, the IronPort logo, LightStream, Linksys, MediaTone, MeetingPlace, MeetingPlace Chime Sound, MGX, Networkers, Networking Academy, Network Registrar, PCNow, PIX, PowerPanels, ProConnect, ScriptShare, SenderBase, SMARTnet, Spectrum Expert, StackWise, The Fastest Way to Increase Your Internet Quotient, TransPath, WebEx, and the WebEx logo are registered trademarks of Cisco Systems, Inc. and/or its affiliates in the United States and certain other countries.
All other trademarks mentioned in this document or Website 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. (0807R)
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.
© 2007-2008 Cisco Systems, Inc. All rights reserved.

