Vai al contenuto principale

Guida alla configurazione SCEP aziendale: autenticazione Wi-Fi basata su certificati per l'istruzione superiore e le grandi reti

Questa guida fornisce un progetto tecnico completo per l'implementazione dell'autenticazione WiFi basata su certificati tramite SCEP. Copre la transizione architetturale dalle chiavi precondivise a EAP-TLS, le sequenze di implementazione sulle piattaforme MDM e le strategie critiche di mitigazione del rischio per le reti su larga scala.

📖 5 minuti di lettura📝 1,151 parole🔧 2 esempi pratici3 domande di esercitazione📚 8 definizioni chiave

Ascolta questa guida

Visualizza trascrizione del podcast
Enterprise SCEP Setup Guide: Certificate-Based WiFi Authentication for Higher Education and Large Networks A Purple Technical Briefing - Podcast Script (approximately 10 minutes) --- INTRODUCTION AND CONTEXT - approximately 1 minute Welcome to the Purple Technical Briefing series. I am talking today about something that lands in a lot of IT inboxes but rarely gets a straight answer: how do you actually deploy certificate-based WiFi authentication at scale, using SCEP, across a large network - whether that is a university campus, a multi-site hotel group, or a large public sector estate? We are going to cover the full picture. What SCEP actually does, how it fits into an 802.1X architecture, the deployment sequence that most teams get wrong, two real-world implementation scenarios, and the pitfalls that will cost you a weekend of your life if you do not plan for them. This is a consultant briefing, not a tutorial. I am assuming you know what a RADIUS server is and you have probably already decided you need to move away from pre-shared keys. What you need now is the implementation map. Let us get into it. --- TECHNICAL DEEP-DIVE - approximately 5 minutes So, first principles. SCEP stands for Simple Certificate Enrollment Protocol. It was formalised by the IETF as RFC 8894 in 2020, though it had been in widespread enterprise use for well over a decade before that. Its job is straightforward: automate the process of getting a digital certificate onto a managed device without requiring a human to touch each machine. In the context of WiFi authentication, SCEP is the delivery mechanism. The actual authentication protocol you are targeting is EAP-TLS - Extensible Authentication Protocol with Transport Layer Security - which sits inside the 802.1X framework. EAP-TLS is widely regarded as the most secure authentication method for enterprise wireless networks because it requires both the client device and the RADIUS server to present valid certificates. Neither side trusts the other without cryptographic proof. That mutual authentication is what protects you against evil twin attacks - where an attacker spins up a rogue access point to harvest credentials. Here is how the full chain works. A managed device - a student laptop, a staff phone, a hotel point-of-sale terminal - needs to join the corporate wireless network. Your MDM platform, which might be Microsoft Intune or Jamf, pushes a SCEP payload to that device. The payload contains two things: the SCEP URL, which points to your NDES server or cloud SCEP gateway, and a challenge password or shared secret. The device generates its own public and private key pair locally. This is critical. The private key never leaves the device. It is generated on-device, stored in the secure enclave or TPM, and is never transmitted across the network. The device then creates a Certificate Signing Request - a CSR - and sends it to the SCEP gateway. The gateway validates the challenge, forwards the CSR to your Certificate Authority, and the CA signs it and returns the public certificate to the device. From that point on, when the device connects to your WiFi SSID, it presents that certificate to the RADIUS server. The RADIUS server validates the certificate against your CA's trust chain, checks the Certificate Revocation List to confirm the cert has not been revoked, and if everything checks out, sends an accept message to the access point. The device is on the network. The whole process is invisible to the user. Now, let us talk about where SCEP sits relative to the alternative, which is PKCS. PKCS - Public Key Cryptography Standards - is the other certificate delivery method supported by platforms like Intune. With PKCS, the CA generates both the public and private key centrally, and the certificate connector pushes the key pair down to the device. That means the private key travels over the network, which introduces a theoretical attack surface. PKCS is fine for use cases like S/MIME email encryption where key escrow is actually desirable. For WiFi authentication, SCEP is the right choice. The private key stays on the device, full stop. Now, the hardware layer. SCEP and EAP-TLS are vendor-neutral standards, which means they work across Cisco Meraki, HPE Aruba, Ruckus, Juniper Mist, Ubiquiti UniFi, Cambium, Extreme, and Fortinet access points. Your RADIUS configuration - whether that is Windows NPS, FreeRADIUS, or a cloud RADIUS service - is where you define the certificate validation policy and, critically, where you configure dynamic VLAN assignment. Dynamic VLANs are how you segment the network by identity. A student device gets VLAN 20 - internet access only. A faculty device gets VLAN 10 - access to internal research systems. A facilities management device gets VLAN 30 - access to building management systems. All of this is driven by the certificate attributes and the RADIUS policy, with no manual intervention per device. For identity provider integration, SCEP certificate attributes - specifically the Subject Alternative Name - can carry the user's principal name from Microsoft Entra ID, Okta, or Google Workspace. That ties the certificate to a specific identity, which means when you disable an account in Entra ID and the MDM unenrols the device, the certificate is revoked and WiFi access is cut automatically. That is the revocation story that pre-shared keys simply cannot tell. --- IMPLEMENTATION RECOMMENDATIONS AND PITFALLS - approximately 2 minutes Right, let us talk about the deployment sequence, because this is where most teams trip up. The sequence is non-negotiable: Trusted Root certificate first, SCEP certificate profile second, WiFi profile third. Intune and Jamf both enforce profile dependencies. If your WiFi profile references a SCEP certificate that has not yet been deployed to the device, the WiFi profile will fail with a cryptic error that looks like a misconfiguration but is actually just a timing issue. The second pitfall is group targeting. All three profiles - Trusted Root, SCEP, and WiFi - must be deployed to the exact same Azure AD or Jamf group. If the SCEP profile targets a user group and the WiFi profile targets a device group, Intune cannot resolve the dependency and the WiFi profile will show as Not Applicable. This catches teams out constantly. Third: NDES server accessibility. Your NDES server needs to be reachable from the internet so that devices can enrol before they arrive on-site. The right way to do this is via Azure AD Application Proxy, not by punching a hole in your firewall. App Proxy gives you secure remote access without inbound ports and lets you apply Conditional Access policies to the enrolment flow. Fourth: CRL availability. Your RADIUS server checks the Certificate Revocation List every time a device authenticates. If your CRL Distribution Point is unavailable - because a server is down, or the URL has changed - authentication fails for every device on the network simultaneously. That is a campus-wide outage. Make your CRL endpoints highly available, and test revocation before you go live. For large networks - anything above 500 devices - consider a cloud SCEP gateway rather than on-premises NDES. Cloud gateways eliminate the NDES single point of failure, scale horizontally, and typically integrate directly with cloud RADIUS services, removing another infrastructure dependency. --- RAPID-FIRE Q AND A - approximately 1 minute Can SCEP handle BYOD devices that are not MDM-enrolled? Not directly. SCEP requires MDM enrolment to push the certificate payload. For unmanaged BYOD, you need a different approach - either a self-service onboarding portal, or a separate SSID using a captive portal with identity verification. Purple's platform handles that guest and BYOD layer cleanly, sitting alongside your certificate-authenticated staff network. What about iOS and Android? Both platforms support SCEP natively. iOS has supported SCEP since iOS 4. Android Enterprise supports SCEP through Intune and other MDMs. The configuration is slightly different per platform but the underlying protocol is identical. Does EAP-TLS work with WPA3? Yes. WPA3-Enterprise mandates 192-bit security mode for sensitive environments, and EAP-TLS is fully compatible. In fact, WPA3-Enterprise with EAP-TLS is the combination recommended by the Wi-Fi Alliance for government and financial networks. --- SUMMARY AND NEXT STEPS - approximately 1 minute To bring this together. SCEP certificate WiFi authentication is the right architecture for any network with more than 50 managed devices. It eliminates shared credentials, gives you per-device identity, enables dynamic VLAN segmentation, and integrates directly with your identity provider for automated revocation. The deployment sequence - Trusted Root, then SCEP profile, then WiFi profile - is fixed. Group targeting must be consistent. CRL availability is not optional. For higher education specifically, the combination of SCEP for staff and faculty devices, alongside a separate guest WiFi layer for students on personal devices, gives you both security and a great user experience without compromise. If you want to go deeper, Purple's guide on enterprise WiFi authentication without Active Directory or an on-premises server covers the cloud-native path. And if you are thinking about what happens when an employee leaves, our guide on revoking WiFi access walks through the full revocation workflow. Thanks for listening. I am from the Purple technical team, and we will see you in the next briefing. --- END OF SCRIPT

