欢迎来到天天文库
浏览记录
ID:42026256
大小:552.06 KB
页数:5页
时间:2019-09-05
《BGP实验(cisco)》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、BGP实验(Cisco)2015年8月14日17:01目录:○BGP联邦○BGP团体属性○BGP团体cost(选路原则第0.5和第8.5条)○BGP负载均衡(等价、非等价)BGP联邦:AS200运行OSPF保证全网可达,AS200中子AS为65000、65001。○R1:▪正常配置BGP:routerbgp100network11.1.1.1mask255.255.255.255neighbor12.1.1.2remote-as200○R2:▪使用子AS号起进程:routerbgp65000▪配置子AS属于那个大AS:bgpconfederationidentifier200network2
2、2.1.1.1mask255.255.255.255neighbor12.1.1.1remote-as100neighbor33.1.1.1remote-as65000neighbor33.1.1.1update-sourceLoopback0neighbor33.1.1.1next-hop-self○R3:▪使用子AS号起进程:routerbgp65000▪配置子AS属于那个大AS:bgpconfederationidentifier200▪配置联盟中相连AS的AS号:bgpconfederationpeers65001network33.1.1.1mask255.255.255.255n
3、eighbor22.1.1.1remote-as65000neighbor22.1.1.1update-sourceLoopback0neighbor44.1.1.1remote-as65001▪使用环回口建立EBGP,配置EBGP多跳:neighbor44.1.1.1ebgp-multihop255neighbor44.1.1.1update-sourceLoopback0分区文档备份的第1页neighbor44.1.1.1update-sourceLoopback0○R4:▪使用子AS号起进程:routerbgp65001▪配置子AS属于那个大AS:bgpconfederationide
4、ntifier200▪配置联盟中相连AS的AS号:bgpconfederationpeers65000network44.1.1.1mask255.255.255.255neighbor33.1.1.1remote-as65000▪使用环回口建立EBGP,配置EBGP多跳:neighbor33.1.1.1ebgp-multihop255neighbor33.1.1.1update-sourceLoopback0neighbor33.1.1.1next-hop-selfneighbor45.1.1.5remote-as300○R5:▪正常配置BGP:routerbgp300network55.
5、1.1.1mask255.255.255.255neighbor45.1.1.4remote-as200BGP团体属性实验:•需求:R1将11.1.1.1打上100:1,R2将带100:1属性的路由增加200:2,R4将44.1.1.1打上200:2,R3将仅带有200:2属性的路由在传给R5时过滤掉。•配置:如图,全网实现互通,所有设备配置环回口(XX.1.1.1)并宣告进BGP,AS200中配置联邦(子AS:65001、65002)▪R1将11.1.1.1打上100:1属性:匹配11.1.1.1:R1(config)#access-list1permit11.1.1.1使用route-m
6、ap设置团体属性:R1(config)#route-mapCOMMpermit10R1(config-route-map)#matchipaddress1R1(config-route-map)#setcommunity100:1调用在BGP邻居:R1(config-router)#neighbor12.1.1.2route-mapCOMMout配置向邻居发送团体属性(默认不发送):R1(config-router)#neighbor12.1.1.1send-community▪R2将带100:1属性的路由增加200:2:使用团体属性列表匹配携带100:1的路由:R2(config)#ipc
7、ommunity-list1permit100:1使用route-map设置团体属性:分区文档备份的第2页使用route-map设置团体属性:R2(config)#route-mapCOMM1permit10R2(config-route-map)#matchcommunity1R2(config-route-map)#setcommunity200:2additiveR2(config)#route-map
此文档下载收益归作者所有