2023-2-26 myluzh
Huawei
拓扑图
BGP配置:
注意:IBGP:相同的AS ,建议使用环回接口建立,原因1:环回接口不会down,环回接口可以有多条路径可达。
注意:EBGP不需要指定连接接口(connect-interface)。因为不指定默认就是出接口作为源地址给对方发送BGP相关报文。
R1配置
bgp 100 (R1所在AS为100)
peer 2.2.2.2 as-number 100 (邻居所在AS为100)
peer 2.2.2.2 connect-interface LoopBack1 (指定更新源地址为环回口地址)
R2配置
bgp 100
peer 1.1.1.1 as-number 100 (这个是IBGP)
peer 1.1.1.1 connect-interface LoopBack1
peer 10.1.23.3 as-number 200 (这个是EBGP)
peer 10.1.25.5 as-number 200 (这个是EBGP)
在R2上dis bgp peer可以看到已经与1.1.1.1建立,状态为E...
阅读全文>>
标签: hcip BGP AS
评论(0)
(423)