Ho (in GNS3) tre Cisco 3640 che eseguono 12.4 (23) collegati in serie (R1 -> R2 -> R3). R1 e R2 sono peer eBGP, R2 e R3 sono peer iBGP. R1 pubblicizza la rete 192.168.1.0/24. R2 riceve questo percorso, ma non lo annuncia a R3.
I percorsi appresi da eBGP non dovrebbero essere pubblicizzati su iBGP?
Ecco la configurazione completa come inserita:
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