Cisco C9800 Fabric Mode and SD-Access Wireless Integration

SD-Access wireless on the Cisco Catalyst 9800 is one of those topics that looks complicated from the outside and becomes straightforward once you understand the mental model. The short version is: in a Software-Defined Access (SD-Access) fabric, the C9800 stops being the data-plane anchor for wireless clients. The fabric edge switches take that role. The C9800 still runs the control plane for APs and clients, but user traffic rides the fabric's VXLAN overlay directly from the fabric-enabled AP to the edge switch the client is policy-bound to. This article walks through how fabric-mode wireless works, why it's different from local or FlexConnect, what you gain by adopting it, and what the design and operational implications look like from a C9800 engineer's perspective.

Why Fabric Wireless Exists

Traditional wireless — local mode on a C9800 — assumes a single Layer 2 anchor for each client. A client on SSID "Corporate" gets an IP from the WLC's VLAN, and traffic from that client traverses a CAPWAP tunnel from the AP to the WLC before it ever touches the distribution layer. This works, but it bakes two assumptions into the design: every client on a given SSID must land on the same VLAN everywhere, and the WLC must have bandwidth and CPU proportional to total user throughput.

SD-Access changes those assumptions. SDA is Cisco's intent-based campus architecture built on VXLAN and LISP. Each fabric edge switch acts as a VXLAN tunnel endpoint (VTEP), clients are identified by a Virtual Network (VN, which maps to a VRF) and a Scalable Group Tag (SGT), and the fabric itself handles segmentation and mobility. Wrapping wireless into that model means the client's traffic joins the VXLAN overlay at the point it enters the wired network — and in fabric wireless, that point is the fabric edge switch nearest the AP, not the WLC.

How Fabric-Mode Wireless Actually Works

In fabric mode, the C9800 and the APs participate in the SD-Access control plane, but data flow changes dramatically. Here's the path a client's packet takes:

  1. The client associates to a fabric-enabled AP. The AP runs its normal CAPWAP control channel to the C9800 — that part is unchanged.
  2. The C9800 registers the client with the fabric control plane (the LISP map-server, which typically runs on the fabric border or a dedicated node). The client's MAC and the AP it's associated with are written into LISP as a mapping.
  3. When the client sends its first packet, the fabric AP does not wrap it in CAPWAP. Instead, the AP encapsulates it in VXLAN and forwards it directly to the fabric edge switch it's connected to.
  4. The fabric edge switch, now acting as the VTEP for that client, de-encapsulates the VXLAN, places the packet into the correct VN/VRF based on the client's SGT, and routes it to its destination — which may be another fabric node, a border exit, or a shared-services block.

The C9800 never sees the client's user data. It handles association, authentication, roaming coordination, and RF management, but the data plane is offloaded to the fabric. That single change is why fabric wireless scales the way it does and why it integrates cleanly with the rest of SD-Access.

FunctionLocal modeFlexConnectFabric mode (SDA)
Control plane (CAPWAP)AP ↔ WLCAP ↔ WLCAP ↔ WLC
Client data planeAP → CAPWAP → WLC → wiredAP → local switch (bridged)AP → VXLAN → fabric edge
Client VLANOn the WLCAt the site / AP switchportNone — VN/VRF via LISP + SGT
SegmentationVLAN + ACLVLAN + Flex ACLVN + SGT (micro/macro)
Mobility within fabricMobility groups, anchorsN/ALISP map-update; fast and stateless
WLC CPU for data pathProportional to trafficMinimalMinimal

The Role of the C9800 in a Fabric Deployment

The C9800 still does everything you expect a controller to do — WLAN configuration, AP join, RRM, rogue detection, client policy, 802.1X — but it also takes on two new roles unique to SDA:

  • Fabric control plane participant. The WLC registers wireless clients with the fabric's LISP map-server/map-resolver. When a client roams between fabric-enabled APs, the WLC issues a LISP map-update that tells the fabric where the client now lives. This is how fast, stateless roaming works in SDA wireless.
  • Policy source for wireless-side enforcement. Scalable Group Tags and VN assignments for wireless clients originate at the C9800, sourced from ISE, and are carried into the fabric via the VXLAN header. The C9800 is the place where "this SSID maps to this VN" lives.

