我在使用带有15.3(2)和BGP信号的ME3600x来启动VPLS时遇到问题。 br />我有2台使用RSVP作为PE的ME3600交换机和2台MX80路由器作为P。

P路由器正确显示了LSP作为传输LSP,并且我的TE隧道已启动。在两个交换机上我都得到以下信息:-

SW1.THN-LON#show mpls L2transport vc 501 detail
Local interface: VFI FLVPLS001 vfi up
Interworking type is Ethernet
Destination address: 46.226.0.10, VC ID: 501, VC status: down
Last error: MPLS dataplane reported a fault to the nexthop
Output interface: none, imposed label stack {}
Preferred path: not configured
Default path: no route
No adjacency
Create time: 00:19:42, last status change time: 00:19:42
Last label FSM state change time: 00:19:42
Signaling protocol: BGP
Status TLV support (local/remote)   : Not Applicable
  LDP route watch                   : Not Applicable
  Label/status state machine        : activating, LruRruD
  Last local dataplane   status rcvd: DOWN(pw-tx-fault)
  Last BFD dataplane     status rcvd: Not Applicable
  Last BFD peer monitor  status rcvd: Not Applicable
  Last local AC  circuit status rcvd: No fault
  Last local AC  circuit status sent: DOWN(pw-rx-fault)
  Last local PW i/f circ status rcvd: No fault
  Last local LDP TLV     status sent: Not Applicable
  Last remote LDP TLV    status rcvd: Not Applicable
  Last remote LDP ADJ    status rcvd: Not Applicable
MPLS VC labels: local 27, remote 16
Group ID: local 0, remote 0
MTU: local 1500, remote 1500
Control Word: Off
Dataplane:
SSM segment/switch IDs: 0/10075 (used), PWID: 12
VC statistics:
transit packet totals: receive 0, send 0
transit byte totals:   receive 0, send 0
transit packet drops:  receive 0, seq error 0, send 0


SW1.THN-LON#show mpls for 46.226.0.10 detail
Local      Outgoing   Prefix           Bytes Label   Outgoing   Next Hop  
Label      Label      or Tunnel Id     Switched      interface            
None       304720     46.226.0.10/32   0             Tu0        point2point
MAC/Encaps=14/18, MRU=9000, Label Stack{304720}, via Te0/2
A8D0E55DEB3D88F077938CDB8847 4A650000


伪线向上,但VC仍然断开。

执行以下操作时命令返回,表示没有FEC映射。
任何帮助/命令等都非常感谢

SW1.THN-LON#ping mpls ipv4 46.226.0.10/32 
Sending 5, 100-byte MPLS Echos to Target FEC Stack TLV descriptor, 
 timeout is 2 seconds, send interval is 0 msec:

Codes: '!' - success, 'Q' - request not sent, '.' - timeout,
'L' - labeled output interface, 'B' - unlabeled output interface, 
'D' - DS Map mismatch, 'F' - no FEC mapping, 'f' - FEC mismatch,
'M' - malformed request, 'm' - unsupported tlvs, 'N' - no label entry, 
'P' - no rx intf label prot, 'p' - premature termination of LSP, 
'R' - transit router, 'I' - unknown upstream index,
'l' - Label switched with FEC change, 'd' - see DDMAP for return code,
'X' - unknown return code, 'x' - return code 0

Type escape sequence to abort.
FFFFF
Success rate is 0 percent (0/5)
Total Time Elapsed 48 ms


我添加了ospf config以获得完整性。 br />调试原子事件中的一些事件

interface Tunnel0
 description sw1.thn-lon-to-sw1.sco-edi
 ip unnumbered Loopback0
 tunnel mode mpls traffic-eng
 tunnel destination 46.226.0.10
 tunnel mpls traffic-eng autoroute announce
 tunnel mpls traffic-eng priority 1 1
 tunnel mpls traffic-eng path-option 1 dynamic

mpls traffic-eng tunnels
l2vpn vfi context FLVPLS001 
 vpn id 501
 autodiscovery bgp signaling bgp 
  ve id 1
  rd 56595:501
  route-target export 56595:501
  route-target import 56595:501

bridge-domain 501 
 member GigabitEthernet0/1 service-instance 2


interface GigabitEthernet0/1
 description customer xxx
 switchport trunk allowed vlan none
 switchport mode trunk
 mtu 1600
 speed 100
 duplex full
 service instance 1 ethernet
  description Cust: xxx
  encapsulation dot1q 400
  rewrite ingress tag pop 1 symmetric
 !        
 service instance 2 ethernet
  description Oil and Gas VPLS
  encapsulation dot1q 501
  rewrite ingress tag pop 1 symmetric

interface Vlan501
 no ip address
 member vfi FLVPLS001


