802.1X & Cisco ISE: CCNP Security SCOR 350-701 Domain 6.0 Guide

FE
FigigExams Team
Senior Network & Security Engineers · 6+ years of experience designing and securing enterprise networks. CCNA, Security+, and AWS certified.
Verified for CCNP Security SCOR 350-701 v1.1 · Aug 2026

What is 802.1X?

IEEE 802.1X is a standard for port-based network access control (PNAC). It provides an authentication mechanism for devices trying to connect to a LAN or WLAN. Before a device can send or receive any network traffic, it must prove its identity.

802.1X involves three roles:

The Three 802.1X Roles:
  • Supplicant - the client device requesting network access (laptop, phone, IoT device)
  • Authenticator - the network device controlling access (switch port or wireless AP)
  • Authentication Server - the RADIUS server that verifies credentials (Cisco ISE, FreeRADIUS, Microsoft NPS)

Here's how the process works:

  1. A device connects to a switch port or wireless network
  2. The switch (authenticator) blocks all traffic except EAP (Extensible Authentication Protocol) frames
  3. The supplicant sends its credentials via EAP to the authenticator
  4. The authenticator forwards the EAP messages to the RADIUS server, encapsulated in RADIUS packets
  5. The RADIUS server verifies the credentials against its identity source (Active Directory, LDAP, local database)
  6. If authentication succeeds, the RADIUS server sends an Access-Accept message with authorization attributes (VLAN assignment, ACL, etc.)
  7. The switch opens the port and applies the authorized policy
📝
SCOR Exam Note: This sequence is Domain 6.2 territory - "configure and verify network access control mechanisms such as 802.1X, MAB, WebAuth". Know the three roles, but more importantly be able to say what the port is doing at each step and which attributes come back on the Access-Accept, because that is what a verify question asks.

EAP Methods for 802.1X

EAP (Extensible Authentication Protocol) is a framework that supports multiple authentication methods within 802.1X. Different EAP methods offer different security levels and deployment requirements:

EAP Method Authentication Certificates Required Security Level
EAP-TLS Mutual certificate authentication Server + Client certificates Highest - no passwords involved
PEAP (Protected EAP) Server cert + username/password inside TLS tunnel Server certificate only High - most commonly deployed
EAP-TTLS Server cert + various inner methods in TLS tunnel Server certificate only High - flexible inner methods
EAP-FAST PAC (Protected Access Credential) + tunnel Optional (uses PAC instead) Medium-High - Cisco proprietary
EAP-MD5 Username/password with MD5 hash None Low - no mutual auth, vulnerable to attacks
💡
Exam Tip: EAP-TLS is the most secure because it uses mutual certificate authentication - both sides prove identity with certificates, so there is no password to phish. PEAP is the most commonly deployed because it only requires a server certificate and users authenticate with their existing AD credentials. On SCOR, watch for the follow-up: EAP-TLS means you now own a PKI and a certificate lifecycle, and that operational cost is often the point of the question.

PEAP in Detail

PEAP (Protected EAP) is the most widely deployed EAP method in enterprise environments because it balances security with ease of deployment:

  1. The RADIUS server presents its certificate to the supplicant
  2. The supplicant validates the server certificate (trusted CA)
  3. A TLS tunnel is established between supplicant and server
  4. Inside this encrypted tunnel, the user authenticates with username/password (using MSCHAPv2)
  5. Credentials are never sent in cleartext because they're protected by the outer TLS tunnel

EAP-TLS in Detail

EAP-TLS provides the strongest security by eliminating passwords entirely:

  • Both the server and client present X.509 certificates
  • Mutual authentication - each side verifies the other's identity
  • Immune to password-based attacks (phishing, brute force, credential stuffing)
  • Requires a PKI (Public Key Infrastructure) to issue and manage client certificates
  • Higher administrative overhead - certificate enrollment, renewal, and revocation must be managed

Cisco ISE Overview

Cisco Identity Services Engine (ISE) is an enterprise-grade RADIUS and policy server that provides centralized network access control. It is the product behind almost every identity and secure-access line in SCOR Domain 6.0, and the whole subject of the 300-715 SISE concentration exam.

