Come utilizzare Microsoft Intune per distribuire certificati WiFi sui dispositivi
Un riferimento tecnico completo per i responsabili IT sulla distribuzione di certificati WiFi 802.1X tramite Microsoft Intune. Copre l'architettura SCEP vs PKCS, le fasi di implementazione, la mappatura della conformità e gli scenari di distribuzione reali per ambienti aziendali.
Ascolta questa guida
Visualizza trascrizione del podcast
📚 Parte della nostra serie principale: Enterprise WiFi Security Guide →
- Executive Summary
- Technical Deep-Dive: Architecture and Protocols
- The 802.1X Authentication Framework
- EAP-TLS and Mutual Authentication
- Intune Certificate Deployment Mechanisms: SCEP vs PKCS
- Implementation Guide: Step-by-Step Deployment
- Step 1: Prepare the Public Key Infrastructure (PKI)
- Step 2: Deploy the Trusted Root Certificate
- Step 3: Deploy the Client Certificate Profile
- Step 4: Configure the WiFi Profile
- Best Practices & Strategic Recommendations
- Device vs. User Certificates
- Network Segmentation and Guest Access
- Addressing the NPS Certificate Mapping Requirement
- Troubleshooting & Risk Mitigation
- Common Failure Modes
- ROI & Business Impact

Executive Summary
For enterprise IT leaders managing large-scale environments across Hospitality , Retail , or public-sector venues, secure wireless access is a baseline operational requirement. Relying on shared PSKs (Pre-Shared Keys) or username/password authentication (PEAP-MSCHAPv2) exposes the network to credential theft, phishing, and compliance failures. The industry standard for robust enterprise WiFi security is 802.1X with EAP-TLS (Extensible Authentication Protocol with Transport Layer Security), which mandates mutual certificate-based authentication between the device and the network.
However, the primary barrier to EAP-TLS adoption has historically been the operational overhead of certificate lifecycle management. Microsoft Intune resolves this by automating the delivery, renewal, and revocation of digital certificates to managed devices at scale.
This technical reference details the architecture, deployment methodologies (SCEP vs PKCS), and implementation steps required to push WiFi certificates via Microsoft Intune. It provides actionable guidance for network architects and systems engineers tasked with securing corporate communications while maintaining strict separation from visitor networks, such as those managed by a Guest WiFi platform.
Technical Deep-Dive: Architecture and Protocols
To implement certificate-based authentication effectively, IT teams must understand the interaction between the Mobile Device Management (MDM) platform, the Public Key Infrastructure (PKI), and the network access control layer.
The 802.1X Authentication Framework
The IEEE 802.1X standard defines port-based network access control. In a wireless context, it prevents a device from passing any traffic (other than EAP authentication frames) until its identity is verified. The architecture consists of three components:
- Supplicant: The client device (laptop, smartphone, tablet) requesting network access.
- Authenticator: The wireless access point or wireless LAN controller that blocks traffic until authentication succeeds.
- Authentication Server: The RADIUS (Remote Authentication Dial-In User Service) server, such as Microsoft Network Policy Server (NPS) or Cisco ISE, which validates the credentials and authorises access.
EAP-TLS and Mutual Authentication
EAP-TLS is the most secure EAP method because it requires mutual authentication. The RADIUS server presents its certificate to the supplicant to prove it is the legitimate corporate network (preventing evil-twin attacks), and the supplicant presents its client certificate to the RADIUS server to prove it is an authorised device or user.

Intune Certificate Deployment Mechanisms: SCEP vs PKCS
Microsoft Intune supports two primary protocols for deploying client certificates to devices. Selecting the appropriate mechanism is a critical architectural decision.
Simple Certificate Enrollment Protocol (SCEP)
With SCEP, the private key is generated directly on the client device. The device creates a Certificate Signing Request (CSR) and submits it via Intune to the Network Device Enrollment Service (NDES) server, which acts as a proxy to the Active Directory Certificate Services (ADCS) infrastructure. The CA issues the certificate, which is returned to the device.
Because the private key never leaves the device, SCEP is considered highly secure and is the recommended approach for BYOD (Bring Your Own Device) deployments and zero-trust architectures.
Public Key Cryptography Standards (PKCS)
With PKCS, the Intune Certificate Connector requests the certificate from the CA on behalf of the device. The CA generates both the public certificate and the private key, which the connector then securely delivers to the device via Intune.
While PKCS simplifies the infrastructure requirements (no NDES server is needed), the private key is transmitted across the network. This model is generally acceptable for corporate-owned, fully managed device fleets where the MDM platform is already a highly trusted component.