header_image.png

Sintesi esecutiva

Per le sedi aziendali, che si tratti di un moderno campus universitario, di un'attività retail multisito o di un importante gruppo alberghiero, l'affidamento a chiavi precondivise per il WiFi del personale e operativo introduce vulnerabilità di sicurezza e costi operativi inaccettabili. L'architettura di rete moderna richiede l'autenticazione 802.1X tramite EAP-TLS, garantendo che ogni dispositivo sia verificato crittograficamente prima di accedere alla rete.

La sfida risiede nella distribuzione: implementare certificati client univoci su migliaia di dispositivi Windows, iOS e Android senza sommergere l'helpdesk di ticket di supporto. Microsoft Intune, Jamf e altre piattaforme MDM risolvono questo problema attraverso la gestione automatizzata del ciclo di vita dei certificati. Sfruttando il protocollo SCEP (Simple Certificate Enrollment Protocol), i team IT possono distribuire silenziosamente certificati root e client attendibili agli endpoint gestiti.

Questa guida fornisce un progetto architetturale definitivo e una strategia di implementazione dettagliata per la distribuzione dei certificati SCEP aziendali. Esploreremo la sequenza di implementazione necessaria per il successo, delineeremo strategie di mitigazione del rischio reali e descriveremo in dettaglio come l'approccio di rete basato sull'identità di Purple si adatta a questi requisiti.

