Cisco

配置 Cisco 路由器 2851 以處理 MPLS 流量隧道

  • August 8, 2011

有人在我的網路上配置了一個 Cat 6500 核心交換機來處理 MPLS 流量(並且可以正常工作)。MPLS線路也直接連接到網際網路,所以我們的邊緣和防火牆實際上被繞過了。我的邊緣也有一個 2851 路由器(IOS 12.4)路由器,並希望它處理 MPLS 流量,但我堅持使用配置。對我來說,隧道似乎有問題。

這是我的6500核心交換機的工作配置:(無關配置省略)

!
interface GigabitEthernet1/7
ip address 10.24.17.254 255.255.255.252
!

!
interface Tunnel2
ip address 192.168.250.1 255.255.255.0
tunnel source 10.24.17.254
tunnel destination 10.7.32.254
!
interface Tunnel3
ip address 192.168.249.1 255.255.255.0
tunnel source 10.24.17.254
tunnel destination 10.7.34.254
!

!
ip route 172.16.110.0 255.255.255.0 192.168.250.2
ip route 172.16.112.0 255.255.255.0 192.168.249.2

ip route 10.7.32.254 255.255.255.255 10.24.17.253
ip route 10.7.34.254 255.255.255.255 10.24.17.253
!

!
router eigrp 1
redistribute static
network 10.24.17.0 0.0.0.255
network 172.16.110.0 0.0.0.255
network 0.0.0.0
no auto-summary
!

相同的配置應用於路由器,但它根本不起作用。我們想將 2851 的 fastport 0/3 直接連接到 WAN。

我們的拓撲:路由器 2851 -> PIX 525 防火牆(這是恐龍?是的,我知道)-> 6500 Catalyst 核心交換機

注意:我們這邊的MPLS是10.24.17.254

MPLS 網路訪問通常有一個 BGP 配置。配置範例不包括一個,是否以某種方式失去?

引用自:https://serverfault.com/questions/298630