我有下一个 GNS3 实验室
我有两个自治系统(100,200),当 AS 100 运行具有两个区域的 OSPF 时0
,1
. AS 200只有路由器和电脑,很简单。但我不知道如何在 AS 100 和 as 200 之间设置 BGP 协议。
我应该如何设置 R7 和 R8 以使用 BGP?
AS100
AS200
OSPF 设置
R1:
R1#enable
R1#configure terminal
R1(config)#router ospf 1
R1(config-router)#Router-id 1.1.1.1
R1(config-router)#network 192.168.0.0 0.0.0.255 area 0
R1(config-router)#network 10.0.0.0 0.0.0.3 area 0
R2:
R1#enable
R1#configure terminal
R1(config)#router ospf 1
R1(config-router)#Router-id 2.2.2.2
R1(config-router)#network 10.0.0.0 0.0.0.3 area 0
R1(config-router)#network 10.0.0.4 0.0.0.3 area 0
R3:
R1#enable
R1#configure terminal
R1(config)#router ospf 1
R1(config-router)#Router-id 3.3.3.3
R1(config-router)#network 10.0.0.4 0.0.0.3 area 0
R1(config-router)#network 10.0.0.8 0.0.0.3 area 0
R4:
R1#enable
R1#configure terminal
R1(config)#router ospf 1
R1(config-router)#Router-id 4.4.4.4
R1(config-router)#network 172.16.0.0 0.0.0.255 area 1
R1(config-router)#network 11.0.0.0 0.0.0.3 area 1
R5:
R1#enable
R1#configure terminal
R1(config)#router ospf 1
R1(config-router)#Router-id 5.5.5.5
R1(config-router)#network 11.0.0.0 0.0.0.3 area 1
R1(config-router)#network 11.0.0.4 0.0.0.3 area 1
R6:
R1#enable
R1#configure terminal
R1(config)#router ospf 1
R1(config-router)#Router-id 6.6.6.6
R1(config-router)#network 11.0.0.4 0.0.0.3 area 1
R1(config-router)#network 11.0.0.8 0.0.0.3 area 1
R7:
R1#enable
R1#configure terminal
R1(config)#router ospf 1
R1(config-router)#Router-id 7.7.7.7
R1(config-router)#network 10.0.0.8 0.0.0.3 area 0
R1(config-router)#network 11.0.0.8 0.0.0.3 area 1
BGP 设置
R7:
R7#en
R7#conf t
R7(config)# router bgp 100
R7(config-router)#neighbor 190.0.0.2 remote-as 200
R7(config-router)#network 190.0.0.0 mask 255.255.255.252
R7(config-router)#network 10.0.0.8 mask 255.255.255.252
R7(config-router)#network 11.0.0.0 mask 255.255.255.252
R8:
R8#en
R8#conf t
R8(config)# router bgp 200
R8(config-router)#neighbor 190.0.0.1 remote-as 100
R8(config-router)#network 190.0.0.0 mask 255.255.255.252
R8(config-router)#network 173.31.0.0 mask 255.255.255.0
R7路由表:
R8路由表:
设置 vpc
VPCS[1]> ip 192.168.0.2 24 192.168.0.1
VPCS[1]> 2
VPCS[2]> ip 172.16.0.2 24 172.16.0.1
VPCS[2]> 3
VPCS[3]> ip 172.31.0.2 24 172.31.0.1
问题是,当我尝试从计算机 c3 到路由器 R7 中的 f0/0 或 f0/01 执行 ping 操作时,直到 s0/0 才起作用。
应该如何设置路由器 R7 和 R8 以使用 BGP?
感谢您的回答。