Approfondimento tecnico: architettura SCEP e 802.1X

Quando si progetta una strategia di implementazione WiFi basata su certificati, la comprensione dell'interazione dei protocolli sottostanti è fondamentale. SCEP è il meccanismo di distribuzione; EAP-TLS è il protocollo di autenticazione.

SCEP (Simple Certificate Enrollment Protocol)

SCEP è lo standard di settore per la registrazione dei dispositivi aziendali. In un flusso di lavoro SCEP, il servizio MDM indica all'endpoint di generare la propria coppia di chiavi privata e pubblica. Il dispositivo crea una Certificate Signing Request (CSR) e la invia tramite un server NDES (Network Device Enrollment Service) o un gateway cloud alla Certificate Authority (CA). La CA firma la richiesta e restituisce il certificato pubblico al dispositivo.

Il vantaggio critico in termini di sicurezza di SCEP è che la chiave privata non lascia mai il dispositivo. Viene generata localmente, memorizzata nell'enclave hardware sicura del dispositivo e non viene mai trasmessa sulla rete. Questo rende SCEP l'approccio fortemente raccomandato per l'autenticazione 802.1X.

scep_architecture_overview.png

EAP-TLS e autenticazione reciproca

EAP-TLS (Extensible Authentication Protocol con Transport Layer Security) si colloca all'interno del framework 802.1X. EAP-TLS è ampiamente considerato il metodo di autenticazione più sicuro per le reti wireless aziendali perché richiede un'autenticazione reciproca. Sia il dispositivo client e il server RADIUS devono presentare certificati validi. Nessuna delle due parti si fida dell'altra senza una prova crittografica. Questa autenticazione reciproca protegge la rete da access point non autorizzati e dalla raccolta di credenziali.

Quando un dispositivo si connette al tuo SSID WiFi, presenta il suo certificato al server RADIUS. Il server RADIUS convalida il certificato rispetto alla catena di attendibilità della CA, controlla la Certificate Revocation List (CRL) per confermare che il certificato non sia stato revocato e, in caso di successo, invia un messaggio di accettazione all'access point.

Guida all'implementazione: la sequenza di distribuzione

La configurazione corretta di un profilo WiFi MDM per 802.1X richiede il rigoroso rispetto di una sequenza di distribuzione specifica. Le dipendenze del profilo impongono che l'attendibilità debba essere stabilita prima di poter configurare l'autenticazione.

Passaggio 1: Distribuzione del profilo del certificato root attendibile

