RIP BGP Redistribution transparent etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
RIP BGP Redistribution transparent etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

28 Ağustos 2015 Cuma

RIP into MPLS Redistribution

Hi Fellas,

I want to share with you some little small hint for this MPLS topology


ip vrf asd
 rd 1:100
 route-target export 1:100
 route-target import 1:100
!
!

!router ospf 1
 log-adjacency-changes
 network 0.0.0.0 255.255.255.255 area 0
!
router rip
 version 2
 !
 address-family ipv4 vrf asd
  redistribute bgp 1 metric transparent
  network 10.0.0.0
  no auto-summary
  version 2
 exit-address-family
!
router bgp 1
 no synchronization
 bgp log-neighbor-changes
 neighbor 4.4.4.4 remote-as 1
 neighbor 4.4.4.4 update-source Loopback0
 no auto-summary
 !
 address-family vpnv4
  neighbor 4.4.4.4 activate
  neighbor 4.4.4.4 send-community both
 exit-address-family
 !
 address-family ipv4 vrf asd
  redistribute rip
  no synchronization
 exit-address-family

without "transparent" word when we try to redistribute rip over bgp , advertised prefixes are not adverties properly.

Cisco says:

Make sure that a metric, whether a specific metric or the keyword transparent, is configured when redistributing MP-BGP routes into RIP. If one is not specified, the routes may not be redistributed.

Regards !