IT Practice Exams

200-301 · Network Access · Updated August 3, 2026

WLC Ports and Interfaces: Management, Virtual, Dynamic, and Service

A WLC (wireless LAN controller) draws a hard line between ports and interfaces. A port is a physical Ethernet or serial connector on the chassis. An interface is a logical, addressed construct inside the controller’s software that is mapped to a VLAN on one or more of those ports. The exam mixes items from both lists in the same set of choices, so the port-versus-interface classification has to be memorized as such.

The physical ports

  • Distribution system ports. The production data ports. They connect the controller to the switched network, carry the CAPWAP (Control and Provisioning of Wireless Access Points) tunnels from every access point, and carry centrally switched client traffic. They are normally configured as an 802.1Q trunk on the switch side, and multiple distribution system ports can be bundled into a LAG (link aggregation group) for capacity and resilience. The switch port at the far end of the tunnel, where the access point itself plugs in, follows a different rule, covered in access or trunk for an AP switchport.
  • Service port. A single Ethernet port dedicated to out-of-band management. It is deliberately kept off the production forwarding path so an administrator can still reach the controller when the data network is broken. It carries no user traffic, participates in no CAPWAP tunnel, and is excluded from link aggregation.
  • Redundancy port. A dedicated port used to cable two controllers together for HA (high availability). It carries the keepalives and the state synchronization that let a standby controller assume the access points and client sessions of a failed active controller. It exists for nothing else.
  • Console port. A serial connection for initial setup and recovery from a directly attached terminal. Like the service port, it is out-of-band, but it is a terminal connection rather than an addressable IP path.

The logical interfaces

  • Management interface. The in-band identity of the controller. It holds the address administrators browse or SSH to, and it is also where access point CAPWAP tunnels terminate and where the controller sources RADIUS, NTP, syslog, and similar traffic. It is bound to a VLAN carried on the distribution system ports.
  • Virtual interface. A placeholder identity the controller presents to clients rather than to the network. It supplies the source address for web authentication redirects, acts as the DHCP relay identity for wireless clients, and is referenced by mobility functions. It is given an address that is intentionally not routable anywhere in the network, which is why an address from a documentation range is the usual choice. Every controller in a mobility group must use the same virtual interface address.
  • Dynamic interface. The controller’s representation of one wired VLAN. A WLAN is bound to a dynamic interface as you build it on the General tab, so that client traffic emerging from the CAPWAP tunnel lands in the right subnet with the right VLAN tag. Several WLANs can share one dynamic interface, and a dynamic interface is where you configure the DHCP server address handed to that population of clients.
  • Service port interface. The address assigned to the physical service port. It has no VLAN tag and no default gateway of its own in the usual configuration, which is what keeps it isolated.
  • Redundancy management interface. The address used to reach each unit of an HA pair individually, which is how you tell the active and standby apart when both are up.

Older AireOS controllers also required an AP-manager interface as the CAPWAP termination point. On current releases the management interface performs that role, and no separate AP-manager is configured.

Which is which

ItemPhysical or logicalPurposeManagement path
Distribution system portPhysicalProduction data and CAPWAP tunnelsIn-band
Service portPhysicalDedicated out-of-band management connectionOut-of-band
Redundancy portPhysicalHA keepalives and state synchronization between two controllersNeither
Console portPhysicalSerial access for setup and recoveryOut-of-band
Management interfaceLogicalAdministrative address and CAPWAP terminationIn-band
Virtual interfaceLogicalNon-routable address for web auth, DHCP relay, and mobilityNeither
Dynamic interfaceLogicalMaps a WLAN to a wired client VLANNeither

In-band versus out-of-band

The distinction is which path management traffic takes, not which tool you use. Browsing HTTPS to the management interface address is in-band: the session travels the same network that carries user and access point traffic, and it fails when that network fails. Reaching the controller through the service port on a separate management network, or through the console cable, is out-of-band and stays available when production routing is broken.

Encryption is irrelevant to the distinction. SSH and HTTPS work over either path, and a plaintext Telnet session to the service port is still out-of-band. So is the choice between the CLI and the web interface, since both are reachable both ways.

Two subnet mistakes that break management

The service port must live in its own subnet. Its entire value comes from being independent of the production network. Configuring the service port with 10.10.5.20/24 while the management interface already uses 10.10.5.10/24 gives the controller two interfaces claiming the same destination network, and the resulting ambiguity produces exactly the symptom you would predict: out-of-band access becomes unreliable and management traffic behaves unpredictably. Renumbering the host portion does not fix it, because both addresses would still be in one network. The service port also carries no VLAN tag, so the switch side is a simple access port in whatever subnet the out-of-band management network uses.

Management from wireless clients is disabled by default. A controller ships with wireless management turned off, so a client associated to a WLAN cannot open the controller’s web interface at its management address even though the same laptop reaches it fine from a wired port. The symptom follows the connection method rather than the user account, which is the diagnostic clue. Enabling the setting is a deliberate exposure decision, because every associated client then has a network path to the administrative interface. It is normally paired with a CPU access control list or an equivalent restriction on who may reach the management address. Re-mapping the management interface to a dynamic interface is not an available fix, since the management interface is an interface in its own right. Raising a QoS profile prioritizes traffic and filters nothing. The virtual interface cannot be used as an administrative address because it is intentionally unroutable.

Catalyst 9800 terminology

The IOS-XE based Catalyst 9800 series keeps the service port (presented as GigabitEthernet0) and the redundancy port as physical, out-of-band connections. On the logical side, the AireOS management interface becomes the wireless management interface, configured as an SVI (switched virtual interface), and dynamic interfaces are replaced by VLANs referenced through policy profiles. The exam still uses the AireOS vocabulary, and the underlying roles are unchanged.

How the 200-301 exam tests this

  • Sorting physical from logical. A “choose two” item lists management, dynamic, redundancy, distribution system, and console, and asks which are logical interfaces. Management and dynamic are software constructs; the other three are connectors.
  • Naming the port for a job. A scenario asks which connection pairs two controllers for failover (redundancy port), which provides management access independent of the data network (service port), or which carries access point tunnels (distribution system ports).
  • Identifying the virtual interface. A question describes an address used for web authentication redirects and DHCP relay that is intentionally not reachable, and mixes it with descriptions of the management and dynamic interfaces. The distractors usually claim it is the administrative address or that one is required per WLAN.
  • Troubleshooting by symptom. A scenario gives overlapping service port and management subnets, or an administrator who can reach the controller from a wired port but not over Wi-Fi. Both are configuration decisions rather than hardware faults.

The physical-versus-logical sort is pure memorization, so check it with 200-301 practice questions rather than trusting that the list looked familiar.

Quick reference

  • Physical: distribution system ports, service port, redundancy port, console port.
  • Logical: management, virtual, dynamic, service port interface, redundancy management.
  • The management interface is the in-band administrative address and the point where CAPWAP tunnels from access points terminate.
  • The virtual interface is intentionally non-routable and serves web authentication, DHCP relay, and mobility.
  • A dynamic interface maps a WLAN to a wired VLAN, holds the client DHCP server address, and can be shared by several WLANs.
  • The service port is untagged, excluded from link aggregation, and must be in a different subnet from the management interface.
  • The redundancy port carries HA keepalives and state synchronization and nothing else.
  • Management over wireless is disabled by default and should be restricted if you turn it on.
  • The access point side of the tunnel is covered in Cisco AP modes and CAPWAP.
Choose your exam → Lifetime access
from $59, once