BGP实验

实验拓扑图

BGP实验_第1张图片

自己配置后的拓扑图

BGP实验_第2张图片

配置路由器的ip地址

R1

BGP实验_第3张图片

R2

BGP实验_第4张图片

R3

BGP实验_第5张图片

R4

BGP实验_第6张图片

R5

BGP实验_第7张图片

BGP实验_第8张图片

R6

BGP实验_第9张图片

R7

BGP实验_第10张图片

打通AS

注意:R2的2接口,R3的1接口,R5的1接口,R6的2接口这几个不宣告

R1

BGP实验_第11张图片

R2

BGP实验_第12张图片

R3

BGP实验_第13张图片

R4

BGP实验_第14张图片

R5

BGP实验_第15张图片

R6

BGP实验_第16张图片

R7

BGP实验_第17张图片

建立bgp邻居

R1

BGP实验_第18张图片

R2

BGP实验_第19张图片R3

BGP实验_第20张图片

R4

BGP实验_第21张图片

R5&R6(因为R5的环回与R6可以互ping,可以用静态路由)

R5 ip route-static 123.1.1.6 32 56.1.1.2
R6 ip route-static 123.1.1.5 32 56.1.1.1

然后再用环回建邻

     R5

BGP实验_第22张图片

     R6

BGP实验_第23张图片

R7

BGP实验_第24张图片

建完邻后即修改ospf环回的接口网络类型

在ospf的网络中直接复制粘贴:

int loopback0
ospf network-type broadcast

但R7则需要多改一次

int loopback1
ospf network-type broadcast 

最后即为宣告路由

1:逐一宣告路由

[r7]bgp 102
[r7-bgp]network 172.16.1.0 24
[r7-bgp]network 172.16.2.0 24

[r5]bgp 101
[r5-bgp]peer 123.1.1.4 next-hop-local
[r5-bgp]peer 123.1.1.3 next-hop-local

[r2]bgp 100
[r2-bgp]peer 123.1.1.1 next-hop-local

2:

[r7]bgp 102
[r7-bgp]agg	
[r7-bgp]aggregate 172.16.0.0 22

[r7]ip ip-prefix aa permit 172.16.1.0 24
[r7]route-policy aa permit node 10
Info: New Sequence of this List.
[r7-route-policy]if-match ip-prefix aa
[r7-route-policy]q
[r7]bgp 102
[r7-bgp]aggregate 172.16.0.0 22 suppress-policy aa

你可能感兴趣的:(网络)