网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

46、BGP配置实验之Aspath选路

1、as-path选路解析

成都创新互联成立与2013年,先为崂山等服务建站,崂山等地企业,进行企业商务咨询服务。为崂山企业网站制作PC+手机+微官网三网同步一站式服务解决您的所有建站问题。

属性
传播范围
默认值
优先值方向
备注
weight本路由器本路由器32768,其他路由器0大值优先INCISCO私有

Local preferenceAS内部100:边界路由器,通告给IBGP邻居,告知如何离开本AS大值优先OUT
As pathAS之间短优先IN、OUT

修改As path值的方法:

方法一:在OUT方向上修改As path值,例如

ip prefix-list 1 seq 5 permit 33.33.33.0/24

route-map AS permit 10

 match ip address prefix-list 1

 set as-path prepend 2 2 2 2 2

route-map AS permit 20

router bgp 3

 neighbor 23.1.1.2 route-map AS out

方法二:在IN方向上修改As path值,例如

2、实验拓扑

46、BGP配置实验之As path选路3、基础配置

R1配置

interface Loopback0

 ip address 1.1.1.1 255.255.255.0

interface Serial0/0

 ip address 13.1.1.1 255.255.255.0

interface Serial0/1

 ip address 14.1.1.1 255.255.255.0

router ospf 110

 router-id 1.1.1.1

 log-adjacency-changes

 network 1.1.1.0 0.0.0.255 area 0

 network 14.1.1.0 0.0.0.255 area 0

router bgp 4

 no synchronization

 bgp router-id 1.1.1.1

 neighbor 4.4.4.4 remote-as 4

 neighbor 4.4.4.4 update-source Loopback0

 neighbor 4.4.4.4 next-hop-self

 neighbor 13.1.1.3 remote-as 3

 no auto-summary

R2配置

interface Loopback0

 ip address 2.2.2.2 255.255.255.0

interface Serial0/1

 ip address 23.1.1.2 255.255.255.0

interface FastEthernet1/0

 ip address 24.1.1.2 255.255.255.0

router ospf 110

 router-id 2.2.2.2

 network 2.2.2.0 0.0.0.255 area 0

 network 24.1.1.0 0.0.0.255 area 0

router bgp 4

 no synchronization

 bgp router-id 2.2.2.2

 neighbor 4.4.4.4 remote-as 4

 neighbor 4.4.4.4 update-source Loopback0

 neighbor 4.4.4.4 next-hop-self

 neighbor 23.1.1.3 remote-as 3

 no auto-summary

R3配置

interface Loopback0

 ip address 3.3.3.3 255.255.255.0

interface Loopback1

 ip address 33.33.33.33 255.255.255.0        

interface Serial0/0

 ip address 13.1.1.3 255.255.255.0

interface Serial0/1

 ip address 23.1.1.3 255.255.255.0router bgp 3

 no synchronization

 bgp router-id 3.3.3.3

 network 3.3.3.0 mask 255.255.255.0

 network 33.33.33.0 mask 255.255.255.0

 neighbor 13.1.1.1 remote-as 4

 neighbor 23.1.1.2 remote-as 4

 no auto-summary

R4配置

interface Loopback0

 ip address 4.4.4.4 255.255.255.0

interface Serial0/1

 ip address 14.1.1.4 255.255.255.0

interface FastEthernet1/0

 ip address 24.1.1.4 255.255.255.0

router ospf 110

 router-id 4.4.4.4

 network 4.4.4.0 0.0.0.255 area 0

 network 14.1.1.0 0.0.0.255 area 0

 network 24.1.1.0 0.0.0.255 area 0

router bgp 4

 no synchronization

 bgp router-id 4.4.4.4

 neighbor 1.1.1.1 remote-as 4

 neighbor 1.1.1.1 update-source Loopback0

 neighbor 2.2.2.2 remote-as 4

 neighbor 2.2.2.2 update-source Loopback0

 no auto-summary

4、默认选路

46、BGP配置实验之As path选路根据BGP选路原则第八条可以知道,R4到达3.3.3.0/24、33.33.33.0/24都是经过R2。

46、BGP配置实验之As path选路

46、BGP配置实验之As path选路

5、在OUT方向上修改As path值

R4到达3.3.3.0/24、33.33.33.0/24都是经过R2,我们通过修改As path值将R4到达3.3.3.0/24经过R2、达到33.33.33.0/24都是经过R1。

R3配置

ip prefix-list 1 seq 5 permit 33.33.33.0/24

route-map AS permit 10

 match ip address prefix-list 1

 set as-path prepend 2 2 2 2 2

route-map AS permit 20

router bgp 3

 neighbor 23.1.1.2 route-map AS out

46、BGP配置实验之As path选路

6、在IN方向上修改As path值

R4到达3.3.3.0/24、33.33.33.0/24都是经过R2,我们通过修改As path值将R4到达3.3.3.0/24经过R2、达到33.33.33.0/24都是经过R1。

R2配置

ip prefix-list 1 seq 5 permit 33.33.33.0/24

route-map AS permit 10

 match ip address prefix-list 1

 set as-path prepend 2 2 2 2 2

route-map AS permit 20

router bgp 4

 neighbor 23.1.1.3 route-map AS in

46、BGP配置实验之As path选路


本文名称:46、BGP配置实验之Aspath选路
文章路径:http://bjjierui.cn/article/pcicoe.html

其他资讯