我有(在 GNS3 中)三个运行 12.4(23) 的 Cisco 3640 串联连接(R1 -> R2 -> R3)。R1和R2是eBGP对等体,R2和R3是iBGP对等体。R1 通告网络 192.168.1.0/24。R2 收到此路由,但不会将其通告给 R3。
从 eBGP 学到的路由不应该通告给 iBGP 吗?
这是输入的完整配置:
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