Core ISE Functions

  • Authentication - verifies who or what is connecting (user identity, device type)
  • Authorization - determines what the authenticated entity can access (VLAN, ACL, SGT)
  • Accounting - logs all access events for auditing and compliance
  • Posture Assessment - checks device health (OS patches, antivirus status, disk encryption) before granting access
  • Profiling - automatically identifies device types (laptop, printer, IP phone, IoT) based on network behavior

ISE Policy Framework

ISE uses a layered policy model:

Policy Layer Purpose Example
Authentication Policy Determines how to verify identity Use PEAP-MSCHAPv2 against Active Directory
Authorization Policy Determines what access to grant If employee + compliant device, assign VLAN 100
Posture Policy Defines device health requirements Windows 11 + current patches + AV running
⚠️
Security Principle: ISE implements the zero trust principle at the network access layer. Instead of trusting any device that physically connects, every device must prove its identity and meet health requirements before receiving any network access. See Zero Trust Architecture for how the same idea generalises beyond the switchport.

802.1X Configuration

Here's what 802.1X configuration looks like on the switch (authenticator) side. SCOR line 6.2 says "configure and verify", so this is not optional background - being able to read this config and predict the port's behaviour is the skill being tested.

Switch-Side Configuration (Cisco IOS)

Enable AAA and RADIUS
! Enable AAA globally
aaa new-model

! Define RADIUS server
radius server ISE-PRIMARY
 address ipv4 10.1.1.100 auth-port 1812 acct-port 1813
 key MyRadiusSecret123

! Create authentication method list
aaa authentication dot1x default group radius
aaa authorization network default group radius
aaa accounting dot1x default start-stop group radius
Enable 802.1X on Switch Ports
! Enable 802.1X globally
dot1x system-auth-control

! Configure access port for 802.1X
interface GigabitEthernet0/1
 switchport mode access
 switchport access vlan 100
 authentication port-control auto
 dot1x pae authenticator
 authentication order dot1x mab
 authentication priority dot1x mab

Key configuration concepts:

  • aaa new-model - enables the AAA framework (required for 802.1X)
  • dot1x system-auth-control - enables 802.1X globally on the switch
  • authentication port-control auto - the port starts in unauthorized state and waits for authentication
  • dot1x pae authenticator - sets the port's 802.1X role to authenticator
  • authentication order dot1x mab - try 802.1X first, fall back to MAB if no supplicant responds

RADIUS Communication

The authenticator communicates with the RADIUS server using UDP ports 1812 (authentication) and 1813 (accounting). Legacy systems may use ports 1645/1646. The RADIUS shared secret encrypts the communication between the authenticator and the server.

MAB and Guest Access

MAC Authentication Bypass (MAB)

Not all devices support 802.1X. Printers, IP phones, cameras, and IoT devices typically lack supplicant software. MAB is a fallback authentication method that uses the device's MAC address as its identity.

How MAB works:

  1. The switch detects a new device but receives no 802.1X response
  2. After a timeout, the switch captures the device's MAC address
  3. The switch sends the MAC address to the RADIUS server as both username and password
  4. The RADIUS server checks the MAC against a known-device database
  5. If matched, the server returns the appropriate authorization (VLAN, ACL)
⚠️
Security Limitation: MAB is less secure than 802.1X because MAC addresses can be spoofed. An attacker who knows a printer's MAC address could impersonate it. Always combine MAB with additional controls like device profiling and network segmentation.

Guest Access

For visitors and BYOD (Bring Your Own Device), NAC solutions provide guest access portals:

  • Web Authentication (WebAuth) - redirects unauthenticated users to a captive portal
  • Sponsored Guest - an employee creates a guest account for the visitor
  • Self-Registration - guests register themselves (typically with email or SMS verification)
  • Guest VLAN - guests are placed in an isolated VLAN with limited access (internet only, no internal resources)

Change of Authorization (CoA)

CoA (RFC 5176) allows the RADIUS server to dynamically change a client's authorization after initial authentication. This is critical for posture assessment workflows:

  1. Device authenticates and is placed in a quarantine VLAN for posture assessment
  2. ISE checks the device's health (patches, antivirus, compliance)
  3. If compliant, ISE sends a CoA message to the switch
  4. The switch re-authorizes the device into the appropriate production VLAN - no user action needed

802.1X on the SCOR 350-701 Exam

