Como Utilizar o Microsoft Intune para Enviar Certificados de WiFi para Dispositivos
Uma referência técnica abrangente para líderes de TI sobre a implementação de certificados de WiFi 802.1X através do Microsoft Intune. Aborda a arquitetura SCEP vs PKCS, passos de implementação, mapeamento de conformidade e cenários reais de implementação para ambientes empresariais.
Ouça este guia
Ver transcrição do podcast
📚 Parte da nossa série principal: 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.
Definições Principais
802.1X
Uma norma IEEE para controlo de acesso à rede baseado em portas que impede que dispositivos não autorizados acedam a uma LAN ou WLAN até que se autentiquem com sucesso.
O protocolo de segurança fundamental que substitui as palavras-passe de WiFi partilhadas por autenticação de nível empresarial em ambientes corporativos.
EAP-TLS
Extensible Authentication Protocol com Transport Layer Security. Uma estrutura de autenticação que exige que tanto o cliente como o servidor provem as suas identidades utilizando certificados digitais.
O protocolo específico configurado no perfil de WiFi do Intune para impor a autenticação mútua de certificados, eliminando o risco de roubo de credenciais.
SCEP
Simple Certificate Enrollment Protocol. Um mecanismo no qual o dispositivo cliente gera a sua própria chave privada e solicita um certificado à CA através de um servidor intermediário.
O método de implementação preferido para ambientes BYOD porque a chave privada nunca é transmitida através da rede.
PKCS
Public Key Cryptography Standards. No contexto do Intune, um método de implementação onde a CA gera a chave privada e o Intune Connector a entrega de forma segura ao dispositivo.
Uma arquitetura de implementação mais simples, frequentemente utilizada para frotas de dispositivos de propriedade corporativa, pois elimina a necessidade de um servidor NDES.
NDES
Network Device Enrollment Service. Uma função de servidor da Microsoft que atua como um proxy, permitindo que dispositivos em execução sem credenciais de domínio obtenham certificados de uma Active Directory Certificate Authority.
Um componente de infraestrutura obrigatório ao implementar certificados via SCEP num ambiente ADCS local.
RADIUS
Remote Authentication Dial-In User Service. Um protocolo de rede que fornece gestão centralizada de Autenticação, Autorização e Contabilização (AAA).
O servidor (como o Microsoft NPS ou Cisco ISE) que recebe o pedido de autenticação do ponto de acesso WiFi e valida o certificado do dispositivo.
Supplicant
O cliente de software no dispositivo do utilizador final (portátil, smartphone) que inicia o processo de autenticação 802.1X.
O perfil de WiFi do Intune configura o supplicant nativo do SO (por exemplo, Windows WLAN AutoConfig) para utilizar os certificados e métodos EAP corretos.
Certificate Revocation List (CRL)
Uma lista assinada digitalmente, publicada pela Certificate Authority, contendo os números de série dos certificados que foram revogados e que já não devem ser considerados fidedignos.
Crucial para a conformidade de segurança; o servidor RADIUS deve verificar a CRL para garantir que um dispositivo que se está a ligar não foi reportado como perdido ou roubado.
Exemplos Práticos
Uma cadeia de retalho com 400 localizações está a implementar tablets de propriedade corporativa para gestão de inventário. Os dispositivos são totalmente geridos através do Intune e associados ao Azure AD. Necessitam de acesso imediato à rede ao iniciar para sincronizar as bases de dados de inventário, antes de qualquer utilizador específico iniciar sessão. A infraestrutura de rede utiliza o Cisco ISE como servidor RADIUS. Qual é a estratégia ideal de implementação de certificados?
A equipa de TI deve implementar certificados de dispositivo PKCS.
- Configurar um modelo de certificado de dispositivo na CA.
- Implementar o certificado Root CA nos tablets através do Intune.
- Criar um perfil de certificado PKCS no Intune, definindo o formato do Subject Name para o Azure AD Device ID ({{AAD_Device_ID}}).
- Criar um perfil de WiFi empresarial especificando EAP-TLS, referenciando o nome do certificado do servidor ISE e o perfil PKCS implementado.
- Atribuir todos os perfis ao grupo de dispositivos que contém os tablets.
Um grande hospital universitário permite que a equipa médica utilize os seus smartphones pessoais (BYOD) para aceder a aplicações de agendamento clínico. Os dispositivos estão inscritos no Intune através de um Perfil de Trabalho. A política de segurança exige que nenhuma credencial corporativa seja armazenada em dispositivos pessoais e o acesso à rede deve ser revogado imediatamente se um dispositivo for comprometido. Como deve ser desenhada a autenticação WiFi?
O hospital deve implementar certificados de utilizador SCEP combinados com Políticas de Conformidade do Intune.
- Implementar um servidor NDES para encaminhar pedidos para a CA.
- Criar um perfil de certificado de utilizador SCEP no Intune, com o SAN configurado para o User Principal Name ({{UserPrincipalName}}).
- Criar uma Política de Conformidade do Intune que exija uma versão mínima do SO, um bloqueio de ecrã ativo e nenhum acesso jailbreak/root.
- Configurar a CA para publicar uma Lista de Revogação de Certificados (CRL) altamente disponível.
- Configurar o servidor RADIUS para impor estritamente a verificação de CRL em cada tentativa de autenticação.
Perguntas de Prática
Q1. A sua organização está a migrar de PEAP-MSCHAPv2 (nome de utilizador/palavra-passe) para EAP-TLS para o WiFi corporativo. Durante a fase piloto, vários portáteis Windows 11 recebem os perfis de configuração do Intune com sucesso, mas não conseguem ligar-se à rede. A análise dos Registos de Eventos do Windows mostra o Event ID 20271, indicando que o certificado do servidor RADIUS foi rejeitado. Qual é a causa mais provável?
Dica: Considere a cadeia de confiança necessária para a autenticação mútua.
Ver resposta modelo
Os dispositivos não possuem o certificado da CA de Raiz Confiável que emitiu o certificado do servidor RADIUS. No EAP-TLS, o dispositivo deve validar a identidade do servidor RADIUS. A equipa de TI deve garantir que o perfil de 'Certificado confiável' que contém a CA de Raiz (e quaisquer CAs Intermédias) é implementado nos dispositivos através do Intune e instalado com sucesso antes de o perfil de WiFi tentar a ligação.
Q2. Um espaço do setor público está a implementar o 802.1X para dispositivos de funcionários utilizando o Intune e certificados PKCS. Também operam uma rede de visitantes separada, gerida por uma plataforma de Guest WiFi. Um auditor observa que, se um portátil de um funcionário for roubado, o certificado permanece válido por 12 meses. Como deve o arquiteto de rede abordar este risco?
Dica: Como é que o servidor de autenticação sabe que um certificado já não é válido antes de expirar?
Ver resposta modelo
O arquiteto deve implementar um fluxo de trabalho robusto de Revogação de Certificados. Primeiro, garantir que a CA publica uma Lista de Revogação de Certificados (CRL) num ponto de distribuição altamente disponível. Segundo, configurar o servidor RADIUS (por exemplo, NPS) para exigir a verificação de CRL durante cada tentativa de autenticação. Finalmente, estabelecer um procedimento operacional no Intune para revogar explicitamente o certificado de qualquer dispositivo marcado como perdido ou roubado, o que atualiza a CRL e bloqueia o acesso à rede.
Q3. Está a desenhar a implementação do Intune para uma frota de quiosques partilhados num ambiente de retalho. Estes dispositivos reiniciam diariamente e devem ligar-se imediatamente à rede corporativa para descarregar atualizações antes de qualquer utilizador interagir com eles. Deve implementar certificados de Utilizador ou certificados de Dispositivo, e que formato de Subject Alternative Name (SAN) deve ser utilizado?
Dica: Considere o estado do dispositivo imediatamente após um reinício.
Ver resposta modelo
Deve implementar certificados de Dispositivo. Como os quiosques necessitam de acesso à rede antes de um utilizador iniciar sessão, um certificado de Utilizador estaria indisponível no momento do arranque. O Subject Alternative Name (SAN) no perfil de certificado do Intune deve ser configurado para utilizar o Azure AD Device ID ({{AAD_Device_ID}}) ou o nome de domínio totalmente qualificado do dispositivo, permitindo ao servidor RADIUS autenticar o ativo de hardware específico.
Continue a ler esta série
Configuring RADIUS Authentication for Guest and Staff WiFi Networks
Este guia de referência técnica descreve a arquitetura, configuração e implementação de autenticação RADIUS para redes WiFi empresariais de convidados e funcionários. Fornece aos arquitetos de rede e gestores de TI os protocolos exatos, normas de segurança e metodologias de resolução de problemas necessários para construir sistemas de controlo de acesso sem fios seguros e escaláveis.
Passpoint e OpenRoaming: Guia Completo
Este guia de referência técnica fornece uma análise abrangente das frameworks Passpoint (Hotspot 2.0) e WBA OpenRoaming em redes WiFi corporativas. Detalha os protocolos de autenticação subjacentes, componentes de arquitetura e estratégias de implementação necessárias para estabelecer uma conectividade de convidados segura e sem atritos. Os arquitetos de rede e líderes de TI aprenderão a desenhar, implementar e resolver problemas destes padrões para eliminar as barreiras de início de sessão manual, mantendo simultaneamente uma segurança de nível empresarial.
Como Implementar SCEP para Integração Segura de BYOD e Redes no Ensino Superior
Este guia técnico fornece aos arquitetos de rede e gestores de TI um plano neutro em termos de fornecedor para implementar a emissão de certificados baseada em SCEP para proteger as redes dos campus do ensino superior. Detalha como migrar de PEAP baseado em palavra-passe para 802.1X EAP-TLS, automatizar a integração de BYOD e impor uma segmentação robusta de VLAN.