Options

Redistribution RIPv2 and EIGRP Prob. ?

sniper_heresniper_here Member Posts: 48 ■■□□□□□□□□
Hi All,
Ihave a problem with redistribution between RIP and EIGRP ,
This is my network >>

87514835.jpg

I configure the right side with RIpv2 and the left side with EIGRP and I use R1 to redistribute between this two side

The prob. is when I run sh ip route is the routers that use EIGRP >>


Router#sh ip route
Codes: C - connected, S - static, I - IGRP, 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, E - EGP
i - IS-IS, 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
Gateway of last resort is not set
D 10.0.0.0/8 [90/20517120] via 12.0.0.1, 00:10:44, FastEthernet1/0
D 11.0.0.0/8 [90/30720] via 12.0.0.1, 00:10:52, FastEthernet1/0
C 12.0.0.0/8 is directly connected, FastEthernet1/0
D EX 13.0.0.0/8 [170/20773120] via 12.0.0.1, 00:10:44, FastEthernet1/0
D EX 14.0.0.0/8 [170/20773120] via 12.0.0.1, 00:10:44, FastEthernet1/0
D EX 15.0.0.0/8 [170/20773120] via 12.0.0.1, 00:10:44, FastEthernet1/0


Its show the network that use RIP is external EIGRP ?

Whats the prob. please !
This is my PT file
http://www.mediafire.com/?gmgmjjqkzmo

Comments

  • Options
    Mrock4Mrock4 Banned Posts: 2,359 ■■■■■■■■□□
    You're redistributing properly. If you're expecting to see a "R" and the RIP routes, you won't..they'll show up as D EX (EIGRP External) and an AD of 170, unless you've configured them otherwise. Can you post a show run?
  • Options
    sniper_heresniper_here Member Posts: 48 ■■□□□□□□□□
    Mrock4 wrote: »
    You're redistributing properly. If you're expecting to see a "R" and the RIP routes, you won't..they'll show up as D EX (EIGRP External) and a metric of 170, unless you've configured them otherwise. Can you post a show run?
    I know that , It must appear as D not R ,
    But why it appear as EX D(170) instead of only D(90)?

    This is show run of the redistribute router(top one)

    Router#sh running-config
    Building configuration...
    Current configuration : 846 bytes
    !
    version 12.2
    no service timestamps log datetime msec
    no service timestamps debug datetime msec
    no service password-encryption
    !
    hostname Router
    !
    !
    !
    !
    !
    !
    !
    !
    !
    !
    !
    interface FastEthernet0/0
    no ip address
    duplex auto
    speed auto
    shutdown
    !
    interface FastEthernet1/0
    no ip address
    duplex auto
    speed auto
    shutdown
    !
    interface Serial2/0
    ip address 10.0.0.1 255.0.0.0
    !
    interface Serial3/0
    ip address 13.0.0.1 255.0.0.0
    !
    interface FastEthernet4/0
    no ip address
    shutdown
    !
    interface FastEthernet5/0
    no ip address
    shutdown
    !
    router eigrp 1
    redistribute rip metric 1000 100 250 100 1500
    network 10.0.0.0
    network 13.0.0.0
    no auto-summary
    !
    router rip
    version 2
    redistribute eigrp 1 metric 1
    network 10.0.0.0
    network 13.0.0.0
    no auto-summary
    !
    ip classless
    !
    !
    !
    !
    !
    !
    !
    !
    !
    line con 0
    line vty 0 4
    login
    !
    !
    !
    end
  • Options
    jason_lundejason_lunde Member Posts: 567
    I know that , It must appear as D not R ,
    But why it appear as EX D(170) instead of only D(90)?
    You should read up on this:
    Enhanced Interior Gateway Routing Protocol - Cisco Systems

    Paticuarly the "Redistrubing to and From other Protocols" section.

    EIGRP external routes default to D EX with an AD of 170.
Sign In or Register to comment.