Spring中的aware接口详情
348
2022-09-27
41-高级路由:BGP AS长度:接收一切、最大AS长度、不比较AS长度(4415软路由)
2、R3配置隐藏命令,不比较AS长度R3(config)#router bgp 123R3(config-router)#no bgp maxas-limit 4R3(config-router)#bgp bestpath as-path ignore
3、R5配置不管收到的路由有没有包含本地AS都收入①基本部署:R5(config-if)#int f0/0 R5(config-if)#no shutdown R5(config-if)#ip add 35.1.1.5 255.255.255.0R5(config)#int lo0R5(config-if)#ip add 5.5.5.5 255.255.255.0
R5(config-if)#router bgp 5R5(config-router)#neighbor 3.3.3.3 remote-as 123R5(config-router)#network 35.1.1.0 mask 255.255.255.0R5(config-router)#network 5.5.5.0 mask 255.255.255.0R5(config-router)#neighbor 3.3.3.3 next-hop-self R5(config-router)#neighbor 3.3.3.3 update-source loopback 0
R5(config)#ip route 3.3.3.0 255.255.255.0 f0/0R5(config-router)#neighbor 3.3.3.3 ebgp-multihop
R3(config)#int f1/0R3(config-if)#no shutdown R3(config-if)#ip add 35.1.1.3 255.255.255.0
R3(config)#router bgp 123R3(config-router)#neighbor 5.5.5.5 remote-as 5R3(config-router)#neighbor 5.5.5.5 update-source loopback 0R3(config-router)#neighbor 5.5.5.5 next-hop-self
R3(config)#ip route 5.5.5.0 255.255.255.0 f1/0R3(config-router)#neighbor 5.5.5.5 ebgp-multihop R3(config-if)#no ip split-horizon
②重点部署R5(config)#router bgp 5R5(config-router)#neighbor 3.3.3.3 allowas-in
四、验证:1、R3配置接收的路由包含最大AS长度为4R3#Long AS path 4 5 6 7 8 received from 2.2.2.2: More than configured MAXAS-LIMIT
R3#show ip bgpNetwork Next Hop Metric LocPrf Weight Path*>i4.4.4.0/24 1.1.1.1 0 100 0 4 i结论:可以看到R3会自动报错,而且show ip bgp只有1.1.1.1的路径
2、R3配置隐藏命令,不比较AS长度R2#show ip bgpNetwork Next Hop Metric LocPrf Weight Path*> 4.4.4.0/24 24.1.1.4 0 0 4 5 6 7 8 i
R3#show ip bgpNetwork Next Hop Metric LocPrf Weight Path*>i4.4.4.0/24 2.2.2.2 0 100 0 4 5 6 7 8 i
i 1.1.1.1 0 100 0 4 i结论:虽然R2 的AS长度比R1长,但是4.4.4.4的路由条目的最优路径仍然是R2
3、R5配置不管收到的路由有没有包含本地AS都收入R5#show ip bgp summary Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd3.3.3.3 4 123 0 0 0 0 0 never Idle①未部署命令前:可以看到没有4.4.4.4的路由条目R5#show ip bgpNetwork Next Hop Metric LocPrf Weight Path> 1.1.1.0/24 3.3.3.3 0 123 i> 2.2.2.0/24 3.3.3.3 0 123 ir> 3.3.3.0/24 3.3.3.3 0 0 123 i> 5.5.5.0/24 0.0.0.0 0 32768 i> 14.1.1.0/24 3.3.3.3 0 123 4 i> 20.20.20.0/24 3.3.3.3 0 0 123 i> 24.1.1.0/24 3.3.3.3 0 123 i> 35.1.1.0/24 0.0.0.0 0 32768 i②R5部署命令后:R5#show ip bgpNetwork Next Hop Metric LocPrf Weight Path> 1.1.1.0/24 3.3.3.3 0 123 i> 2.2.2.0/24 3.3.3.3 0 123 ir> 3.3.3.0/24 3.3.3.3 0 0 123 i> 4.4.4.0/24 3.3.3.3 0 123 4 5 6 7 8 i> 5.5.5.0/24 0.0.0.0 0 32768 i> 14.1.1.0/24 3.3.3.3 0 123 4 i> 20.20.20.0/24 3.3.3.3 0 0 123 i> 24.1.1.0/24 3.3.3.3 0 123 i*> 35.1.1.0/24 0.0.0.0 0 32768 i
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~