• No results found

VLANs on Wireless LAN Controllers Configuration Example

N/A
N/A
Protected

Academic year: 2022

Share "VLANs on Wireless LAN Controllers Configuration Example"

Copied!
10
0
0

Loading.... (view fulltext now)

Full text

(1)

VLANs on Wireless LAN Controllers Configuration Example

Contents

Introduction Prerequisites Requirements Components Used Conventions

Dynamic Interfaces on WLCs

Prerequisites for Configuring Dynamic Interfaces Restrictions on Configuring Dynamic Interfaces Configure

Catalyst Switch That Runs Cisco IOS Software WLAN Controller VLAN Configuration in GUI WLAN Controller VLAN Configuration in CLI Verify

Catalyst Switches Verification WLAN Controller VLAN Verification Troubleshoot

Troubleshooting Procedure

Introduction

This document describes how to configure Virtual LANs (VLANs) on Wireless LAN controllers (WLCs).

Prerequisites

Requirements

There are no specific requirements for this document. However, this document assumes that there is a working DHCP server to provide IP addresses to the access points (APs) that are registered to the controller.

Components Used

Catalyst switch that runs Cisco IOS®Software.

Cisco WLC 8540 that runs software version 8.5.120.0.

Access Points

The information in this document was created from the devices in a specific lab environment. All of the devices used in this document started with a cleared (default) configuration. If your network is live, make sure that you understand the potential impact of any command.

(2)

Conventions

Refer toCisco Technical Tips Conventionsfor more information on document conventions.

Dynamic Interfaces on WLCs

Dynamic interfaces, also known as VLAN interfaces, are created by users and designed to be analogous to VLANs for wireless LAN clients.

A controller can support up to 512 dynamic interfaces (VLANs).

Each dynamic interface is individually configured and allows separate communication streams to exist on any or all of a controller’s distribution system ports.

Each dynamic interface controls VLANs and other communications between controllers and all other network devices, and each acts as a DHCP relay for wireless clients associated to Wireless LANs (WLANs) mapped to the interface.

You can assign dynamic interfaces to distribution system ports, WLANs, the Layer 2 management interface, and the Layer 3 AP-manager interface, and you can map the dynamic interface to a backup port.

You can configure zero, one, or multiple dynamic interfaces on a distribution system port.

However, all dynamic interfaces must be on a different VLAN or IP subnet from all other interfaces configured on the port.

If the port is untagged, all dynamic interfaces must be on a different IP subnet from any other interface configured on the port.

For information about maximum number of VLANs supported on a Cisco WLC platform, see the respective Cisco WLC platform's datasheet.

Cisco recommends using tagged VLANs for dynamic interfaces.

VLANs with WLAN controllers use this model:

Prerequisites for Configuring Dynamic Interfaces

While configuring on the dynamic interface of thecontroller, you must use tagged VLANs for dynamic interfaces.

Restrictions on Configuring Dynamic Interfaces

The following restrictions apply for configuring the dynamic interfaces on the controller:

Wired clients cannot access management interface of the Cisco 2504 WLC using the IP address of the AP Manager interface.

For SNMP requests that come from a subnet that is configured as a dynamic interface, the

(3)

controller responds but the response does not reach the device that initiated the conversation.

If you are using DHCP proxy and/or a RADIUS source interface, ensure that the dynamic interface has a valid routable address. Duplicate or overlapping addresses across controller interfaces are not supported.

You must not useap-manageras the interface name while configuring dynamic interfaces asap- manageris a reserved name.

Configure

In this section, you are presented with the information to configure the features described in this document.

Note: Use theCommand Lookup Tool(registeredcustomers only) to find more information on the commands used in this document.

Catalyst Switch That Runs Cisco IOS Software

w-backbone-6#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

w-backbone-6(config)#interface gigabitethernet 8/25 w-backbone-6(config-if)#switchport

w-backbone-6(config-if)#switchport trunk encapsulation dot1q w-backbone-6(config-if)#switchport trunk native vlan 999

w-backbone-6(config-if)#switchport trunk allowed vlan 1,81,82,171,999 w-backbone-6(config-if)#switchport mode trunk

w-backbone-6(config-if)#end w-backbone-6#

Note: VLAN number 999 is used as native VLAN here. This means the untagged traffic arriving to the WLC port will come from vlan 999. In this document the WLC has

management port with tagged VLAN 1, which means traffic to/from the WLC management interface goes on VLAN 1 and VLAN 999 is not used by the WLC.

WLAN Controller VLAN Configuration in GUI

Complete these steps on the WLAN controller.

From the WLC GUI, chooseController > Interfaces. TheInterfacespage lists all the interfaces that are configured on the WLC. In order to create a new dynamic interface, clickNew.

