Monday, October 19, 2020

Redistribute routes into BGP from IGP

I am testing out a theory (NOT A REAL DESIGN/ENVIRONMENT) in EVE-NG that I want to redistribute the static route to subnet 10.10.10.0/24 into EIGRP and then redistribute the EIGRP into BGP... BGP routes should be advertised to neighbour router2.

Here below are essential the commands I used on router1:

ip route 10.10.10.0 255.255.255.0 10.20.20.2

router eigrp 1

redistribute static metric 100000 10 10 10 1500

router bgp 65501

bgp log-neighbor-changes

timers bgp 10 30

neighbor 10.20.21.2 remote-as 65500

!

address-family ipv4

redistribute eigrp 1 metric 10

neighbor 10.20.21.2 activate

neighbor 10.20.21.2 next-hop-self

exit-address-family

!

Questions:

  1. Is there a command I can run to see what are the routes that been redistributed into BGP on router1?
  2. Will router2 receive the route to 10.10.10.0/24 via router1 BGP peering? I do not think so because this did not happen in my EVE-NG test...but not sure why?


No comments:

Post a Comment