当前位置:   article > 正文

使用MPLS解决BGP的路由黑洞(详解)

使用MPLS解决BGP的路由黑洞(详解)

        我们知道在MPLS中数据的转发不再依靠路由表而是靠标签(注意:标签是在路由的基础上形成的)。所以在BGP中,我们依靠的就是这个特性来解决BGP的路由黑洞。

BGP路由黑洞的解释:BGP的路由黑洞其实就是路由层面可达,数据层面不可达。(你可以收到对方的路由,但是不能和对方通讯。)

实验前提

实验图如下:

实验要求:

  • 在上述实验图中AR1与AR4建立IBGP邻居关系。AR6与AR1建立EBGP邻居关系,AR5与AR4建立EBGP邻居关系
  • 在AS3中运行了OSPF协议来保证AS内部通讯
  • 在AS3中开启了MPLS协议,注意AR1上的0/1口和AR4上的0/1口不能运行MPLS
  • 使用MPLS协议使AR6上的6.6.6.0/24与AR5上的5.5.5.0/24可以通讯

开始实验

        

一:在AS3上运行OSPF

在AR1上 :

  1. [R1-ospf-10]dis this
  2. [V200R003C00]
  3. #
  4. ospf 10 router-id 1.1.1.1
  5. area 0.0.0.0
  6. network 1.1.1.0 0.0.0.255
  7. network 12.1.1.0 0.0.0.255
  8. network 192.168.1.0 0.0.0.255
  9. #
  10. return
  11. [R1-ospf-10]

   在AR2上:

  1. [AR2-ospf-10]dis this
  2. [V200R003C00]
  3. #
  4. ospf 10 router-id 2.2.2.2
  5. area 0.0.0.0
  6. network 2.2.2.2 0.0.0.0
  7. network 12.1.1.0 0.0.0.255
  8. network 23.1.1.0 0.0.0.255
  9. #
  10. return
  11. [AR2-ospf-10]

在AR3上:

  1. [AR3-ospf-10]dis this
  2. [V200R003C00]
  3. #
  4. ospf 10 router-id 3.3.3.3
  5. area 0.0.0.0
  6. network 3.3.3.3 0.0.0.0
  7. network 23.1.1.0 0.0.0.255
  8. network 34.1.1.0 0.0.0.255
  9. #
  10. return
  11. [AR3-ospf-10]

在AR4上:

  1. [AR4-ospf-10]dis this
  2. [V200R003C00]
  3. #
  4. ospf 10 router-id 4.4.4.4
  5. area 0.0.0.0
  6. network 4.4.4.4 0.0.0.0
  7. network 34.1.1.0 0.0.0.255
  8. network 192.168.4.0 0.0.0.255
  9. #
  10. return
  11. [AR4-ospf-10]

二:在AS3内运行MPLS

在AR1上:

  1. [R1]mpls lsr-id 1.1.1.1 -----定义身份标识(其实就是router-id )
  2. [R1]mpls -----开启MPLS协议
  3. Info: Mpls starting, please wait... OK!
  4. [R1-mpls]mpls
  5. [R1-mpls]mpls ldp -----激活LDP协议
  6. [R1-mpls-ldp]q
  7. [R1]in g0/0/0 -----需要进入在所有标签经过的接口开启MPLS
  8. [R1-GigabitEthernet0/0/0]mpls ---开启MPLS
  9. [R1-GigabitEthernet0/0/0]mpls ldp ----再次激活LDP协议
  10. 当启动配置完成后,邻居间使用UDP报文组播收发hello包;之后基于hello包中的router-id地址进行TCP会话的建立;
  11. [AR1]mpls
  12. [AR1-mpls]lsp-trigger all -----开启该功能后所有的路由都会生成标签,全部基于标签进行转发。

