cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1182
Views
1
Helpful
15
Replies

redistribute rip into ospf

i_hanu
Level 1
Level 1

Hi!

Please help me, where am I wrong?

I don't receice on BUH03 routes from BUH02 and on BUH02 routes from BUH03.

I attached a map photo.

map.PNG

BUH03
router ospf 2 vrf REG
redistribute bgp 100 subnets
network 172.16.51.0 0.0.0.255 area 0
!
router ospf 1
network 10.0.0.28 0.0.0.3 area 0
!
router bgp 100
bgp log-neighbor-changes
!
address-family ipv4 vrf REG
redistribute ospf 2
exit-address-family

IOU2#show ip route vrf REG

Routing Table: REG
Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP
a - application route
+ - replicated route, % - next hop override

Gateway of last resort is not set

172.16.0.0/16 is variably subnetted, 3 subnets, 2 masks
R 172.16.32.0/24 [120/1] via 172.16.52.2, 00:00:21, Vlan50
C 172.16.52.0/24 is directly connected, Vlan50
L 172.16.52.1/32 is directly connected, Vlan50

==========================================

BUH02

router rip
!
address-family ipv4 vrf REG
redistribute bgp 100
network 172.16.0.0
no auto-summary
version 2
exit-address-family
!
router bgp 100
bgp log-neighbor-changes
!
address-family ipv4 vrf REG
redistribute rip
exit-address-family

BUH03#show ip route vrf REG

Routing Table: REG
Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP
a - application route
+ - replicated route, % - next hop override

Gateway of last resort is not set

172.16.0.0/16 is variably subnetted, 2 subnets, 2 masks
C 172.16.51.0/24 is directly connected, Vlan50
L 172.16.51.1/32 is directly connected, Vlan50

15 Replies 15

mitchelhorstone
Level 1
Level 1

To redistribute routes from RIP (Routing Information Protocol) into OSPF (Open Shortest Path First), you need to configure redistribution on the router running OSPF. Here's a generic example of how you might do this in a Cisco environment:

bashCopy code
router ospf [process-id] redistribute rip subnets

In this example:

  • router ospf [process-id]: Enter OSPF configuration mode, replacing [process-id] with the OSPF process ID.

  • redistribute rip subnets: This command redistributes RIP routes into OSPF, and subnets specifies that the subnet information should also be redistributed.

Keep in mind that the exact commands may vary depending on your specific router model and software version. Additionally, redistribution should be carefully planned to avoid routing loops and other issues, so it's important to understand the implications of redistributing routes between different routing protocols.

Always consult the documentation specific to your router platform and software version for accurate and detailed instructions.......

 
 
 
Review Cisco Networking for a $25 gift card