06-17-2005 09:32 AM - edited 03-03-2019 09:50 AM
Good day,
i want to redistribute bgp into eigrp,there is a special rule for it ??
If possible, please provide an example.
Best regards.
06-17-2005 11:00 AM
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
06-18-2005 02:29 AM
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
06-18-2005 06:14 AM
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,
06-21-2005 01:56 AM
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
06-21-2005 04:45 AM
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,
06-21-2005 11:29 PM
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.
06-22-2005 04:04 AM
Can you access this URL:
Hope this helps,
06-21-2005 04:46 AM
Sorry I forgot the URL. Here it is.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide