Cisco Systems OL-14356-01 Network Router User Manual


 
Implementing RIP on Cisco IOS XR Software
Configuration Examples for Implementing RIP on Cisco IOS XR Software
RC-348
Cisco IOS XR Routing Configuration Guide
OL-14356-01
interface GigabitEthernet0/6/0/2
ipv4 address 172.16.2.12 255.255.255.0
!
router rip
interface GigabitEthernet0/6/0/0
!
interface GigabitEthernet0/6/0/2
!
!
Configuring RIP on the Provider Edge: Example
The following example shows how to configure basic RIP on the PE with two VPN routing and
forwarding (VRF) instances.
router rip
interface GigabitEthernet0/6/0/0
!
vrf vpn0
interface GigabitEthernet0/6/0/2
!
!
vrf vpn1
interface GigabitEthernet0/6/0/3
!
!
!
Adjusting RIP Timers for each VRF Instance: Example
The following example shows how to adjust RIP timers for each VPN routing and forwarding (VRF)
instance.
For VRF instance vpn0, the timers basic command sets updates to be broadcast every 10 seconds. If a
router is not heard from in 30 seconds, the route is declared unusable. Further information is suppressed
for an additional 30 seconds. At the end of the flush period (45 seconds), the route is flushed from the
routing table.
For VRF instance vpn1, timers are adjusted differently: 20, 60, 60, and 70 seconds.
The output-delay command changes the interpacket delay for RIP updates to 10 milliseconds on vpn1.
The default is that interpacket delay is turned off.
router rip
interface GigabitEthernet0/6/0/0
!
vrf vpn0
interface GigabitEthernet0/6/0/2
!
timers basic 10 30 30 35
!
vrf vpn1
interface GigabitEthernet0/6/0/3
!
timers basic 20 60 60 70
output-delay 10
!
!