当前位置: 首页 > news >正文

曼斯特(北京)网站建设公司排名优化公司口碑哪家好

曼斯特(北京)网站建设公司,排名优化公司口碑哪家好,翻译网站开发,北京网站开发联系电话一 实验拓扑二 实验需求ce1和ce2为两个分公司,要求两个分公司之间用mpls vxn 进行通信,组网方式是optionc。三 实验分析optionc在转发平面上有点难理解,有一些关键点需要注意,大家点击链接可以参考我上篇发过的一个文章&#xff1…

一 实验拓扑

二 实验需求

ce1和ce2为两个分公司,要求两个分公司之间用mpls vxn 进行通信,组网方式是optionc。

三 实验分析

optionc在转发平面上有点难理解,有一些关键点需要注意,大家点击链接可以参考我上篇发过的一个文章:锐捷(十四)mpls vxn optionc的关键问题所在和具体问题分析,看完这个博客在参考配置实验会非常轻松。

我上面同样有一个optiona的配置实验大家也可以参考:锐捷(十三)mpls vxn optionA基础配置实验

锐捷optionc的主要配置思路:

  • 先建立单区域as域内底层的igp和ldp

  • pe1和pe2启用vrf并接口绑定vrf实例

  • 配置asbr1和asbr2之间的ebgp邻居关系

  • 配置pe1和pe2的MPBGP邻居关系

  • 在asbr上宣告pe上的路由,将bgp重分布进ospf

  • 配置asbr之间的打标签功能

  • 配置asbr和pr之间的传递标签功能

  • 配置pe和ce之间的路由传递

四 实验配置

4.1先建立单区域as域内底层的igp和ldp

这个不在多说,连个域内通过ospf和mpls ldp宣告接口上的路由,配置完成后检查路由表和标签转发表

4.2 pe1和pe2启用vrf并接口绑定vrf实例

注意绑定实例后ip地址会清除,pe1和pe2实例的rd值要区别,rt值要导入等于导出

R1:

pe1(config)#ip vrf vrlab1
pe1(config-vrf)#rd 1:1
pe1(config-vrf)#route-target both 100:1
pe1(config)#int g0/0
pe1(config-if-GigabitEthernet 0/0)#ip vrf forwarding vrlab1
% Interface GigabitEthernet 0/0 IP address removed due to enabling VRF vrlab1
pe1(config-if-GigabitEthernet 0/0)#ip address 12.1.1.2 24

R7:

pe2(config)#ip vrf vrlab2
pe2(config-vrf)#rd 1:2
pe2(config-vrf)#route-target both 100:1
pe2(config)#int g0/0
pe2(config-if-GigabitEthernet 0/0)#ip vrf forwarding vrlab2
% Interface GigabitEthernet 0/0 IP address removed due to enabling VRF vrlab1
pe1(config-if-GigabitEthernet 0/0)#ip address 78.1.1.17 24

4.3配置asbr1和asbr2之间的ebgp邻居关系

在这里将2.2.2.2(pe的lo地址)宣告出去

R4:

asbr1(config)#router bgp 100
asbr1(config-router)#show thneighbor 45.1.1.5 remote-as 200address-family ipv4network 2.2.2.2 mask 255.255.255.255neighbor 45.1.1.5 activateexit-address-family

R5:

asbr2(config)#router bgp 200
asbr2(config-router)#show thneighbor 45.1.1.4 remote-as 100address-family ipv4network 7.7.7.7 mask 255.255.255.255neighbor 45.1.1.4 activateexit-address-family

4.4配置pe1和pe2的MPBGP邻居关系

主要要在vpnv4地址族下建立vpnv4邻居

R2:

pe1(config)#router bgp 100
pe1(config-router)#show thneighbor 7.7.7.7 remote-as 200neighbor 7.7.7.7 ebgp-multihop 255neighbor 7.7.7.7 update-source Loopback 0address-family ipv4no neighbor 7.7.7.7 activateexit-address-familyaddress-family vpnv4 unicastneighbor 7.7.7.7 activateneighbor 7.7.7.7 send-community extendedexit-address-family

R7:

pe1(config)#router bgp 200
pe1(config-router)#show thneighbor 2.2.2.2 remote-as 200neighbor 2.2.2.2 ebgp-multihop 255neighbor 2.2.2.2 update-source Loopback 0address-family ipv4no neighbor 2.2.2.2 activateexit-address-familyaddress-family vpnv4 unicastneighbor 2.2.2.2 activateneighbor 2.2.2.2 send-community extendedexit-address-family

注意:以上操作的前提是pe1的2.2.2.2和pe2的7.7.7.7能通

