在 Cisco ISR 4451 中,我们安装了一个 EtherSwitch 48 端口模块。ISR 正在工作,EtherSwitch 模块也在工作。现在我想创建一条从 ISR 到 EtherSwitch 的路由,并阅读一些手册和论坛主题如何做到这一点。
- 在 4331 路由器上配置 SM-X 2/3 层 EtherSwitch 服务模块
- ISR 4451-x 无法 ping 网络接口模块 SM-XES3-16-P
- Cisco 4451-X ISR 的 Cisco SM-X 第 2/3 层 EtherSwitch 服务模块配置指南
简单的方法是将电缆从 ISR 插入以太网交换机,另一种方法是在 ISR 上创建 BDI 接口并通过 VLAN 连接到以太网内部端口。但我无法创建论坛线程中所示的配置。
在 Cisco ISR 上,我应该创建此配置:
interface Ethernet-Internal 1/0/0
service instance 1 ethernet
encapsulation dot1q 50
rewrite ingress tag pop 1
!
end
interface BDI 1
ip address 10.0.0.1 255.255.255.0
end
这是我的 ISR 4451 的配置
Building configuration...
Current configuration : 146 bytes
!
interface Ethernet-Internal1/0/0
no negotiation auto
service instance 1 ethernet
encapsulation dot1q 50
rewrite ingress tag pop 1
!
end
interface BDI1
ip address 10.1.20.4 255.255.255.0
end
此配置适用于 Catalyst 模块:
Building configuration...
Current configuration : 154 bytes
!
interface GigabitEthernet0/52
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 50
switchport mode trunk
switchport protected
end
interface Vlan50
ip address 10.1.20.3 255.255.255.0
end
但是 BDI 接口仍然关闭。我的配置有什么问题?任何想法如何做到这一点?