bgp的输出

router bgp 56595  
 bgp log-neighbor-changes  
 bgp graceful-restart restart-time 120  
 bgp graceful-restart stalepath-time 360  
 bgp graceful-restart  
 neighbor 46.226.0.10 remote-as 56595  
 neighbor 46.226.0.10 update-source Loopback0  
 !  
 address-family l2vpn vpls  
  neighbor 46.226.0.10 activate  
  neighbor 46.226.0.10 send-community extended  
  neighbor 46.226.0.10 suppress-signaling-protocol ldp  
 exit-address-family  



在@ytti寻求帮助之后,我们将其范围缩小到了me3600中与BGP信令有关的错误。

我们将信令更改为LDP,并且可以正常工作。与Cisco解决后将发布更新。

评论

nvm,我错过了LSP已启动的事实

抱歉。不知道如何对格式进行排序

bgp配置现已添加到OP

stackexchange对于这种类型的问题似乎并不完美。但是似乎ME3600认为您的IGP标签存在问题(即RSVP隧道)。也许“ sh ip cef 46.226.0.10详细信息”会有所帮助(遵循标签逐跳和双向发布后输出)。也可以尝试通过首先在“ LDP”上尝试IGP标签(保留BGP中的VPLS)来减少问题域。您可以尝试做的另一件事是在ME3600的环回上配置L3 MPLS VPN,以查看是否还有问题。我也想看看BGP NLRI,尽管它们可能很好,因为您具有VPN标签。

嗨,Ytti。有2个中间MX80。也会看看那些。

#1 楼

修改答案/合并评论并采取其他措施(免责声明:我的MPLS / VPLS经验不在Cisco平台上)。试图推断拓扑的外观:

您说过您在所有这些之间都运行OSPF。您是否仔细检查过您的设备之间是否有完整的LSP网格? (这是香草VPLS的要求)。您是否在ME3600的mpls traffic-eng area x中配置了mpls traffic-eng router-id Loopback0router ospf

我假设Tunnel0实际上是LSP的代表(我知道“ Pseudowire”一词已在该问题中抛出,我Pseudowire = L2VPN / EoMPLS / VLL)。 LSP仅是单向的,因此可能由于缺乏完整的LSP网格,ME3600可以在路由表中看到对方的环回,P路由器可能正在干扰RSVP信令/将其丢在地板上。 br />

评论


会为之扑朔迷离。作为它的me3600到me3600我不认为它会有所作为,因为它可以与其他非Cisco设备互操作

– NetDonkey
2013年6月7日21:47

尝试过并且不做区别。 VC仍在下跌

– NetDonkey
2013年6月7日21:50

它是。我是否还需要与L2VPN VPN会话?

– NetDonkey
13年6月7日在21:55

公平点:-D我需要MX80的l2vpn vpls AF bgp会话吗?我以为他们不会,因为他们只会切换标签?

– NetDonkey
2013年6月7日22:00

他们之间的Ospf。 PW上升,CFO上升。只是没有VC :-(

– NetDonkey
2013年6月7日22:52

#2 楼

似乎在通往出口交换机的某个地方存在转发平面问题。
输出的内容是:ping mpls ipv4 46.226.0.10/32冗长?

评论


嗨,Marco,SW1.THN-LON#ping mpls ipv4 46.226.0.10/32 verbose要退出的类型转义序列。 F尺寸100,回复加法器46.226.0.118,返回码4 F尺寸100,回复加法器46.226.0.118,返回码4 F尺寸100,回复加法器46.226.0.118,返回码4 F尺寸100,回复加法器46.226.0.118,返回代码4 F大小100,回复地址46.226.0.118,返回代码4成功率为0%(0/5)总经过时间52毫秒

– NetDonkey
2013年6月7日19:55



道歉。他们都回来了F意味着没有FEC映射

– NetDonkey
13年6月7日在20:02

我将在46.226.0.118路由器上检查MPLS转发表。 MX80坏了吗?

– Marco Marzetti
13年6月8日在7:50

嗨,马可,那是mx80

– NetDonkey
13年6月8日在10:02

如果有人愿意参加teamviewer会议,那么我将以啤酒支付:)

– NetDonkey
13年6月8日在10:28

#3 楼

在c-nsp上发现了一条帖子,提示可能是MTU不匹配(全局或接口不匹配):
http://www.gossamer-threads.com/lists/cisco/nsp/98769#98769
值得检查的另一件事是,两个PE路由器在其路由表中都具有彼此的环回地址(如/ 32)。

评论


嗨Aziraphale每个交换机都可以通过TE隧道看到其他环回。 MTU很好。接入端口有1600。上行链路有9000。

– NetDonkey
2013年6月7日20:03