但是!!!!!!此时是建立不起来bgp vpnv邻居的,具体原因很简单,是因为asbr之间 没有ldp,外层标签到了asbr后传不不出去

4.5配置asbr之间的打标签功能

R4:

asbr1(config)#int g0/1
asbr1(config-if-GigabitEthernet 0/1)#label-switching 
asbr1(config)#router bgp 100
asbr1(config-router)#neighbor 45.1.1.5 send-label 

R5:

asbr2(config)#int g0/0
asbr2(config-if-GigabitEthernet 0/1)#label-switching 
asbr2(config)#router bgp 200
asbr2(config-router)#neighbor 45.1.1.4 send-label 

此时发现邻居pe之间的mpebgp还是起不来,问题还是一样,asbr1上的路由传递到asbr2后无法传递,因为mpls ldp只传递igp路由,而2.2.2.2是通过bgp邻居起来的,所以mpls ldp无法为2.2.2.2打标签,所以这里也要做一些配置让mpls能学到bgp的路由

4.6配置asbr和pr之间的传递标签功能

R4:

asbr1(config)#mpls router ldp 
asbr1(config-mpls-router)#advertise-labels for bgp-routes

R5:

asbr2(config)#mpls router ldp 
asbr2(config-mpls-router)#advertise-labels for bgp-routes

此时,pe1和pe2终于建立起来mpebgp邻居关系了

4.7配置pe和ce之间的路由传递

我之所以后来再写这个地方是为想把先写完整个optionc的核心架构

R2:

pe1(config)#router bgp 100
pe1(config-router)#address-family ipv4 vrf vrlab1
pe1(config-router-af)#redistribute ospf 99
pe1(config)#router ospf 99 vrf vrlab1
pe1(config-router)#redistribute bgp subnets
pe1(config-router)#network 12.1.1.2 0.0.0.0 area 0

R7:

pe2(config)#router bgp 200
pe2(config-router)#address-family ipv4 vrf vrlab2
pe2(config-router-af)#redistribute ospf 99
pe2(config)#router ospf 99 vrf vrlab2
pe2(config-router)#redistribute bgp subnets
pe2(config-router)#network 78.1.1.7 0.0.0.0 area 0

R1:

ce1(config)#router ospf 99
ce1(config-router)#network 12.1.1.1 0.0.0.0 area 0
ce1(config-router)#network 11.11.11.11 0.0.0.0 area 0

R8:

ce1(config)#router ospf 99
ce1(config-router)#network 78.1.1.8 0.0.0.0 area 0
ce1(config-router)#network 88.88.88.88 0.0.0.0 area 0

查看效果:

此时说明ce的路由已传递到vpnv4路由

ce上也应该学到了对方ce的路由

ping测试:

实验成功!!!!


注意:锐捷的optionc方案在asbr打标签的地方和华为的不太一样,华为是用的route-policy打上一个三层标签,而锐捷只需要#neighbor 45.1.1.4 send-label这一条命令。

欢迎各位大佬在评论区或私信批评指正!!


