我正在尝试应用思科CCENT书中的一个场景,其中一个2811路由器使用VLAN。我已经应用了网络,就像在我的包追踪器里面的书中一样。
这是书中的一节,接下来是我的实现和我正在得到的错误。
//book example
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname Corp
Corp(config)#enable secret myPassword
Corp(config)#interface vlan 1
Corp(config-if)#description myDescriptionIsAwesome1
Corp(config-if)#ip address 10.1.1.1 255.255.255.0
Corp(config-if)#no shutdown
Corp(config-if)#int f1/0
Corp(config-if)#description myDescriptionIsAwesome2
Corp(config-if)#no shutdown
Corp(config-if)#int f1/1
Corp(config-if)#description myDescriptionIsAwesome3
Corp(config-if)#no shut
//my implementation in Packet Tracer
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname Corp
Corp(config)#enable secret myPassword
Corp(config)#interface vlan 1
Corp(config-if)#description myDescriptionIsAwesome1
Corp(config-if)#ip address 10.1.1.1 255.255.255.0
Corp(config-if)#no shutdown
Corp(config-if)#
%LINK-5-CHANGED: Interface Vlan1, changed state to up
int f1/0
%Invalid interface type and number
Corp(config)#
我得到了%Invalid interface type and number
错误。原因是什么?在数据包跟踪器工作空间中添加路由器后,是否应该添加到路由器中?此外,一旦设置了路由器,如何创建虚拟交换机?它是通过GUI还是自动完成的?
发布于 2016-01-20 19:22:34
为了使其工作,您需要从物理模块中添加一个HWIC-4ESW
模块。然后使用sh int
查看接口的名称。
它的描述是:HWIC-4 4ESW提供四个交换端口。
https://serverfault.com/questions/750544
复制相似问题