1、VLAN概述
(1)VLAN特点
控制广播
增强网络安全性
简化网络管理
(2)VLAN分类
VLAN分为静态VLAN和动态VLAN
静态VLAN是基于端口的VLAN
动态VLAN是基于主机MAC地址的VLAN
2、静态VLAN的配置
配置步骤:
创建VLAN
Switch# configure terminal
Switch(config)# vlan 20
Switch(config-vlan)# name test20
Switch(config-vlan)# exit
要删除ID为20的VLAN,需要使用“no vlan vlan-id”命令
将交换机的端口加入到相应的VLAN中
Switch# configure terminal
Switch(config)# interface fastethernet0/1
Switch(config-if)# switchport access vlan 2
Switch(config-if)# exit
验证VLAN的配置
查看VLAN信息的命令如下:
Switch# show vlan brief
查看某个VLAN信息的命令如下:
Switch# show vlan id vlan-id
3、trunk 的作用
常见的是用于设置VLAN 和 SPANNING STREE,用于
连接两个交换机,使两个VLAN之间能互相通信。
4、trunk的配置
(1)进入接口配置模式
Switch(config)# interface {FastEthernet | GigabitEthernet} slot/port
(2)选择封装类型为802.1q
Switch(config)# switchport trunk encapsulation dot1q
(3)将接口配置为Trunk
Switch(config-if)# switchport mode trunk
5、三层交换机的原理简介
简单来说,三层交换=二层交换+三层转发
6、三层交换机的配置命令
(1)启动路由功能
Switch(config)# ip routing
(2)配置虚接口的IP地址
Switch(config)# interface vlan vlan-id
Switch(config-if)# ip address ip_address netmask
Switch(config-if)# no shutdowm
来源:https://www.cnblogs.com/2567xl/p/11217743.html