Implementation Guide: Step-by-Step Deployment
Deploying Wi-Fi certificates via Intune requires precise sequencing. Deploying profiles out of order is the most common cause of implementation failure.
Step 1: Prepare the Public Key Infrastructure (PKI)
Whether utilising on-premises ADCS or a cloud-native solution like Microsoft Cloud PKI, the Certificate Authority must be configured with the appropriate templates.
- Key Usage: The template must include the
Client AuthenticationOID (1.3.6.1.5.5.7.3.2). - Key Size: Configure a minimum key size of 2048 bits (RSA) to align with modern cryptographic standards.
- Subject Name: For user certificates, the Subject Alternative Name (SAN) should be configured to use the User Principal Name (UPN). For device certificates, use the Azure AD Device ID.
Step 2: Deploy the Trusted Root Certificate
Before a device can authenticate, it must trust the CA that issued the RADIUS server's certificate.
- Export the Root CA certificate (and any intermediate CA certificates) in
.cerformat. - In the Intune admin centre, navigate to Devices > Configuration profiles > Create profile.
- Select the platform and choose the Trusted certificate profile type.
- Upload the
.cerfile and assign the profile to the target device or user groups.
Note: This profile must successfully apply to devices before proceeding to the next steps.
Step 3: Deploy the Client Certificate Profile
Create either a SCEP or PKCS certificate profile to deliver the identity certificate to the supplicant.
- Navigate to Devices > Configuration profiles > Create profile.
- Select the platform and choose either SCEP certificate or PKCS certificate.
- Configure the Subject Name format and SAN according to your identity requirements (User vs. Device).
- Specify the Key Storage Provider (KSP) — typically the Trusted Platform Module (TPM) for hardware-backed security.
- Assign the profile to the same groups targeted in Step 2.
Step 4: Configure the WiFi Profile
The final component binds the certificates to the wireless network settings.
- Navigate to Devices > Configuration profiles > Create profile.
- Select the platform and choose the Wi-Fi profile type.
- Set the Wi-Fi type to Enterprise and enter the exact SSID.
- Set the EAP type to EAP-TLS.
- Under Server Trust, specify the exact name of the RADIUS server certificate and select the Trusted Root certificate profile deployed in Step 2.
- Under Client Authentication, select the SCEP or PKCS certificate profile deployed in Step 3.
- Assign the profile to the target groups.
Best Practices & Strategic Recommendations
Device vs. User Certificates
Network architects must decide whether to issue certificates to the device (machine authentication) or the user (user authentication).
- Device Certificates: Allow the machine to connect to the WiFi network before a user logs in. This is critical for initial device provisioning, Group Policy processing, and password resets at the login screen. Recommended for corporate-owned devices.
- User Certificates: Tie network access to the individual's identity. This provides granular auditing and role-based access control. Recommended for BYOD scenarios.
Network Segmentation and Guest Access
A fundamental security principle is the strict logical separation of the corporate 802.1X network from visitor or public access networks. The Intune-managed infrastructure should be dedicated exclusively to corporate devices and authenticated staff.
For visitor access, organisations should deploy a dedicated Guest WiFi SSID backed by a captive portal. This ensures that unmanaged devices are isolated, while still allowing the business to capture visitor analytics via a WiFi Analytics platform. To learn more about securing DNS infrastructure across both segments, review our guide on how to Protect Your Network with Strong DNS and Security .
Addressing the NPS Certificate Mapping Requirement
For organisations utilising Microsoft Network Policy Server (NPS) with Azure AD-joined devices, a critical configuration change was introduced by Microsoft. NPS now requires strong certificate mapping.
When using device certificates, the computer object in the on-premises Active Directory must have its altSecurityIdentities attribute populated with the certificate's details (typically the X509IssuerSerialNumber). IT teams must implement a scheduled script or event-driven workflow to update this attribute when Intune issues a new certificate, otherwise authentication will fail.
Troubleshooting & Risk Mitigation
When an 802.1X deployment fails, the issue almost always resides in the certificate chain or the Intune profile sequencing.
Common Failure Modes
- Silent WiFi Profile Failure: If the Intune WiFi profile is applied to a device before the client certificate has been successfully provisioned, the WiFi profile will often fail to install or will fail silently. Always verify certificate presence in the device's Personal store (
certmgr.mscon Windows) before troubleshooting the WiFi configuration. - Server Trust Validation Errors: If the device rejects the RADIUS server, verify that the server name specified in the Intune WiFi profile exactly matches the Subject Name or SAN on the RADIUS server's certificate. Additionally, ensure that the entire certificate chain (Root and Intermediate) is present in the device's Trusted Root Certification Authorities store.
- Certificate Revocation List (CRL) Unavailability: If the RADIUS server cannot reach the CA's CRL distribution point to verify the client certificate's status, authentication will be denied. Ensure the CRL URL is highly available and accessible from the RADIUS server.
ROI & Business Impact
Transitioning to certificate-based WiFi authentication via Intune delivers significant operational and security returns.
- Risk Mitigation: Eliminates the risk of credential harvesting, pass-the-hash attacks, and unauthorised network access via shared PSKs.
- Operational Efficiency: Reduces IT helpdesk tickets related to password expirations and WiFi connectivity issues. The automated lifecycle management means certificates are renewed transparently without user intervention.
- Compliance Enablement: Satisfies stringent regulatory requirements. For retail environments, it directly addresses PCI DSS requirements for robust wireless encryption and authentication. For public sector and healthcare, it aligns with zero-trust network access (ZTNA) principles.
By leveraging Microsoft Intune for certificate deployment, IT teams can achieve a frictionless, highly secure wireless experience that operates silently in the background, allowing the business to focus on core operations.
Definizioni chiave
802.1X
Uno standard IEEE per il controllo dell'accesso alla rete basato su porte che impedisce ai dispositivi non autorizzati di accedere a una LAN o WLAN fino a quando non si autenticano correttamente.
Il protocollo di sicurezza fondamentale che sostituisce le password WiFi condivise con l'autenticazione di livello enterprise negli ambienti aziendali.
EAP-TLS
Extensible Authentication Protocol con Transport Layer Security. Un framework di autenticazione che richiede sia al client che al server di dimostrare la propria identità utilizzando certificati digitali.
Il protocollo specifico configurato nel profilo WiFi di Intune per imporre l'autenticazione reciproca dei certificati, eliminando il rischio di furto di credenziali.
SCEP
Simple Certificate Enrollment Protocol. Un meccanismo in cui il dispositivo client genera la propria chiave privata e richiede un certificato alla CA tramite un server intermediario.
Il metodo di implementazione preferito per gli ambienti BYOD perché la chiave privata non viene mai trasmessa attraverso la rete.
PKCS
Public Key Cryptography Standards. Nel contesto di Intune, un metodo di implementazione in cui la CA genera la chiave privata e l'Intune Connector la consegna in modo sicuro al dispositivo.
Un'architettura di implementazione più semplice, spesso utilizzata per le flotte di dispositivi di proprietà aziendale, in quanto elimina la necessità di un server NDES.
NDES
Network Device Enrollment Service. Un ruolo server Microsoft che funge da proxy, consentendo ai dispositivi che funzionano senza credenziali di dominio di ottenere certificati da un'Active Directory Certificate Authority.
Un componente infrastrutturale obbligatorio quando si distribuiscono certificati tramite SCEP in un ambiente ADCS on-premises.
RADIUS
Remote Authentication Dial-In User Service. Un protocollo di rete che fornisce una gestione centralizzata di autenticazione, autorizzazione e contabilità (AAA).
Il server (come Microsoft NPS o Cisco ISE) che riceve la richiesta di autenticazione dall'access point WiFi e convalida il certificato del dispositivo.
Supplicant
Il client software sul dispositivo dell'utente finale (laptop, smartphone) che avvia il processo di autenticazione 802.1X.
Il profilo WiFi di Intune configura il supplicant nativo del sistema operativo (ad es. Windows WLAN AutoConfig) per utilizzare i certificati e i metodi EAP corretti.
Certificate Revocation List (CRL)
Un elenco firmato digitalmente e pubblicato dall'Autorità di Certificazione contenente i numeri di serie dei certificati che sono stati revocati e non devono più essere considerati attendibili.
Fondamentale per la conformità della sicurezza; il server RADIUS deve controllare la CRL per garantire che un dispositivo che si connette non sia stato segnalato come smarrito o rubato.
Esempi pratici
Una catena di vendita al dettaglio con 400 punti vendita sta distribuendo tablet aziendali per la gestione dell'inventario. I dispositivi sono completamente gestiti tramite Intune e associati ad Azure AD. Hanno bisogno di un accesso immediato alla rete all'avvio per sincronizzare i database dell'inventario, prima che un utente specifico effettui l'accesso. L'infrastruttura di rete utilizza Cisco ISE come server RADIUS. Qual è la strategia di distribuzione dei certificati ottimale?
Il team IT dovrebbe implementare i certificati di dispositivo PKCS.
- Configurare un modello di certificato di dispositivo sulla CA.
- Distribuire il certificato della Root CA sui tablet tramite Intune.
- Creare un profilo di certificato PKCS in Intune, impostando il formato del Nome Soggetto sull'ID dispositivo di Azure AD ({{AAD_Device_ID}}).
- Creare un profilo WiFi aziendale specificando EAP-TLS, facendo riferimento al nome del certificato del server ISE e al profilo PKCS distribuito.
- Assegnare tutti i profili al gruppo di dispositivi che contiene i tablet.
Un grande ospedale universitario consente al personale medico di utilizzare i propri smartphone personali (BYOD) per accedere alle applicazioni di pianificazione clinica. I dispositivi sono registrati in Intune tramite un Profilo di Lavoro. La politica di sicurezza impone che non vengano memorizzate credenziali aziendali sui dispositivi personali e che l'accesso alla rete venga revocato immediatamente se un dispositivo viene compromesso. Come dovrebbe essere progettata l'autenticazione WiFi?
L'ospedale deve implementare certificati utente SCEP combinati con i Criteri di Conformità di Intune.
- Distribuire un server NDES per fungere da proxy per le richieste alla CA.
- Creare un profilo di certificato utente SCEP in Intune, con il SAN configurato sul Nome Principale Utente ({{UserPrincipalName}}).
- Creare un Criterio di Conformità Intune che richieda una versione minima del sistema operativo, un blocco schermo attivo e l'assenza di jailbreak/root.
- Configurare la CA per pubblicare un elenco di revoca dei certificati (CRL) ad alta disponibilità.
- Configurare il server RADIUS per applicare rigorosamente il controllo della CRL a ogni tentativo di autenticazione.
Domande di esercitazione
Q1. La tua organizzazione sta migrando da PEAP-MSCHAPv2 (nome utente/password) a EAP-TLS per il WiFi aziendale. Durante la fase pilota, diversi laptop Windows 11 ricevono correttamente i profili di configurazione di Intune ma non riescono a connettersi alla rete. L'analisi dei registri eventi di Windows mostra l'ID evento 20271, che indica che il certificato del server RADIUS è stato rifiutato. Qual è la causa più probabile?
Suggerimento: Considera la catena di attendibilità richiesta per l'autenticazione reciproca.
Visualizza risposta modello
Sui dispositivi manca il certificato della CA radice attendibile che ha emesso il certificato del server RADIUS. In EAP-TLS, il dispositivo deve convalidare l'identità del server RADIUS. Il team IT deve garantire che il profilo "Certificato attendibile" contenente la CA radice (e le eventuali CA intermedie) sia distribuito ai dispositivi tramite Intune e installato correttamente prima che il profilo WiFi tenti di connettersi.
Q2. Una sede del settore pubblico sta distribuendo 802.1X per i dispositivi del personale utilizzando Intune e certificati PKCS. Gestisce inoltre una rete visitatori separata gestita da una piattaforma Guest WiFi. Un revisore rileva che in caso di furto di un laptop del personale, il certificato rimane valido per 12 mesi. In che modo l'architetto di rete dovrebbe affrontare questo rischio?
Suggerimento: In che modo il server di autenticazione sa che un certificato non è più valido prima della sua scadenza?
Visualizza risposta modello
L'architetto deve implementare un flusso di lavoro affidabile per la revoca dei certificati. In primo luogo, assicurarsi che la CA pubblichi un elenco di revoca dei certificati (CRL) su un punto di distribuzione ad alta disponibilità. In secondo luogo, configurare il server RADIUS (ad esempio, NPS) per richiedere il controllo della CRL durante ogni tentativo di autenticazione. Infine, stabilire una procedura operativa in Intune per revocare esplicitamente il certificato di qualsiasi dispositivo contrassegnato come smarrito o rubato, aggiornando la CRL e bloccando l'accesso alla rete.
Q3. Stai progettando la distribuzione di Intune per una flotta di dispositivi kiosk condivisi in un ambiente retail. Questi dispositivi si riavviano quotidianamente e devono connettersi immediatamente alla rete aziendale per scaricare gli aggiornamenti prima che qualsiasi utente interagisca con essi. Dovresti distribuire certificati utente o certificati dispositivo e quale formato del nome alternativo del soggetto (SAN) dovrebbe essere utilizzato?
Suggerimento: Considera lo stato del dispositivo immediatamente dopo un riavvio.
Visualizza risposta modello
È necessario distribuire certificati dispositivo. Poiché i kiosk richiedono l'accesso alla rete prima che un utente acceda, un certificato utente non sarebbe disponibile al momento dell'avvio. Il nome alternativo del soggetto (SAN) nel profilo del certificato di Intune deve essere configurato per utilizzare l'ID dispositivo di Azure AD ({{AAD_Device_ID}}) o il nome di dominio completo del dispositivo, consentendo al server RADIUS di autenticare la risorsa hardware specifica.
Continua a leggere questa serie
Configuring RADIUS Authentication for Guest and Staff WiFi Networks
Questa guida di riferimento tecnica descrive l'architettura, la configurazione e l'implementazione dell'autenticazione RADIUS per le reti WiFi aziendali per ospiti e personale. Fornisce ai network architect e ai manager IT i protocolli esatti, gli standard di sicurezza e le metodologie di risoluzione dei problemi necessari per creare sistemi di controllo degli accessi wireless sicuri e scalabili.
Passpoint and OpenRoaming: Complete Guide
Questa guida di riferimento tecnico fornisce un'analisi completa dei framework Passpoint (Hotspot 2.0) e WBA OpenRoaming all'interno delle reti WiFi aziendali. Descrive in dettaglio i protocolli di autenticazione sottostanti, i componenti architetturali e le strategie di implementazione necessarie per stabilire una connettività guest sicura e senza attriti. I progettisti di rete e i responsabili IT impareranno a progettare, implementare e risolvere i problemi di questi standard per eliminare le barriere di accesso manuale mantenendo al contempo una sicurezza di livello enterprise.
Come Implementare SCEP per il Secure BYOD e l'Iscrizione di Rete nell'Istruzione Superiore
Questa guida tecnica fornisce ad architetti di rete e responsabili IT un modello indipendente dal fornitore per implementare la registrazione dei certificati basata su SCEP per proteggere le reti dei campus universitari. Descrive in dettaglio come migrare dal protocollo PEAP basato su password a 802.1X EAP-TLS, automatizzare l'onboarding dei dispositivi BYOD e applicare una robusta segmentazione VLAN.