There is also a subtle but important architectural rule: the C9800 must not be a fabric edge node itself. It sits outside the fabric, reachable over a Layer 3 path from the fabric border or directly on the underlay. The WLC is infrastructure that the fabric calls out to, not a fabric participant in the VXLAN sense.

Design Requirements

Several pieces need to be in place before a single fabric-enabled SSID can carry traffic. If any of them is missing, fabric wireless won't come up.

RequirementWhy
C9800 running a supported IOS-XE version for SDA wirelessSDA wireless feature parity depends on the release; check the release notes for the fabric features you need
Catalyst Center (formerly DNA Center) managing the fabricFabric configuration is driven top-down from Catalyst Center; manual CLI-only fabric wireless is not the supported path
LISP-capable border and control plane nodesThese are the targets the WLC registers clients with
Fabric-capable APs (most 802.11ac Wave 2 and later Cisco APs)The AP must support VXLAN encapsulation in hardware
ISE integration with scalable group tags and VN mappingWithout ISE, you get SSID-based VN mapping only — no micro-segmentation
IP reachability between the WLC and the fabric underlayThe WLC needs LISP connectivity to the map-server and control plane

The practical consequence: if you're not running Catalyst Center, you're not doing SDA wireless in any supported form. Fabric wireless is a Catalyst Center workflow; manual CLI configuration on the C9800 alone will not produce a working fabric.

Fabric-Enabled Site Tag and AP Onboarding

Fabric wireless is enabled per Site Tag on the C9800. A Site Tag can be flagged as fabric-enabled, at which point APs assigned to that Site Tag take on fabric behaviour. This is how you deploy fabric wireless incrementally — you can run a brownfield campus where some sites are still local mode and others are fabric, all from the same WLC.

C9800#show wireless fabric summary
Fabric Status          : Enabled

C9800#show wireless fabric client summary
Number of fabric clients : 3410

MAC Address     VLAN  IP Address       AP Name         Status
-------------------------------------------------------------------
aaaa.1111.2222  100   10.20.30.41      FAB-AP-001      Run
aaaa.1111.2223  100   10.20.30.42      FAB-AP-001      Run
aaaa.1111.2224  200   10.20.40.15      FAB-AP-017      Run

C9800#show wireless fabric vnid mapping
L2-VNID    Name               L3-VNID      IP Address
-------------------------------------------------------------
8188       Corporate_VN       4099         10.20.30.0/24
8189       Guest_VN           4100         10.20.40.0/24

The L2-VNID corresponds to the VXLAN segment ID the AP uses when it encapsulates client traffic; the L3-VNID identifies the VN/VRF the client lands in. That mapping comes from Catalyst Center, not from a CLI stanza you write by hand.

Roaming in a Fabric

Roaming is where fabric wireless earns its keep. In a traditional local-mode deployment, intra-controller roaming is handled by the WLC, and inter-controller roaming needs mobility groups, mobility tunnels, and anchor behaviour that can become complex at scale. In a fabric, roaming is a LISP update: when a client moves from AP-1 to AP-2, the WLC tells the fabric control plane that the client now lives behind AP-2's edge switch, and the fabric reprogrammes its mapping in milliseconds.

There are no mobility tunnels. There is no "anchor" WLC. Clients keep their IP address and session state because the fabric overlay is the one doing the work — the WLC is just updating a mapping. This is why SDA wireless scales to very large campuses without the mobility-group gymnastics local-mode deployments require.

The trade-off is that the fabric itself must be healthy. LISP map-server outages, a broken fabric border, or a partitioned underlay will break wireless in ways you haven't seen before. Your monitoring story needs to cover the underlay, not just the controller.

Segmentation: VN and SGT, Not VLAN

