Cisco 3925 / k9子接口vlan支持

我有一个全新的Cisco路由器3925 / K9。 我想在我的networking上设置一个路由器,但事实certificate它不支持vlan子接口。 我在其他路由器的gns3模拟器中多次执行过这个操作,所以我熟悉IOS命令和概念。 我相信这肯定是一个授权问题,但到目前为止,我在cisco网站找不到解释它的任何东西。 以下是来自“show version”的一些信息:

ROM: System Bootstrap, Version 15.0(1r)M13, RELEASE SOFTWARE (fc1) System image file is "flash0:c3900-universalk9-mz.SPA.151-4.M2.bin" 3 Gigabit Ethernet interfaces 1 terminal line 1 Virtual Private Network (VPN) Module DRAM configuration is 72 bits wide with parity enabled. 255K bytes of non-volatile configuration memory. 250880K bytes of ATA System CompactFlash 0 (Read/Write) License Info: ----------------------------------------------------------------- Technology Technology-package Technology-package Current Type Next reboot ------------------------------------------------------------------ ipbase ipbasek9 Permanent ipbasek9 security securityk9 Permanent securityk9 uc None None None data None None None 

我将不胜感激,如果有人可以给我一个线索,我可以做什么来启用这个路由器的VLAN支持。

思科路由器3925 / k9完全支持802.1q VLAN。 问题是我没有注意到。 我完全忘了dot1q子接口中可用,而不是主接口。 所以在cisco路由器上启用vlans的正确configuration应该如下所示:

 Router_A(config)#interface fastethernet 0/0 Router_A(config-if)#no shutdown Router_A(config-if)#interface fastethernet 0/0.1 Router_A(config-subif)#encapsulation dot1q 1 Router_A(config-subif)#ip address 192.168.1.1 255.255.255.0 Router_A(config-if)#interface fastethernet 0/0.2 Router_A(config-subif)#encapsulation dot1q 10 Router_A(config-subif)#ip address 192.168.5.1 255.255.255.0 Router_A(config-if)#interface fastethernet 0/0.3 Router_A(config-subif)#encapsulation dot1q 20 Router_A(config-subif)#ip address 192.168.7.1 255.255.255.0 Router_A(config-subif)#end