在AR2上:

  1. [AR2]mpls lsr-id 2.2.2.2
  2. [AR2]mpls
  3. Info: Mpls starting, please wait... OK!
  4. [AR2-mpls]mpls ldp
  5. [AR2-mpls-ldp]q
  6. [AR2]in g0/0/0
  7. [AR2-GigabitEthernet0/0/0]mpls
  8. [AR2-GigabitEthernet0/0/0]mpls ldp
  9. [AR2-GigabitEthernet0/0/0]in g0/0/1
  10. [AR2-GigabitEthernet0/0/1]mpls
  11. [AR2-GigabitEthernet0/0/1]mpls ldp
  12. [AR2]mpls
  13. [AR2-mpls]lsp-trigger all -----开启该功能后所有的路由都会生成标签,全部基于标签进行转发。

在AR3上:

  1. [AR3]mpls lsr-id 3.3.3.3
  2. [AR3]mpls
  3. Info: Mpls starting, please wait... OK!
  4. [AR3-mpls]mpls ldp
  5. [AR3-mpls-ldp]q
  6. [AR3]in g0/0/1
  7. [AR3-GigabitEthernet0/0/1]mpls
  8. [AR3-GigabitEthernet0/0/1]mpls ldp
  9. [AR3-GigabitEthernet0/0/1]in g0/0/0
  10. [AR3-GigabitEthernet0/0/0]mpls
  11. [AR3-GigabitEthernet0/0/0]mpls ldp
  12. [AR3]mpls
  13. [AR3-mpls]lsp-trigger all -----开启该功能后所有的路由都会生成标签,全部基于标签进行转发。

在AR4上:

  1. [AR4]mpls lsr-id 4.4.4.4
  2. [AR4]mpls
  3. Info: Mpls starting, please wait... OK!
  4. [AR4-mpls]mpls ldp
  5. [AR4-mpls-ldp]q
  6. [AR4]in g0/0/0
  7. [AR4-GigabitEthernet0/0/0]mpls
  8. [AR4-GigabitEthernet0/0/0]mpls ldp
  9. [AR4-GigabitEthernet0/0/0]
  10. [AR4]mpls
  11. [AR4-mpls]lsp-trigger all -----开启该功能后所有的路由都会生成标签,全部基于标签进行转发。

三:在整个环境上运行BGP

在AR1上:

  1. [R1-bgp]display this
  2. [V200R003C00]
  3. #
  4. bgp 3
  5. peer 16.1.1.1 as-number 2
  6. peer 34.1.1.2 as-number 3
  7. #
  8. ipv4-family unicast
  9. undo synchronization
  10. peer 16.1.1.1 enable
  11. peer 34.1.1.2 enable
  12. peer 34.1.1.2 next-hop-local
  13. #
  14. return
  15. [R1-bgp]

在AR4上:

  1. [AR4-bgp]dis this
  2. [V200R003C00]
  3. #
  4. bgp 3
  5. peer 12.1.1.1 as-number 3
  6. peer 45.1.1.2 as-number 4
  7. #
  8. ipv4-family unicast
  9. undo synchronization
  10. peer 12.1.1.1 enable
  11. peer 12.1.1.1 next-hop-local
  12. peer 45.1.1.2 enable
  13. #
  14. return
  15. [AR4-bgp]

在AR5上:

  1. [AR5-bgp]dis this
  2. [V200R003C00]
  3. #
  4. bgp 4
  5. peer 45.1.1.1 as-number 3
  6. #
  7. ipv4-family unicast
  8. undo synchronization
  9. network 5.5.5.0 255.255.255.0
  10. peer 45.1.1.1 enable
  11. #
  12. return
  13. [AR5-bgp]

在AR6上:

  1. [AR6-bgp]dis this
  2. [V200R003C00]
  3. #
  4. bgp 2
  5. peer 16.1.1.2 as-number 3
  6. #
  7. ipv4-family unicast
  8. undo synchronization
  9. network 6.6.6.0 255.255.255.0
  10. peer 16.1.1.2 enable
  11. #
  12. return
  13. [AR6-bgp]

三:使用MPLS解决BGP路由黑洞

        我们需要在运行bgp的设备上面去做,敲如下命令。

在AR1上:
[R1]route recursive-lookup tunnel 

在AR4上:
[AR4]route recursive-lookup tunnel 

当我们去ping时,发现就可以通了,我们使用MPLS成功的解决的路由黑洞。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/595827
推荐阅读
相关标签
  

闽ICP备14008679号