Question

Difficulty: HardPublic Key Infrastructure and Certificate Management

An enterprise security team is upgrading its internal 802.1X EAP-TLS network authentication infrastructure. During validation testing, corporate endpoints fail to establish a TLS tunnel with the RADIUS server, returning certificate trust and capability errors. Further inspection confirms that the root and subordinate Intermediate CA certificates are properly installed in the endpoint trust stores. Which of the following certificate misconfigurations would cause endpoints to reject the RADIUS server certificate? (Select TWO.)

  1. The certificate lacks an Extended Key Usage (EKU) extension explicitly defining Server Authentication.Answer
  2. The certificate omits the Subject Alternative Name (SAN) extension, relying solely on the Subject Common Name (CN) field.Answer
  3. C
    The Certificate Signing Request (CSR) was forwarded to target client supplicants for validation prior to Intermediate CA signing.
  4. D
    The server certificate uses SHA-256 hashing, which eliminates the requirement for asymmetric digital signatures.
  5. E
    The Certificate Authority generated symmetric AES-256 keys to establish asymmetric certificate trust chains.

Answer

The authentication failures are caused by omitting the Extended Key Usage (EKU) extension specifying Server Authentication and omitting the Subject Alternative Name (SAN) extension required for modern hostname and identity validation.
For an 802.1X EAP-TLS authentication server certificate to be validated successfully by endpoints, it must contain specific X.509 v3 extensions. First, the Extended Key Usage (EKU) field must explicitly specify Server Authentication so client supplicants verify the certificate's intended operational role. Second, modern clients strictly enforce RFC 6125 standards and require the Subject Alternative Name (SAN) extension to match server identity attributes. Omitting either extension leads to validation failure despite having trusted root and intermediate certificates.

Step-by-Step Solution

1
Analyze X.509 v3 extension constraints required for 802.1X EAP-TLS server certificates.
Identified that Extended Key Usage (EKU) must explicitly state Server Authentication (OID 1.3.6.1.5.5.7.3.1) so supplicants accept the server's intended role.
Without the Server Authentication EKU attribute, supplicant validation engines treat the certificate as invalid for establishing TLS server connections.
2
Evaluate domain identity matching rules implemented in modern operating system supplicants.
Identified that modern validation enforcement requires the Subject Alternative Name (SAN) extension.
RFC 6125 deprecates using only the Subject Common Name (CN) for name validation, causing endpoints to reject server certificates that do not include the SAN extension.

Key Concept

X.509 v3 Extension Attributes and Endpoint Validation Rules
Rate this question