Prima che qualsiasi dispositivo possa richiedere un certificato client o considerare attendibile il server RADIUS, deve considerare attendibile la Certificate Authority emittente.

  1. Esporta il certificato della CA root come file .cer.
  2. Nel tuo MDM (ad es. Intune o Jamf), crea un profilo di certificato attendibile.
  3. Carica il file .cer e distribuisci questo profilo ai gruppi di dispositivi di destinazione.

Passaggio 2: Configurazione del profilo del certificato SCEP

Una volta stabilita l'attendibilità, configura il profilo SCEP per istruire i dispositivi su come ottenere il loro certificato client.

  1. Crea un nuovo profilo di configurazione e seleziona il certificato SCEP.
  2. Configura il formato del nome del soggetto (Subject name). Per l'autenticazione guidata dall'utente, utilizza lo User Principal Name.
  3. Imposta l'utilizzo della chiave (Key usage) su Firma digitale (Digital signature) e Cifratura della chiave (Key encipherment).
  4. In Utilizzo avanzato della chiave (Extended key usage), specifica Autenticazione client (Client Authentication).
  5. Collega questo profilo al profilo del certificato root attendibile creato al Passaggio 1.
  6. Fornisci l'URL esterno del server NDES o del gateway SCEP.

Passaggio 3: Distribuzione del profilo WiFi 802.1X

L'ultimo passaggio consiste nell'inviare la configurazione WiFi che associa i certificati all'SSID di rete.

  1. Crea un profilo di configurazione Wi-Fi.
  2. Inserisci il nome della rete (SSID) esattamente come trasmesso dai tuoi access point.
  3. Seleziona WPA2-Enterprise o WPA3-Enterprise come tipo di sicurezza.
  4. Imposta il tipo di EAP su EAP-TLS.
  5. Seleziona il profilo del certificato SCEP creato al Passaggio 2 come certificato di autenticazione client.
  6. Specifica il certificato root attendibile per la convalida del server.

Best practice e standard di settore

Quando si implementa la distribuzione dei certificati SCEP, attenersi a queste best practice indipendenti dal fornitore per garantire conformità e affidabilità.

Posizionamento e sicurezza del server NDES

Il server NDES deve essere accessibile da Internet per consentire ai dispositivi remoti do per distribuire i certificati prima dell'arrivo in sede. Tuttavia, esporre un server interno direttamente a Internet rappresenta un rischio di sicurezza significativo. Pubblica l'URL NDES utilizzando Azure AD Application Proxy o utilizza un gateway SCEP ospitato nel cloud. Questo fornisce un accesso remoto sicuro senza aprire porte in entrata nel firewall.

Controllo RADIUS e CRL

La distribuzione dei certificati è solo metà dell'equazione di sicurezza; la revoca è altrettanto fondamentale. Se un dipendente lascia l'azienda, disabilitare il suo account Active Directory potrebbe non revocare immediatamente il suo accesso WiFi se il suo certificato client rimane valido e il server RADIUS non controlla rigorosamente la Certificate Revocation List (CRL). Configura il tuo server RADIUS per imporre un controllo rigoroso della CRL e assicurati che i tuoi CRL Distribution Points siano altamente disponibili.

Distribuzione indipendente dall'hardware

SCEP e EAP-TLS sono standard indipendenti dal fornitore. La tua distribuzione dovrebbe essere indipendente dall'hardware, funzionando perfettamente su infrastrutture Cisco Meraki, HPE Aruba, Ruckus, Juniper Mist, Ubiquiti UniFi, Cambium, Extreme e Fortinet.

Risoluzione dei problemi e mitigazione dei rischi

Anche con una pianificazione meticolosa, la distribuzione dei certificati può riscontrare problemi.

Problema: Impossibile applicare il profilo WiFi

Questo è quasi sempre causato da una mancata corrispondenza nel targeting dei gruppi. Se il profilo SCEP è assegnato a un Gruppo Utenti, ma il profilo WiFi è assegnato a un Gruppo Dispositivi, l'MDM non può risolvere la dipendenza. Assicuratevi che i profili Trusted Root, SCEP e WiFi siano tutti distribuiti esattamente allo stesso gruppo.

Problema: Errori NDES 403 Forbidden

I dispositivi non riescono a recuperare il certificato SCEP. L'account di servizio Intune Certificate Connector probabilmente non ha le autorizzazioni necessarie sul modello di certificato, oppure il filtraggio degli URL sul firewall sta bloccando i parametri specifici della query string utilizzati da SCEP.

