JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Sun Ethernet Fabric Operating System

RIP Administration Guide

search filter icon
search icon

Document Information

Using This Documentation

Product Notes

Related Documentation

Acronyms and Abbreviations

CLI Command Modes

Feedback

Support and Accessibility

RIP Overview

Protocol Description

Configuring the RIP Topology Example

RIP Topology 1

RIP Topology 2

Configure Switch 1

Configure Switch 2

Configure Switch 3

General Configurations

Managing RIP

Enable RIP

Disable RIP

Enabling RIP on an IP Network

Configuring RIP Security

Enable RIP Security

Disable RIP Security

Configuring the RIP Packet Retransmission Interval and Retry Count

Set the RIP Packet Retransmission Interval and Retry Count

Reset the Retransmission Interval and Retry Count

Configuring RIP Neighbors

Add a RIP Neighbor

Remove a RIP Neighbor

Configuring the RIP Passive Interface

Enable the RIP Passive Interface

Disable the RIP Passive Interface

Configuring the Output Delay

Enable the Output Delay

Disable the Output Delay

Configuring Redistribution

Enable Redistribution

Test Redistribution

Disable Redistribution

Configuring the Default Metric

Set the Default Metric

Test the Default Metric

Reset the Default Metric

Managing the auto-summary Option

Disable the auto-summary Option

Enable the auto-summary Option

Configuring Interface-Specific RIP Parameters

Configuring Interface-Specific Authentication

Configuring the RIP Default Route Propagation

Configuring the Version for Receiving RIP Advertisement

Configuring the Summary Address

Configure Basic Timers

Configuring the split-horizon Option

Configuring the Debug Level for RIP

Enable Debug

Disable Debug

Test Redistribution

  1. On switch 1, enter the configuration mode for the router.
    SEFOS# configure terminal
    SEFOS(config)# router rip
    SEFOS(config-router)# network 10.0.0.1
  2. Enable redistribution.
    SEFOS(config-router)# redistribute static
    SEFOS(config-router)# exit
  3. Add static routes.
    SEFOS(config)# ip route 50.0.0.0 255.0.0.0 vlan 2
    SEFOS(config)# ip route 60.0.0.0 255.0.0.0 vlan 2 
    SEFOS(config)# ip route 70.0.0.0 255.0.0.0 vlan 2 
    SEFOS(config)# ip route 80.0.0.0 255.0.0.0 vlan 2 
    SEFOS(config)# end
  4. On switch 2, test the redistribution.
    SEFOS# configure terminal
    SEFOS(config)# router rip
    SEFOS(config-router)# network 10.0.0.2
    SEFOS(config-router)# end
  5. Review the redistribution of static routes on switch 1.
    SEFOS# show ip protocols
     
    Routing Protocol is rip
     
    Vrf  default
     RIP2 security level is Maximum
     Redistributing : rip, static
     Output Delay is disabled
     Retransmission timeout interval is 5 seconds
     Number of retransmission retries is 36
     Default metric is 3
     Auto-Summarisation of routes is enabled
     Routing for Networks :
       10.0.0.0
     Routing Information Sources :
     Interface Specific Address Summarization :
     Trusted Neighors :
     Interface vlan1
      Sending updates every 30 seconds
      Invalid after 180 seconds
      Flushed after 120 seconds
      Send version is 1 2, receive version is 1 2
      Authentication type is none
      Split Horizon with poissoned reverse is enabled
      Restrcts default route installation
       Restricts default route origination
  6. On switch 2, review the RIP route entries for the static routes that were added in switch 1.

    In switch 1, static routes with the metric of 3 are redistributed into the RIP domain. The following output shows the redistributed static routes with the metric of 4.

    SEFOS# show ip rip database
     
    10.0.0.0/8  [1]        auto-summary
    10.0.0.0/16 [1]        directly connected, vlan1
    50.0.0.0/8  [4]        auto-summary
    50.0.0.0/8  [4]        via 10.0.0.1, vlan1
    60.0.0.0/8  [4]        auto-summary
    60.0.0.0/8  [4]        via 10.0.0.1, vlan1
    70.0.0.0/8  [4]        auto-summary
    70.0.0.0/8  [4]        via 10.0.0.1, vlan1
    80.0.0.0/8  [4]        auto-summary
    80.0.0.0/8  [4]        via 10.0.0.1, vlan1
  7. Review the IP routing table on switch 2.
    SEFOS# show ip route
     
    C 10.0.0.0/16 is directly connected, vlan1
    C 30.2.2.0/24 is directly connected, vlan3
    R 50.0.0.0/8  [4] via 10.0.0.1
    R 60.0.0.0/8  [4] via 10.0.0.1
    R 70.0.0.0/8  [4] via 10.0.0.1
    R 80.0.0.0/8  [4] via 10.0.0.1