Everything on this page sits in Domain 6.0, Secure Network Access, Visibility and Enforcement - 15% of SCOR 350-701. Unlike a vendor-neutral exam, SCOR asks you to configure and verify, not just describe, so knowing the roles is the starting point rather than the finish line.

What the blueprint actually names

  • 6.1 - identity management and secure network access concepts: guest services, profiling, posture assessment, BYOD
  • 6.2 - configure and verify network access control mechanisms: 802.1X, MAB, WebAuth
  • 6.3 - network access with CoA (Change of Authorization)
  • 6.4 - the benefits of device compliance and application control
  • 6.6 - the benefits of network telemetry
  • 6.7 - Cisco Secure Network Analytics, Secure Cloud Analytics, pxGrid and Umbrella Investigate

Where candidates lose marks

  • Order of operations on the port. What the switchport does while the supplicant is silent, when MAB takes over, and what changes if the order is flipped - that is a configure-and-verify question, not a definition question.
  • CoA as an exam answer. Any scenario where authorization changes after the session is already up - posture turning compliant, a profiling result arriving late - is CoA. It has its own blueprint line for a reason.
  • Profiling vs posture. Profiling works out what the device is; posture works out whether it is healthy. They get swapped constantly.
  • pxGrid. Easy to skip because it feels peripheral, and it is named explicitly in 6.7.
💡
Exam strategy: "Most secure" network access authentication is almost always EAP-TLS (mutual certificates); "most commonly deployed" or "no client PKI" is PEAP. And if a device cannot speak 802.1X at all - printer, camera, older IP phone - the answer is MAB, with the caveat that a MAC address is an identifier, not a credential.
📝
Going further than SCOR? ISE gets a whole concentration exam of its own - 300-715 SISE. If you plan to take it, Domain 6.0 is the foundation: the personas, policy sets and CoA behaviour on this page are assumed knowledge there, not taught again.
Included with Exam Purchase

Get the Complete Security+ Study Guide

We don't have a SCOR 350-701 bank yet. What we do have is CompTIA Security+ SY0-701 - vendor-neutral, and it shares SCOR's fundamentals: cryptography and PKI, VPN types, 802.1X and NAC. Useful for checking the groundwork, not a substitute for Cisco-specific study.

All SY0-701 domains covered Detailed explanations 10 free preview pages
Create Free Account to Preview

802.1X & NAC Practice Questions

Test your understanding with these 5 expert-created questions. Each includes a detailed explanation to reinforce your learning.

Ready for More?

You've just covered Domain 6.0. Here's where to go next:

Frequently Asked Questions

Is 802.1X on the CCNP Security SCOR 350-701 exam?

Yes, and it is named explicitly. Domain 6.0, Secure Network Access, Visibility and Enforcement, is 15% of SCOR 350-701, and line 6.2 of the blueprint reads "configure and verify network access control mechanisms such as 802.1X, MAB, WebAuth". Note the verb: SCOR expects configure-and-verify, not just a description of the three roles.

What is the most secure EAP method?

EAP-TLS is considered the most secure because it requires certificates on both the client and the server (mutual authentication). This eliminates password-based attacks entirely - no credentials to phish, brute force, or stuff. The tradeoff is that deploying and managing client certificates requires a PKI infrastructure, which adds administrative overhead. For organizations without PKI, PEAP is the next best option.

How much Cisco ISE do I need for SCOR versus the SISE concentration exam?

For SCOR 350-701, you need the concepts in Domain 6.0: identity management, guest services, profiling, posture assessment, BYOD, and configuring and verifying 802.1X, MAB and WebAuth, plus CoA and pxGrid at a "describe the benefits" level. You are not expected to build a distributed ISE deployment. That depth belongs to 300-715 SISE, the ISE concentration exam, where personas, policy sets, certificate templates and troubleshooting are the whole paper rather than one domain.

What is the difference between 802.1X and MAB?

802.1X is a full authentication protocol that uses EAP to verify user or device identity with credentials or certificates. MAB (MAC Authentication Bypass) is a fallback method that authenticates devices based on their MAC address alone. MAB is significantly less secure because MAC addresses can be spoofed, but it's necessary for devices that lack 802.1X supplicant software - printers, IP phones, cameras, and IoT devices.