1.

(4)

Enter the Interface Name and VLAN Identifier and clickApply.

2.

Enter the parameters specific to this VLAN. Some of the parameters include the IP Address, Netmask, Gateway, and the DHCP server IP address, and

clickApply.

3.

(5)

Note: The IP address assigned to this interface acts as the DHCP relay for a client to obtain an IP address from the DHCP server. For example, when a client attempts to associate to a WLAN/SSID (see step 5 in this configuration) mapped to this dynamic interface, it performs a local subnet broadcast to identify the DHCP server. The controller sends a request to the DHCP server (or to itself if it is the DHCP server for the segment) with the IP address of this dynamic interface as relay IP to the DHCP server configured for this interface. The DHCP server assigns an IP address to the client from the configured DHCP scope.Note: It is mandatory to have a valid IP address for technical reasons, but this ip will not be used unless you have DHCP proxy or "radius interface overwrite" (under WLAN config)

enabled. Note: The "Interface Name" or Vlan name is what you can use as radius attribute (airespace-interface-name) to return a vlan "name" instead of number.

Verify the interface configuration. Click theControllertab in the menu at the top of the window, and chooseInterfacesfrom the menu on the left.

4.

(6)

Click theWLANstab in the menu at the top of the window, and clickCreate New.

5.

Enter the Service set identifier (SSID) and Profile Name and clickApply. This example usesVLAN 81for ease of understanding.

6.

SelectVLAN 81from the Interface Name drop-down menu at the bottom of the window, and clickApply. In this case, SSID Students is tied to Interface Name VLAN 81.

7.

WLAN Controller VLAN Configuration in CLI

Use this section in order to configure your VLAN via command-line interface (CLI).

(7)

Create the interface and the associated VLAN tag. The command is config interface create interface_namevlan_id.

1.

(W-8540-1) >config interface create "VLAN 81" 81

Note: If there is a space in the VLAN/WLAN name as is the case in this example, make sure the name is in quotes.

Define the IP address and default gateway. The command is config interface interface_nameIP_addressnetmaskgateway.

2.

(W-8540-1) >config interface address dynamic-interface "VLAN 81" 192.168.81.46 255.255.255.0 192.168.81.1

Define the DHCP server. The command is config interface dhcp dynamic-

interface <interface-name>primary <primary-server> [secondary] <secondary-server>.

3.

(W-8540-1) >config interface dhcp dynamic-interface "VLAN 81" primary 10.48.39.5

Issue this command in order to map the interface to a physical port: config interface port operator_defined_interface_name physical_ds_port_number.

4.

(W-8540-1) >config interface port "VLAN 81" 1

Verify the interface configuration. The command is show interface summary.

5.

(W-8540-1) >show interface summary

Number of Interfaces... 8

Interface Name Port Vlan Id IP Address Type Ap Mgr Guest --- ---- --- --- --- --- ---

171 1 171 192.168.171.30 Dynamic No No management 1 1 10.48.39.46 Static Yes No redundancy-management 1 1 10.48.39.52 Static No No redundancy-port - untagged 169.254.39.52 Static No No service-port N/A N/A 0.0.0.0 DHCP No No virtual N/A N/A 1.2.3.4 Static No No vlan 81 1 81 192.168.81.46 Dynamic No No vlan 82 1 82 192.168.82.46 Dynamic No No

Define the WLAN. Define the WLAN. The command is config wlan create wlan_idname.

6.

(W-8540-1) >show interface summary

Number of Interfaces... 8

Interface Name Port Vlan Id IP Address Type Ap Mgr Guest --- ---- --- --- --- --- ---

171 1 171 192.168.171.30 Dynamic No No management 1 1 10.48.39.46 Static Yes No redundancy-management 1 1 10.48.39.52 Static No No redundancy-port - untagged 169.254.39.52 Static No No service-port N/A N/A 0.0.0.0 DHCP No No virtual N/A N/A 1.2.3.4 Static No No vlan 81 1 81 192.168.81.46 Dynamic No No vlan 82 1 82 192.168.82.46 Dynamic No No

Define the interface for the WLAN. The command is config wlan 7.

(8)

interface wlan_idinterface_name.

(W-8540-1) >show interface summary

Number of Interfaces... 8

Interface Name Port Vlan Id IP Address Type Ap Mgr Guest

--- ---- --- --- --- --- ---

171 1 171 192.168.171.30 Dynamic No No management 1 1 10.48.39.46 Static Yes No

redundancy-management 1 1 10.48.39.52 Static No No

redundancy-port - untagged 169.254.39.52 Static No No

service-port N/A N/A 0.0.0.0 DHCP No No virtual N/A N/A 1.2.3.4 Static No No

