计算机网络实验一 | 交换机VLAN配置
交换机VLAN配置
switch > enable
switch # configure terminal
switch(config) # interface <接口类型> <接口编号>
创建VLAN
switch(config) # vlan <vlan id>
switch(config-vlan) # name <vlan name>
把接口划分到VLAN
switch(config) # interface <接口类型> <接口编号>
switch(config-if) # switchport access vlan <vlan id>
把多个端口划分到同一个VLAN中
switch(config) # int range <类型接口> <接口编号范围>
switch(config-if-range) # switchport access vlan <vlan id>
删除一VLAN
switch(config) # no vlan <vlan id>
显示全部的VLAN
switch # show vlan
显示单独的VLAN
switch # show vlan <vlan id>
查看交换机MAC地址表
switch # show mac-address-table
作业
现有一台交换机,用户PC1连接在交换机的0/5端口上,用户PC2连接在交换机的0/10端口上
要求: 通过配置VLAN实现各家各户的端口隔离。
PC1: 192.168.10.1/24
PC2: 192.168.10.2/24
评论