In a conventional WLC design, you segment users with VLANs. In SDA wireless, you segment users with Virtual Networks (for macro-segmentation between tenants or security zones) and Scalable Group Tags (for micro-segmentation within a VN). An SSID is mapped to a VN, and individual client policy is expressed as SGT-to-SGT rules enforced throughout the fabric.

This is where SDA wireless shines for larger organisations:

  • A guest SSID maps to the Guest VN; no routing path exists between Guest VN and Employee VN without going through a fusion firewall you control.
  • Within the Employee VN, you can tag contractors with one SGT and permanent staff with another, and apply ACLs between them without carving up VLANs or IP space.
  • Segmentation policy follows the user as they roam, because the SGT is carried in the VXLAN header of every frame they send.

The implication for the C9800 engineer is that you need to think in VN/SGT terms, not VLAN terms, when you design SSID-to-policy mappings. VLANs still exist at the edge, but they stop being the unit of segmentation.

Where It Goes Wrong

A few operational realities worth knowing before you commit:

Fabric wireless and RRM interact normally. RF management, DCA, TPC, CleanAir, and the rest of the RRM toolkit work exactly as they do in local or Flex mode. The fabric does not change how the RF part of the C9800 behaves. If you already know how to design RF on a C9800, you already know how to design RF in a fabric.

Troubleshooting needs two hats. A client connectivity problem in SDA wireless can live on the WLC (policy, AP, RF), on the fabric (LISP mapping, VXLAN path, SGT policy), or in ISE (group assignment). You need to know which one you're looking at before you start debugging, and you need visibility into all three. Catalyst Center Assurance helps, but you should still be comfortable running show wireless fabric client summary, show lisp site, and matching ISE authorisation logs by hand.

Multicast and broadcast need explicit design. In a fabric, broadcast and multicast from wireless clients don't automatically reach other wireless clients or wired hosts the way they would on a shared VLAN. You configure multicast replication explicitly — headend replication or native multicast — and mDNS gateway becomes even more important because clients on different fabric edges can't discover each other's services via ordinary link-local multicast.

Guest anchor works differently. Traditional guest anchoring to a DMZ C9800 is replaced by the Guest VN exiting at a dedicated border or fusion firewall. If you're migrating from anchor-based guest to fabric guest, the firewall rules and exit point for guest traffic change — plan that conversation with the security team before cutover.

When to Adopt Fabric Wireless

Fabric wireless isn't a replacement for local or FlexConnect — it's an alternative that only makes sense inside a full SD-Access deployment. You should consider it when:

  • The wired side of the campus is already SD-Access, or is moving there. Fabric wireless layered onto a conventional wired network is not the point.
  • You need micro-segmentation between user groups that would be painful to express with VLANs and ACLs.
  • Campus-wide mobility with stateless roaming is a requirement — for example, a hospital where clinicians carry devices from wing to wing all day.
  • You're running Catalyst Center already and want one orchestration plane across wired and wireless.

You should not adopt fabric wireless when you don't yet have a fabric, when your team doesn't have LISP or SDA experience, or when your site is small enough that VLAN-based segmentation is still manageable. SDA is powerful but it has a learning curve, and the operational model is genuinely different from AireOS-era wireless.

Key Takeaways

Fabric-mode wireless moves the data plane off the C9800 and onto the fabric edge, while keeping the C9800 as the wireless control plane and the policy source. The WLC registers clients with LISP, the AP encapsulates client frames in VXLAN straight to the edge, and segmentation is expressed in VNs and SGTs instead of VLANs. Deployment is driven from Catalyst Center, not from hand-written CLI, and it only makes sense inside a real SD-Access campus. Done right, it scales cleanly and gives you stateless roaming and policy that follows the user. Done wrong — or attempted without a fabric, or without ISE — it just adds complexity without the benefit. Know the model before you commit, and design the underlay, the control plane nodes, and the WLC's reachability into the fabric as a single thing, because the WLC on its own does not make a fabric wireless deployment.

Read next

© 2025 Ping Labz. All rights reserved.