ROI e impatto aziendale

La transizione alla distribuzione dei certificati SCEP 802.1X offre ritorni misurabili in termini di sicurezza e operatività.

scep_vs_psk_comparison.png

  1. Riduzione dei ticket di helpdesk: Il WiFi basato su password genera un volume significativo di ticket di supporto. L'autenticazione basata su certificati è invisibile all'utente, riducendo in genere il volume di helpdesk relativo al WiFi del 70%.
  2. Miglioramento della postura di sicurezza: EAP-TLS elimina il rischio di raccolta delle credenziali e di attacchi Man-in-the-Middle. Questo è fondamentale per la conformità a framework come PCI DSS e GDPR.
  3. Onboarding fluido: Per le organizzazioni che gestiscono grandi flotte di dispositivi Apple insieme a Windows, l'integrazione con i flussi di lavoro MDM esistenti garantisce un'esperienza di provisioning unificata e zero-touch.
  4. Segmentazione dinamica: Supporta l'assegnazione dinamica della VLAN in base all'identità, isolando i dispositivi IoT dai dati aziendali senza richiedere SSID separati.

Per ulteriori letture, esplora le nostre guide correlate su Sicurezza WiFi aziendale: una guida completa per il 2026 e Come revocare l'accesso WiFi quando un dipendente lascia l'azienda .

Definizioni chiave

SCEP (Simple Certificate Enrollment Protocol)

A protocol that automates the request and issuance of digital certificates to managed devices without human intervention.

Used by MDM platforms to securely provision unique identities to devices for network authentication.

EAP-TLS (Extensible Authentication Protocol - Transport Layer Security)

The most secure 802.1X authentication method, requiring both the client and the RADIUS server to present valid digital certificates.

The target authentication protocol that SCEP certificates are provisioned to support.

802.1X

An IEEE standard for port-based network access control that provides an authentication mechanism to devices wishing to attach to a LAN or WLAN.

The overarching framework that secures enterprise networks against unauthorized access.

RADIUS

A networking protocol that provides centralized Authentication, Authorization, and Accounting management for users who connect and use a network service.

The server component that validates the client certificate and determines which VLAN the device should join.

CSR (Certificate Signing Request)

A block of encoded text given to a Certificate Authority when applying for an SSL/TLS certificate, containing the public key and identity information.

Generated locally on the device during the SCEP enrollment process.

NDES (Network Device Enrollment Service)

A Microsoft Windows Server role that acts as a bridge, allowing devices to obtain certificates via SCEP.

The gateway that receives the CSR from the device and forwards it to the internal Certificate Authority.

CRL (Certificate Revocation List)

A list published by the Certificate Authority containing the serial numbers of certificates that have been revoked and should no longer be trusted.

Checked by the RADIUS server during authentication to ensure a terminated employee's device cannot connect.

VLAN (Virtual Local Area Network)

A logical subnetwork that groups a collection of devices from different physical LANs.

Used in conjunction with RADIUS to dynamically segment network traffic based on the identity presented in the SCEP certificate.

Esempi pratici

A 400-room hotel needs to deploy secure operational WiFi for 150 staff devices (tablets and laptops) while ensuring strict separation from the Guest WiFi network.

The IT team configures a cloud SCEP gateway integrated with their MDM. They deploy a Trusted Root profile, followed by a SCEP profile targeting the 'Hotel Operations' device group. A WiFi profile for the 'Staff-Secure' SSID is then deployed, configured for WPA3-Enterprise and EAP-TLS. The RADIUS server is configured to assign these authenticated devices to VLAN 40, completely isolating them from the Guest WiFi (VLAN 50).

Commento dell'esaminatore: This approach eliminates the risk of staff sharing a PSK with guests. By using SCEP, the private keys remain secure on the operational devices, and dynamic VLAN assignment ensures proper network segmentation without broadcasting multiple SSIDs.

A large university campus with 25,000 students and 3,000 staff needs to secure its 'Edu-Secure' network. They currently use PEAP with usernames and passwords, resulting in 500+ helpdesk tickets per month due to password expirations.

