cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
8662
Views
24
Helpful
8
Replies

redistribute bgp into eigrp

stephtchoko
Level 3
Level 3

Good day,

i want to redistribute bgp into eigrp,there is a special rule for it ??

If possible, please provide an example.

Best regards.

8 Replies 8

Kevin Dorrell
Level 10
Level 10

router eigrp as-number

  redistribute bgp bgp-as-number

  default-metric 1000 100 255 1 1500

Don't forget to configure the metric, otherwise it won't happen.

Kevin Dorrell

Luxembourg

I have done it, but the bpg isn't redistributed into eigrp .

There is topology

RTA connected to RTB via BGP and RTB connected to RTC via EIGRP.

RTA:

interface Loopback0

ip address 195.24.15.1 255.255.255.0

!

interface Loopback1

ip address 195.24.14.1 255.255.255.0

!

interface Ethernet0/0

ip address 196.202.232.63 255.255.255.128

full-duplex

!

interface Ethernet0/1

ip address 192.168.1.1 255.255.255.0

full-duplex

!

router bgp 65512

no synchronization

bgp log-neighbor-changes

network 195.24.14.0

network 196.202.232.0

neighbor 196.202.232.65 remote-as 65512

RTB

interface Ethernet0/0

ip address 196.202.232.65 255.255.255.128

no ip directed-broadcast

half-duplex

!

interface Ethernet0/1

ip address 10.2.2.2 255.255.255.0

no ip directed-broadcast

half-duplex

!

router eigrp 100

redistribute bgp 65512

network 10.0.0.0

default-metric 1000 100 255 1 1500

distance 200 0.0.0.0 255.255.255.255

!

router bgp 65512

no synchronization

neighbor 196.202.232.63 remote-as 65512

!

ip classless

RTC

interface Loopback0

ip address 172.16.1.1 255.255.255.0

!

interface Loopback1

ip address 1.1.1.1 255.255.255.0

!

interface Ethernet0/0

no ip address

shutdown

half-duplex

!

interface Ethernet0/1

ip address 10.2.2.3 255.255.255.0

half-duplex

!

router eigrp 100

network 1.0.0.0

network 10.0.0.0

network 172.16.0.0

no auto-summary

There are show ip route on RTC:

Gateway of last resort is not set

1.0.0.0/24 is subnetted, 1 subnets

C 1.1.1.0 is directly connected, Loopback1

172.16.0.0/24 is subnetted, 1 subnets

C 172.16.1.0 is directly connected, Loopback0

10.0.0.0/24 is subnetted, 1 subnets

C 10.2.2.0 is directly connected, Ethernet0/1

No redistribution.

Please help me, what is the problem ??

Best regards

Can you do a "show ip bgp" on RTB to verify that routes from RTA are received via BGP. If not, make sure that RTA is originating the routes in BGP.

Hope this helps,

Regards,
Harold Ritter, CCIE #4168 (EI, SP)

The is "show ip bgp " result:

RTB#show ip bgp

BGP table version is 3, local router ID is 196.202.232.65

Status codes: s suppressed, d damped, h history, * valid, > best, i - internal

Origin codes: i - IGP, e - EGP, ? - incomplete

Network Next Hop Metric LocPrf Weight Path

*>i195.24.14.0 196.202.232.63 0 100 0 i

*>i196.202.232.0 196.202.232.63 0 100 0 i

The issue is that by default iBGP routes are not redistributed in the IGP. You can use "bgp redistribute-internal" command under the router bgp process to change this default behavior.

Please refer to the following URL for more information about this command:

Hope this helps,

Regards,
Harold Ritter, CCIE #4168 (EI, SP)

Thank you Hritter.

Now the routes can be redistribute from bgp to eigrp.

But i don't see the url you to me.

Best regards.

Can you access this URL:

http://www.cisco.com/univercd/cc/td/doc/product/software/ios123/123cgcr/iprrp_r/ip2_a1g.htm#wp1057321

Hope this helps,

Regards,
Harold Ritter, CCIE #4168 (EI, SP)

Sorry I forgot the URL. Here it is.

http://www.cisco.com/univercd/cc/td/doc/product/software/ios123/123cgcr/iprrp_r/ip2_a1g.htm#wp1057321

Regards,
Harold Ritter, CCIE #4168 (EI, SP)