- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
ASBR间建立EBGP的session 实现MPLS VPN
实现跨域MPLS VPN
方案二、ASBR间建立EBGP的session
拓扑
说明:
此方案有两个AS之间不是通过TUNNEL子接口建立邻接关系,而是使用用VPNV4通过物理直连接口建立邻接关系,所以在ASBR收到对端ASBR发来的VPNV4路由时,由于都是通过VPNV4学习过来的,所以下一跳不改变,所以要在在本AS内部邻居建立邻接关系时要next-hop-self。这样才能实现路BGP路由的优化
特点ASBR需要处理VPN信息,但不需要配置VRF实例ASBR之间一条链路传递所有VPN信息根据不同的情况,ASBR之间构建单层或双层LSP隧道当VPN业务发展到一定阶段,ASBR之间的链路受限时,可以考虑OPTION B跨域方法en
config t
hostname ce1
enable secret cisco
username cisco password cisco
no service pad
service timestamps debug datetime localtime show-timezone
service timestamps log datetime localtime show-timezone
service password-encryption
clock timezone BJT 8
no ip source-route
no ip http server
no ip http secure-server
no ip domain-lookup
line consol 0
login local
logging synchronous
stopbit 1
exec-timeout 0 0
line vty 0 4
login local
logging synchronous
stopbit 1
exec-timeout 5 0
exit
ip classless
ip cef
interface Loopback0
no sh
ip address
interface Serial1/1
no sh
ip address 52
serial restart-delay 0
exit
ip route
end
R2:
en
config t
hostname PE-L
enable secret cisco
username cisco password cisco
no service pad
service timestamps debug datetime localtime show-timezone
service timestamps log datetime localtime show-timezone
service password-encryption
clock timezone BJT 8
no ip source-route
no ip http server
no ip http secure-server
no ip domain-lookup
line consol 0
login local
logging synchronous
stopbit 1
exec-timeout 0 0
line vty 0 4
login local
logging synchronous
stopbit 1
exec-timeout 5 0
exit
ip classless
ip cef
ip vrf vpna
rd 32:1
route-target export 32:1
route-target import 32:1
route-target import 31:1 //导入收到的其它VPNV4标记(其它域)的路由
exit
interface Loopback0
no sh
ip address 55
interface Serial1/0
no sh
ip vrf forwarding vpna
ip address 52
interface Serial1/1
no sh
ip address 52
mpls ip
router ospf 1
log-adjacency-changes
network area 0
network area 0
exit
router bgp 32
no synchronization
bgp log-neighbor-changes
neighbor remote-as 32
neighbor update-source Loopback0
no auto
文档评论(0)