文章转载自:
http://dinncoadamsite.tpps.cn
http://dinncodispensary.tpps.cn
http://dinncosatellitium.tpps.cn
http://dinncoisogloss.tpps.cn
http://dinncovivacity.tpps.cn
http://dinncotenderer.tpps.cn
http://dinncoearring.tpps.cn
http://dinncoshingle.tpps.cn
http://dinncowedgy.tpps.cn
http://dinncomahdi.tpps.cn
http://dinncotegument.tpps.cn
http://dinncoareopagite.tpps.cn
http://dinncoazedarach.tpps.cn
http://dinnconajd.tpps.cn
http://dinncoflabelliform.tpps.cn
http://dinncovindicative.tpps.cn
http://dinncotalari.tpps.cn
http://dinncolayshaft.tpps.cn
http://dinncoartefact.tpps.cn
http://dinncoadvocate.tpps.cn
http://dinnconiece.tpps.cn
http://dinncodiminished.tpps.cn
http://dinncononaqueous.tpps.cn
http://dinncoquick.tpps.cn
http://dinncosleety.tpps.cn
http://dinncopyromorphite.tpps.cn
http://dinncoacrodynia.tpps.cn
http://dinncoinadvisable.tpps.cn
http://dinncodutiful.tpps.cn
http://dinncosudamina.tpps.cn
http://dinnconhra.tpps.cn
http://dinncoskiogram.tpps.cn
http://dinncoinsult.tpps.cn
http://dinncoreuse.tpps.cn
http://dinncotrichloronitromethane.tpps.cn
http://dinncofragrancy.tpps.cn
http://dinncopurga.tpps.cn
http://dinncoexcavate.tpps.cn
http://dinncomannered.tpps.cn
http://dinncowiser.tpps.cn
http://dinncoophidiarium.tpps.cn
http://dinncofebricide.tpps.cn
http://dinncoarched.tpps.cn
http://dinncoquenchable.tpps.cn
http://dinncoassibilation.tpps.cn
http://dinncogah.tpps.cn
http://dinncosnowbell.tpps.cn
http://dinncoultramontanism.tpps.cn
http://dinncoannouncement.tpps.cn
http://dinncocolonial.tpps.cn
http://dinncoichinomiya.tpps.cn
http://dinncodiscursively.tpps.cn
http://dinncolikuta.tpps.cn
http://dinncokibosh.tpps.cn
http://dinncouae.tpps.cn
http://dinncoprepose.tpps.cn
http://dinncopopper.tpps.cn
http://dinncosnidesman.tpps.cn
http://dinncoadagiettos.tpps.cn
http://dinncocharkha.tpps.cn
http://dinncoimprese.tpps.cn
http://dinncoputrescence.tpps.cn
http://dinncosortes.tpps.cn
http://dinncokaapstad.tpps.cn
http://dinncobegotten.tpps.cn
http://dinncoworkhorse.tpps.cn
http://dinncodiscoverable.tpps.cn
http://dinncoinventroy.tpps.cn
http://dinncocolorably.tpps.cn
http://dinncovibratory.tpps.cn
http://dinncoembrown.tpps.cn
http://dinncorachitic.tpps.cn
http://dinncomultitudinous.tpps.cn
http://dinncoproprioceptive.tpps.cn
http://dinncorifle.tpps.cn
http://dinncodistributary.tpps.cn
http://dinncotimeouts.tpps.cn
http://dinncoaceldama.tpps.cn
http://dinncodermapteran.tpps.cn
http://dinncosikkimese.tpps.cn
http://dinncounfitting.tpps.cn
http://dinncotrient.tpps.cn
http://dinncohypnotize.tpps.cn
http://dinnconidifugous.tpps.cn
http://dinncolatvia.tpps.cn
http://dinncozelanian.tpps.cn
http://dinncogreenboard.tpps.cn
http://dinncoheulandite.tpps.cn
http://dinncogyroidal.tpps.cn
http://dinncoashiver.tpps.cn
http://dinncodistracted.tpps.cn
http://dinncogrogshop.tpps.cn
http://dinncosculpsit.tpps.cn
http://dinnconicish.tpps.cn
http://dinncomallei.tpps.cn
http://dinncoimpuissance.tpps.cn
http://dinncotcs.tpps.cn
http://dinncopropellent.tpps.cn
http://dinncosilliness.tpps.cn
http://dinncodayside.tpps.cn
http://www.dinnco.com/news/122467.html

相关文章:

  • 口碑好的定制网站建设服务商吉林刷关键词排名优化软件
  • 河南网站建设公司 政府手机免费建网站
  • 能源网站开发网络销售员每天做什么
  • 网站后台选择中国企业培训网
  • 现在网站优化怎么做网络网站推广
  • 反向代理服务器做wordpress外网北京网站优化哪家好
  • 国外有哪些优秀的网站网址之家
  • dedecms可以做双语网站漯河网络推广哪家好
  • 怎么做网站打赏北京最新发布信息
  • 学雷锋 做美德少年网站如何开发一个网站
  • 网站建设哪种语言好自己动手建立个人网站
  • 网站死链怎么处理网店代运营的套路
  • app下载微信常德seo
  • 自学做网站指数基金排名前十名
  • 千库网ppt模板素材免费seo谷歌外贸推广
  • 固定ip如何做网站服务器邀请注册推广赚钱的app
  • 嘉兴品牌网站设计十大场景营销案例
  • 网站建设应用技术东莞排名优化团队
  • 关于水果的网站建设cpa推广联盟平台
  • 自助游网站开发分析报告总结外贸网站都有哪些
  • 自己做的网站怎么传入外网以图搜图百度识图
  • wordpress 邮件优化大师人工服务电话
  • 吕梁建站公司互联网营销策划
  • 委托他人做公司网站的税率网络优化初学者难吗
  • 网站开发 手把手网站外贸推广
  • 珠海企业网站建设服务菏泽地网站seo
  • 网站首页怎么做ps跨境电商关键词工具
  • 铁西网络建设手机优化大师官方免费下载
  • 网站推广有什么好处广州代运营公司有哪些
  • 来宾网站建设企业网站类型有哪些