vlan 81 1 81 192.168.81.46 Dynamic No No

vlan 82 1 82 192.168.82.46 Dynamic No No

Verify the WLAN and the associated interface. The command is show wlan summary.

8.

(W-8540-1) >show wlan summary

Number of WLANs... 2

WLAN ID WLAN Profile Name / SSID Status Interface Name PMIPv6 Mobility --- --- --- --- --- 1 self-anchor / self-anchor Disabled management none

2 Students / Students Enabled vlan 81 none

(W-8540-1) >

Verify

Use this section to confirm that your configuration works properly.

Catalyst Switches Verification

Catalyst switch that runs Cisco IOS Software: show running-config interface interface_type interface_number

w-backbone-6k#show running-config interface gigabitethernet 2/1

Building configuration...

Current configuration : 190 bytes

!

interface GigabitEthernet2/1 no ip address

switchport

switchport trunk encapsulation dot1q switchport trunk native vlan 999

switchport trunk allowed vlan 1,81,82,171,999 switchport mode trunk

end

(9)

WLAN Controller VLAN Verification

Verify the interface configuration. The command is show interface summary.

(W-8540-1) >show interface summary

Number of Interfaces... 8

Interface Name Port Vlan Id IP Address Type Ap Mgr Guest --- ---- --- --- --- --- ---

171 1 171 192.168.171.30 Dynamic No No management 1 1 10.48.39.46 Static Yes No redundancy-management 1 1 10.48.39.52 Static No No redundancy-port - untagged 169.254.39.52 Static No No service-port N/A N/A 0.0.0.0 DHCP No No virtual N/A N/A 1.2.3.4 Static No No vlan 81 1 81 192.168.81.46 Dynamic No No vlan 82 1 82 192.168.82.46 Dynamic No No

Verify the WLAN and the associated interface. The command is show wlan summary.

(W-8540-1) >show wlan summary

Number of WLANs... 2

WLAN ID WLAN Profile Name / SSID Status Interface Name PMIPv6 Mobility --- --- --- --- --- 1 self-anchor / self-anchor Disabled management none

2 Students / Students Enabled vlan 81 none

(W-8540-1) >

Troubleshoot

Use this section to troubleshoot your configuration.

Troubleshooting Procedure

Complete these instructions in order to troubleshoot your configuration.

Ping from the WLAN controller to the default gateway that is configured on the VLAN routed interface, and then ping in the opposite direction.WLAN controller:

(W-8540-1) >show wlan summary

Number of WLANs... 2

WLAN ID WLAN Profile Name / SSID Status Interface Name PMIPv6 Mobility --- --- --- --- --- 1 self-anchor / self-anchor Disabled management none

2 Students / Students Enabled vlan 81 none

(W-8540-1) >

VLAN routed interface:

(W-8540-1) >show wlan summary

Number of WLANs... 2

WLAN ID WLAN Profile Name / SSID Status Interface Name PMIPv6 Mobility --- --- --- --- --- 1 self-anchor / self-anchor Disabled management none

2 Students / Students Enabled vlan 81 none

1.

(10)

(W-8540-1) >

If the pings are unsuccessful, deploy a packet capture/sniffer at the switch and check in order to verify proper VLAN tagging.Note: When you initiate the ping from your controller to a Layer 3 gateway, which is on the same subnet as your dynamic interface, the controller appears to source the ping from the dynamic interface.

2.

References

Related documents

Energy inputs - Energy outputs = Accumulation 5-1 Energy exists in many forms: work, heat, kinetic energy, potential energy, internal energy, chemical energy, light,

A Dynamic Host Configuration Protocol (DHCP) server configured in the 7200 assigns an IP address to the client workstation.. Important: Dynamic Host Configuration Protocol (DHCP)

The laterally averaged adiabatic film effectiveness values of the three modified irregular pipe shapes are compared to that of the optimization basic shape, the

Sam izraz participacija (djece) različito se shvaća: kao uključivanje/inkluzija (posebno kad je riječ o djeci iz socijalno osjetljivih skupina); kroz diskurs dječjih glasova

In Provider Interface Settings, select Static IP Address (the most common configuration), or DHCP if a DHCP server assigns the 5300-S internal address.. Enter an

While the DHCP server automatically assigns the IP address of the IP-PT, the subnet mask address, and the default gateway address to the IP-PT, the PBX’s IP address must be

While the DHCP server automatically assigns the IP address of the IP-PT, the subnet mask address, and the default gateway address to the IP-PT, the PBX’s IP address must be

assigned a fixed IP address. The IP address of this adapter should not be dynamically provided. If a DHCP server is used, it must be configured to assign a fixed IP address for