The university migrates staff and faculty devices to EAP-TLS using Intune and SCEP. They deploy the certificate profiles in the strict sequence (Root -> SCEP -> WiFi) to the staff user groups. For unmanaged student BYOD devices, they deploy a separate onboarding portal that provisions temporary certificates, or utilize Purple's Guest WiFi platform with profile-based authentication for seamless, secure access.

Commento dell'esaminatore: Migrating managed devices to SCEP/EAP-TLS immediately drops the password-related ticket volume. The hybrid approach acknowledges that SCEP requires MDM enrollment, correctly routing unmanaged BYOD traffic to a purpose-built onboarding flow.

Domande di esercitazione

Q1. Your team is deploying a new SCEP certificate profile to a fleet of 500 Windows laptops. The Trusted Root profile was deployed to the 'All Corporate Devices' group. The SCEP profile was deployed to the 'All Corporate Users' group. The WiFi profile is showing as 'Not Applicable' on the laptops. What is the root cause?

Suggerimento: Consider the Intune profile dependency rules and group targeting requirements.

Visualizza risposta modello

The root cause is a mismatch in group targeting. Intune requires that dependent profiles (Root, SCEP, WiFi) be deployed to the exact same group type. Because the Root profile targets devices and the SCEP profile targets users, the dependency chain is broken. All three profiles must target either the same Device group or the same User group.

Q2. A hotel operations director wants to secure the staff WiFi network using EAP-TLS. They suggest using PKCS instead of SCEP because it does not require an NDES server. As the network architect, why should you advise against this for WiFi authentication?

Suggerimento: Think about where the private key is generated and how it travels.

Visualizza risposta modello

You should advise against PKCS for WiFi authentication because it requires the private key to be generated centrally by the CA and transmitted over the network to the device. SCEP is significantly more secure because the device generates the private key locally and stores it in a secure hardware enclave; the private key never leaves the device.

Q3. During a network audit, you discover that the RADIUS server is configured to ignore CRL (Certificate Revocation List) checking errors. What specific security risk does this introduce when an employee is terminated?

Suggerimento: Consider what happens to the validity of the certificate if the MDM unenrols the device but the RADIUS server cannot verify revocation status.

Visualizza risposta modello

If CRL checking is ignored or fails open, a terminated employee whose device has been unenrolled (and certificate revoked by the CA) may still be able to connect to the WiFi network. The RADIUS server will see a cryptographically valid certificate and, without checking the CRL, will grant access, creating a severe security vulnerability.

Continua a leggere questa serie

Integrazione di Cisco WLC e Catalyst con Purple WiFi: guida passo-passo all'accesso guest

Questa guida descrive in dettaglio l'integrazione passo-passo di Cisco WLC e Catalyst 9800 Wireless con Purple, coprendo il reindirizzamento al Captive Portal per Guest WiFi tramite Central Web Authentication, il WiFi aziendale sicuro per il personale tramite 802.1X EAP-TLS e la segmentazione multi-tenant tramite Cisco Identity Pre-Shared Keys (iPSK) con assegnazione dinamica della VLAN. È scritta per architetti di rete aziendali e direttori della sicurezza IT che distribuiscono l'infrastruttura Cisco nei settori hospitality, retail e grandi spazi pubblici.

Leggi la guida →

Guida all'integrazione di MikroTik RouterOS Captive Portal e Purple WiFi

Questa guida tecnica fornisce istruzioni dettagliate per l'integrazione di MikroTik RouterOS con la piattaforma Purple WiFi. Copre la configurazione del Captive Portal per il WiFi ospiti, l'autenticazione 802.1X per il WiFi dipendenti e il WiFi multi-tenant utilizzando PSK privati per la segmentazione dinamica delle VLAN.

Leggi la guida →

Integrazione di Alta Labs con Purple WiFi: installazione e configurazione del Captive Portal

Questa guida di riferimento tecnico copre l'integrazione end-to-end degli access point Alta Labs AP6 e AP6 Pro con il captive portal ospitato in cloud di Purple. Dettaglia la configurazione del reindirizzamento esterno, l'autenticazione RADIUS, i requisiti di walled garden e la segmentazione multi-tenant tramite AltaPass Private Pre-Shared Keys. I gestori delle sedi e i team IT disporranno di un playbook di implementazione replicabile per ambienti hospitality, retail e smart office.

Leggi la guida →