交换机连接无线AP时,在交换机端口上的配置如下:
(1) 在二层以太网/聚合接口配置模式下,通过命令switchport mode trunk将与无线AP连接的接口配置为Trunk口。缺省情况下,二层接口的模式为Access。
(2) 在二层以太网/聚合接口配置模式下,通过命令switchport trunk native vlan vlan-id配置Trunk口的Native VLAN。缺省情况下,Trunk口不存在Native VLAN。
参数说明
vlan-id:指定Native VLAN ID,只能配置单个VLAN。在交换机配置连接无线AP时,需要指定Native VLAN为无线AP的VLAN。
配置指导
配置二层接口的模式前,需要确保接口为二层模式。通过show interface [ interface-type interface-number ] switchport命令可查看接口当前模式;若接口对应的Switchport字段为“enabled”,表示该接口为二层接口;若接口对应的Switchport字段为“disabled”,表示该接口为三层接口,应当先使用switchport命令将其配置为二层接口。
# 查看接口当前模式
Hostname> enable
Hostname# show interface aggregateport 1 switchport
Trunk口发送Native VLAN的报文不携带Tag;当接口收到不携带Tag的报文认为报文属于其Native VLAN。
配置举例
# 若无线AP的VLAN为VLAN 10,配置二层以太网接口为Trunk口,配置Native VLAN为VLAN 10。
Hostname> enable
Hostname# configure terminal
Hostname(config)# interface gigabitethernet 0/1
Hostname(config-if-GigabitEthernet 0/1)# switchport mode trunk
Hostname(config-if-GigabitEthernet 0/1)# switch trunk native vlan 10