cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1264
Views
5
Helpful
2
Replies

Packet Tracer EIGRP/OSPF

53555
Level 1
Level 1

all attached is my packet tracer that i am working on. i am still getting acquainted to everything and am probably missing something obvious but i am having trouble where i cant get Router 0 to learn the routes from router 3 and vice versa everything else seems to be fine. i purposely want one side to be ospf and 1 side to be eigrp. please any suggestions appreciated. 

1 Accepted Solution

Accepted Solutions

Hello,

 

you need to do mutual EIGRP/OSPF redistribution on Router 1:

 

router eigrp 100
redistribute ospf 100 metric 1 1 1 1 1
network 10.0.0.0 0.0.0.255
network 30.0.0.0 0.0.0.255
auto-summary
!
router ospf 100
log-adjacency-changes
redistribute eigrp 100
network 30.0.0.0 0.0.0.255 area 0

 

Attached the revised file.

View solution in original post

2 Replies 2

Hello,

 

you need to do mutual EIGRP/OSPF redistribution on Router 1:

 

router eigrp 100
redistribute ospf 100 metric 1 1 1 1 1
network 10.0.0.0 0.0.0.255
network 30.0.0.0 0.0.0.255
auto-summary
!
router ospf 100
log-adjacency-changes
redistribute eigrp 100
network 30.0.0.0 0.0.0.255 area 0

 

Attached the revised file.

many thanks on your quick answer. i appreciate it worked exactly as i needed