Tengo (en GNS3) tres Cisco 3640 que funcionan con 12.4 (23) conectados en serie (R1 -> R2 -> R3). R1 y R2 son pares de eBGP, R2 y R3 son pares de iBGP. R1 anuncia la red 192.168.1.0/24. R2 recibe esta ruta, pero no la anuncia a R3.
¿No deberían anunciarse las rutas aprendidas de eBGP a iBGP?
Aquí está la configuración completa como se ingresó:
loop0(R1)s0/0 <--> s0/0(R2)s0/1 <--> s0/1(R3)
R1:
configure terminal
interface s0/0
ip address 172.16.1.1 255.255.255.252
no shutdown
interface loopback0
ip address 192.168.1.1 255.255.255.0
router bgp 1
neighbor 172.16.1.2 remote-as 2
network 192.168.1.0 mask 255.255.255.0
R2:
configure terminal
interface s0/0
ip address 172.16.1.2 255.255.255.252
no shutdown
interface s0/1
ip address 172.16.1.5 255.255.255.252
no shutdown
router bgp 2
neighbor 172.16.1.1 remote-as 1
neighbor 172.16.1.6 remote-as 2
R3:
configure terminal
interface s0/1
ip address 172.16.1.6 255.255.255.252
no shutdown
router bgp 2
neighbor 172.16.1.5 remote-as 2