Mutual Redistribution Problem
I am trying to do mutual redistribution of rip and ospf using just route tags. The routers are connected to form a diamond. The problem that I am getting is that the router running just rip (R3) sees the routes from the ospf domain; yet, the router only running ospf (R1) doesn’t see the routes from the rip domain. I thought I had the route-maps configured correctly, but I just can’t understand why it is showing up on R1. Am I configuring the route tags wrong? Thank you very much for all your help.
R1
interface Loopback1
ip address 9.9.9.9 255.255.255.255
!
interface Ethernet0
ip address 10.0.0.2 255.255.255.252
media-type 10BaseT
!
interface Ethernet1
ip address 10.0.1.2 255.255.255.252
media-type 10BaseT
router ospf 1
log-adjacency-changes
network 9.9.9.9 0.0.0.0 area 0
network 10.0.0.0 0.0.0.3 area 0
network 10.0.1.0 0.0.0.3 area 0
R2
interface Ethernet0
ip address 10.0.0.1 255.255.255.252
no ip directed-broadcast
interface Serial1
ip address 192.168.2.2 255.255.255.252
no ip directed-broadcast
!
router ospf 1
redistribute rip subnets route-map rip2ospf
passive-interface Serial1
network 10.0.0.0 0.0.0.3 area 0
default-metric 2
!
router rip
version 2
redistribute ospf 1 route-map ospf2rip
passive-interface Ethernet0
network 192.168.2.0
default-metric 2
no auto-summary
route-map rip2ospf deny 10
match tag 200
!
route-map rip2ospf permit 20
set tag 100
!
route-map ospf2rip deny 10
match tag 100
!
route-map ospf2rip permit 20
set tag 200
R3
interface Loopback1
ip address 2.2.2.2 255.255.255.255
interface Serial0
ip address 192.168.1.1 255.255.255.252
no fair-queue
clockrate 64000
!
interface Serial1
ip address 192.168.2.1 255.255.255.252
no fair-queue
clockrate 64000
router rip
version 2
network 2.0.0.0
network 192.168.1.0
network 192.168.2.0
no auto-summary
R4
interface Ethernet0
ip address 10.0.1.1 255.255.255.252
!
interface Serial0
ip address 192.168.1.2 255.255.255.252
router ospf 1
redistribute rip subnets route-map rip2ospf
passive-interface Serial0
network 10.0.1.0 0.0.0.3 area 0
default-metric 2
!
router rip
version 2
redistribute ospf 1 route-map ospf2rip
passive-interface Ethernet0
network 192.168.1.0
default-metric 2
no auto-summary
route-map rip2ospf deny 10
match tag 200
!
route-map rip2ospf permit 20
set tag 100
!
route-map ospf2rip deny 10
match tag 100
!
route-map ospf2rip permit 20
set tag 200
R1 show ip route
Gateway of last resort is not set
9.0.0.0/32 is subnetted, 1 subnets
C 9.9.9.9 is directly connected, Loopback1
10.0.0.0/30 is subnetted, 2 subnets
C 10.0.0.0 is directly connected, Ethernet0
C 10.0.1.0 is directly connected, Ethernet1
R3 show ip route
Gateway of last resort is not set
2.0.0.0/32 is subnetted, 1 subnets
C 2.2.2.2 is directly connected, Loopback1
9.0.0.0/32 is subnetted, 1 subnets
R 9.9.9.9 [120/2] via 192.168.2.2, 00:00:24, Serial1
[120/2] via 192.168.1.2, 00:00:07, Serial0
10.0.0.0/30 is subnetted, 2 subnets
R 10.0.0.0 [120/2] via 192.168.2.2, 00:00:24, Serial1
[120/2] via 192.168.1.2, 00:00:07, Serial0
R 10.0.1.0 [120/2] via 192.168.2.2, 00:00:24, Serial1
[120/2] via 192.168.1.2, 00:00:07, Serial0
192.168.1.0/30 is subnetted, 1 subnets
C 192.168.1.0 is directly connected, Serial0
192.168.2.0/30 is subnetted, 1 subnets
C 192.168.2.0 is directly connected, Serial1