Hi there,
I'm trying to redistribute an EIGRP summary route into an OSPF 'backbone' network. The redistribution succeeds but my edge router advertises full routes instead of a summary route.
This is my lab configuration:
This is the running config om R8 (EIGRP edge router)
!
hostname R8
!
interface FastEthernet1/0
ip address 172.16.2.4 255.255.255.248
ip summary-address eigrp 1 192.168.0.0 255.255.0.0 90
duplex auto
speed auto
!
router eigrp 1
redistribute ospf 1 metric 40000 1000 255 1 1500
network 192.168.0.0
auto-summary
!
router ospf 1
log-adjacency-changes
redistribute eigrp 1 subnets
network 172.16.2.0 0.0.0.255 area 0
!
This is the routing table of R1:
172.16.0.0/29 is subnetted, 1 subnets
C 172.16.2.0 is directly connected, FastEthernet1/0
10.0.0.0/8 is variably subnetted, 6 subnets, 3 masks
R 10.0.2.0/24 [120/1] via 10.0.0.1, 00:00:27, Serial0/0
R 10.0.0.2/31 [120/1] via 10.0.0.4, 00:00:08, Serial0/1
[120/1] via 10.0.0.1, 00:00:27, Serial0/0
C 10.0.0.0/31 is directly connected, Serial0/0
O 10.0.0.0/8 is a summary, 00:29:11, Null0
R 10.0.1.0/24 [120/1] via 10.0.0.4, 00:00:08, Serial0/1
C 10.0.0.4/31 is directly connected, Serial0/1
192.168.0.0/31 is subnetted, 3 subnets
[COLOR=#ff0000]O E2 192.168.0.0 [110/20] via 172.16.2.4, 00:28:17, FastEthernet1/0[/COLOR]
[COLOR=#ff0000]O E2 192.168.0.2 [110/20] via 172.16.2.4, 00:28:17, FastEthernet1/0[/COLOR]
[COLOR=#ff0000]O E2 192.168.0.4 [110/20] via 172.16.2.4, 00:28:19, FastEthernet1/0[/COLOR]
The red lines should be summarized in one route.
I'm studying both CCNA and CCNP, so I hope I'm posting this in the right forums.
Thanks.