SRE IOS 上的 Cisco 7600 MUX-UNI?

网络工程 思科 cisco催化剂 聚光灯 cisco-6500 cisco-7600
2021-07-26 16:55:45

我知道 MUX-UNI 只能在运行某些 IOS 版本、SR 和 SX 的 7600 上配置,我相信。这不包括SRE吗?

登录到运行 12.2(33)SRE9a 的 7600,配置如下;

interface GigabitEthernet8/3
 description Link to a box
 no ip address
!
interface GigabitEthernet8/3.123
 description L3 link to a box
 encapsulation dot1Q 556
 ip address 10.21.225.65 255.255.255.248
!
interface GigabitEthernet8/3.456
 description PWE3 to a box
 encapsulation dot1Q 920
 xconnect 172.16.25.25 1026 encapsulation mpls
  mtu 1500

当我尝试将其重新配置为 MUX-UNI 接口时,会发生以下情况;

r1(config-if)#int gi8/3
r1(config-if)#switchport 
Subinterfaces configured on this interface will not be available after mode change. To re-use reserved internal vlans, subinterfaces need to be deleted before changing the mode.
Proceed with the command? [confirm]

我找不到任何明确地说“是”或“否”的 Cisco 文档。

更新

监控器是 RSP720-3CX1-GE。我尝试配置的线卡是旧的 WS-X6516A-GBIC。但我认为这不取决于线卡,而是取决于 IOS。我在该线路卡上配置了另一个端口并选择了“确认”,果然它关闭并删除了子接口。我尝试先将端口配置为交换机端口,然后添加子接口,但我无法为子接口分配 IP 地址;

r1(config)#do show run | b 8/1
interface GigabitEthernet8/1
 switchport
 switchport trunk encapsulation dot1q
 switchport trunk allowed vlan 58,59
 switchport mode trunk
!
interface GigabitEthernet8/1.58

r1(config)#int gi8/1.58
r1(config-subif)#ip ?
Interface IP configuration subcommands:
  access-group        Specify access control for packets
  admission           Apply Network Admission Control
  auth-proxy          Apply authenticaton proxy
  dhcp                Configure DHCP parameters for this interface
  header-compression  IPHC options
  rsvp                RSVP Interface Commands
  vrf                 VPN Routing/Forwarding parameters on the interface

我在不同的线卡WS-X6748-GE-TX上尝试了相同的配置,结果相同,无法配置IP地址,因为在子接口配置模式下没有给出该选项。

1个回答

MUX-UNI支持:

看起来您正在尝试使用以下内容配置MUX-UNI

  • Vlan 556 上的第 3 层接口
  • Vlan 920上的Vlan-mode PW

WS-X6516A 被认为是 Catalyst 6500 / Cisco 7600 LAN 卡;LAN 卡有一些功能限制……其中一个限制是您如何在具有 dot1q 封装的 LAN 卡上配置第 3 层接口。

当您在dot1q 中继的 Catalyst 6500 LAN 卡上构建伪线服务和第 3 层服务MUX-UNI组合时,您必须执行以下操作:

  • 在 SVI 上配置 Layer3 服务。Sup720 不支持 LAN 交换机端口上的直接第 3 层子接口配置
  • 将伪线配置为网卡的子接口(虽然省略了dot1q中继中的PW vlan。

我会用你的例子...

interface GigabitEthernet8/1
 switchport
 switchport trunk encapsulation dot1q
 switchport trunk allowed vlan 556
 switchport mode trunk
 switchport nonegotiate
!
interface GigabitEthernet8/1.123
 ! Configure PW-ID 1026 on Vlan 920, note that vlan-920 is *not* explicitly trunked on Gi8/1
 encapsulation dot1q 920
 xconnect 172.16.25.25 1026 encapsulation mpls
  mtu 1500
!
interface Vlan556
 no shutdown
 ! insert optional VRF configuration here
 ip address 192.0.2.254

如果您将此配置用作模板,MUX-UNI将为您工作。

你的配置有什么问题

  • 您尝试在交换机端口上直接使用第 3 层 IP 子接口,这在 6500 / 7600 系列 LAN 卡和 Sup720 上不受支持
  • Gi8/3 上的原始MUX-UNI配置并未首先成为交换机端口。

Catalyst6500 LAN 卡 IP 子接口

因为 Catalyst6500 Vlan 在整个机箱中具有全局范围,所以Sup720 上的 LAN 卡支持路由的 dot1q 子接口,只要您没有在其他地方使用相同的 vlan ...例如:

! ensure vlan 100 is unused, so we can use it on a Gi4/1 subinterface
no vlan 100
interface GigabitEthernet4/1
 no switchport
interface GigabitEthernet4/1.100
 encapsulation dot1q 100
 ip address 192.0.2.1 255.255.255.0