Comment utiliser Microsoft Intune pour déployer des certificats WiFi sur les appareils
Une référence technique complète pour les responsables informatiques sur le déploiement de certificats WiFi 802.1X via Microsoft Intune. Couvre l'architecture SCEP vs PKCS, les étapes de mise en œuvre, la cartographie de la conformité et les scénarios de déploiement réels pour les environnements d'entreprise.
Écouter ce guide
Voir la transcription du podcast
📚 Fait partie de notre série 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.
Définitions clés
802.1X
Une norme IEEE pour le contrôle d'accès réseau basé sur les ports qui empêche les appareils non autorisés d'accéder à un réseau local (LAN) ou sans fil (WLAN) avant de s'être authentifiés avec succès.
Le protocole de sécurité fondamental qui remplace les mots de passe WiFi partagés par une authentification de niveau entreprise dans les environnements professionnels.
EAP-TLS
Extensible Authentication Protocol with Transport Layer Security. Un cadre d'authentification qui exige que le client et le serveur prouvent tous deux leur identité à l'aide de certificats numériques.
Le protocole spécifique configuré dans le profil WiFi Intune pour imposer une authentification mutuelle par certificat, éliminant ainsi le risque de vol d'identifiants.
SCEP
Simple Certificate Enrollment Protocol. Un mécanisme par lequel l'appareil client génère sa propre clé privée et demande un certificat à l'autorité de certification (CA) via un serveur intermédiaire.
La méthode de déploiement privilégiée pour les environnements BYOD car la clé privée n'est jamais transmise sur le réseau.
PKCS
Public Key Cryptography Standards. Dans le contexte d'Intune, une méthode de déploiement où l'autorité de certification (CA) génère la clé privée et l'Intune Connector la transmet de manière sécurisée à l'appareil.
Une architecture de déploiement plus simple, souvent utilisée pour les flottes d'appareils appartenant à l'entreprise, car elle élimine le besoin d'un serveur NDES.
NDES
Network Device Enrollment Service. Un rôle de serveur Microsoft qui agit comme un proxy, permettant aux appareils fonctionnant sans identifiants de domaine d'obtenir des certificats auprès d'une autorité de certification Active Directory.
Un composant d'infrastructure obligatoire lors du déploiement de certificats via SCEP dans un environnement ADCS sur site.
RADIUS
Remote Authentication Dial-In User Service. Un protocole réseau qui fournit une gestion centralisée de l'authentification, de l'autorisation et de la comptabilité (AAA).
Le serveur (comme Microsoft NPS ou Cisco ISE) qui reçoit la demande d'authentification du point d'accès WiFi et valide le certificat de l'appareil.
Supplicant
Le client logiciel sur l'appareil de l'utilisateur final (ordinateur portable, smartphone) qui lance le processus d'authentification 802.1X.
Le profil WiFi Intune configure le supplicant natif du système d'exploitation (par exemple, Windows WLAN AutoConfig) pour utiliser les certificats et les méthodes EAP appropriés.
Certificate Revocation List (CRL)
Une liste signée numériquement et publiée par l'autorité de certification contenant les numéros de série des certificats qui ont été révoqués et ne doivent plus être considérés comme fiables.
Crucial pour la conformité de sécurité ; le serveur RADIUS doit vérifier la CRL pour s'assurer qu'un appareil qui se connecte n'a pas été signalé comme perdu ou volé.
Exemples concrets
Une chaîne de vente au détail de 400 points de vente déploie des tablettes appartenant à l'entreprise pour la gestion des stocks. Les appareils sont entièrement gérés via Intune et joints à Azure AD. Ils ont besoin d'un accès réseau immédiat dès le démarrage pour synchroniser les bases de données d'inventaire, avant même qu'un utilisateur spécifique ne se connecte. L'infrastructure réseau utilise Cisco ISE comme serveur RADIUS. Quelle est la stratégie de déploiement de certificats optimale ?
L'équipe informatique doit mettre en œuvre des certificats d'appareil PKCS.
- Configurer un modèle de certificat d'appareil sur l'autorité de certification (CA).
- Déployer le certificat de l'autorité de certification racine (Root CA) sur les tablettes via Intune.
- Créer un profil de certificat PKCS dans Intune, en définissant le format du nom de l'objet (Subject Name) sur l'ID d'appareil Azure AD ({{AAD_Device_ID}}).
- Créer un profil WiFi d'entreprise spécifiant EAP-TLS, en faisant référence au nom du certificat du serveur ISE et au profil PKCS déployé.
- Assigner tous les profils au groupe d'appareils contenant les tablettes.
Un grand hôpital universitaire permet au personnel médical d'utiliser leurs smartphones personnels (BYOD) pour accéder aux applications de planification clinique. Les appareils sont inscrits dans Intune via un profil professionnel (Work Profile). La politique de sécurité exige qu'aucun identifiant d'entreprise ne soit stocké sur les appareils personnels et que l'accès au réseau soit révoqué immédiatement si un appareil est compromis. Comment l'authentification WiFi doit-elle être conçue ?
L'hôpital doit mettre en œuvre des certificats utilisateur SCEP combinés aux politiques de conformité d'Intune.
- Déployer un serveur NDES pour relayer les requêtes vers l'autorité de certification (CA).
- Créer un profil de certificat utilisateur SCEP dans Intune, avec le SAN configuré sur le nom principal de l'utilisateur ({{UserPrincipalName}}).
- Créer une politique de conformité Intune exigeant une version minimale du système d'exploitation, un verrouillage d'écran actif et l'absence de jailbreak/root.
- Configurer l'autorité de certification pour publier une liste de révocation de certificats (CRL) hautement disponible.
- Configurer le serveur RADIUS pour appliquer strictement la vérification de la CRL à chaque tentative d'authentification.
Questions d'entraînement
Q1. Votre organisation migre de PEAP-MSCHAPv2 (nom d'utilisateur/mot de passe) vers EAP-TLS pour le WiFi d'entreprise. Pendant la phase pilote, plusieurs ordinateurs portables Windows 11 reçoivent avec succès les profils de configuration Intune mais ne parviennent pas à se connecter au réseau. L'examen des journaux d'événements Windows affiche l'ID d'événement 20271 indiquant que le certificat du serveur RADIUS a été rejeté. Quelle est la cause la plus probable ?
Conseil : Considérez la chaîne de confiance requise pour l'authentification mutuelle.
Voir la réponse type
Les appareils ne disposent pas du certificat de l'autorité de certification racine de confiance (Trusted Root CA) qui a émis le certificat du serveur RADIUS. Dans EAP-TLS, l'appareil doit valider l'identité du serveur RADIUS. L'équipe informatique doit s'assurer que le profil de « certificat de confiance » contenant la CA racine (et toutes les CA intermédiaires) est déployé sur les appareils via Intune et correctement installé avant que le profil WiFi ne tente de se connecter.
Q2. Un site du secteur public déploie le 802.1X pour les appareils du personnel à l'aide d'Intune et de certificats PKCS. Ils exploitent également un réseau visiteurs distinct géré par une plateforme Guest WiFi. Un auditeur note que si un ordinateur portable du personnel est volé, le certificat reste valide pendant 12 mois. Comment l'architecte réseau doit-il gérer ce risque ?
Conseil : Comment le serveur d'authentification sait-il qu'un certificat n'est plus valide avant son expiration ?
Voir la réponse type
L'architecte doit mettre en œuvre un processus robuste de révocation de certificats. Tout d'abord, s'assurer que la CA publie une liste de révocation de certificats (CRL) sur un point de distribution hautement disponible. Deuxièmement, configurer le serveur RADIUS (par exemple, NPS) pour imposer la vérification de la CRL lors de chaque tentative d'authentification. Enfin, établir une procédure opérationnelle Intune pour révoquer explicitement le certificat de tout appareil signalé comme perdu ou volé, ce qui met à jour la CRL et bloque l'accès au réseau.
Q3. Vous concevez le déploiement Intune pour un parc de bornes interactives partagées dans un environnement de vente au détail. Ces appareils redémarrent quotidiennement et doivent immédiatement se connecter au réseau de l'entreprise pour télécharger des mises à jour avant toute interaction utilisateur. Devez-vous déployer des certificats Utilisateur ou des certificats Appareil, et quel format de nom alternatif du sujet (SAN) doit être utilisé ?
Conseil : Considérez l'état de l'appareil immédiatement après un redémarrage.
Voir la réponse type
Vous devez déployer des certificats Appareil. Étant donné que les bornes ont besoin d'un accès réseau avant qu'un utilisateur ne se connecte, un certificat Utilisateur ne serait pas disponible au démarrage. Le nom alternatif du sujet (SAN) dans le profil de certificat Intune doit être configuré pour utiliser l'ID d'appareil Azure AD ({{AAD_Device_ID}}) ou le nom de domaine complet de l'appareil, permettant au serveur RADIUS d'authentifier l'équipement matériel spécifique.
Continuer la lecture de cette série
Configuration de l'authentification RADIUS pour les réseaux WiFi invités et collaborateurs
Ce guide de référence technique présente l'architecture, la configuration et le déploiement de l'authentification RADIUS pour les réseaux WiFi d'entreprise destinés aux invités et aux collaborateurs. Il fournit aux architectes réseau et aux responsables informatiques les protocoles exacts, les normes de sécurité et les méthodologies de dépannage requis pour concevoir des systèmes de contrôle d'accès sans fil sécurisés et évolutifs.
Passpoint et OpenRoaming : Le Guide Complet
Ce guide de référence technique fournit une analyse complète des frameworks Passpoint (Hotspot 2.0) et WBA OpenRoaming au sein des réseaux WiFi d'entreprise. Il détaille les protocoles d'authentification sous-jacents, les composants architecturaux et les stratégies de déploiement nécessaires pour établir une connectivité invité sécurisée et fluide. Les architectes réseau et les responsables informatiques apprendront à concevoir, implémenter et dépanner ces normes afin d'éliminer les obstacles à la connexion manuelle tout en maintenant une sécurité de niveau entreprise.
Comment implémenter SCEP pour un BYOD sécurisé et l'enregistrement réseau dans l'enseignement supérieur
Ce guide technique propose aux architectes réseau et aux responsables informatiques un modèle neutre vis-à-vis des fournisseurs pour déployer l'enregistrement de certificats basé sur SCEP afin de sécuriser les réseaux de campus de l'enseignement supérieur. Il détaille comment migrer du PEAP basé sur mot de passe vers le 802.1X EAP-TLS, automatiser l'intégration du BYOD et appliquer une segmentation VLAN robuste.