Skip to main content

OCSP e revoca dei certificati per l'autenticazione WiFi

Questa guida completa esplora i meccanismi critici della revoca dei certificati negli ambienti WiFi aziendali, concentrandosi sul passaggio dalle CRL all'OCSP. Fornisce strategie di implementazione pratiche per i team IT che gestiscono reti ad alta densità su larga scala, dove la sicurezza in tempo reale e la bassa latenza sono fondamentali.

📖 6 min di lettura📝 1,362 parole🔧 2 esempi3 domande📚 8 termini chiave

🎧 Ascolta questa guida

Visualizza trascrizione
Welcome to the Purple Technical Briefing. I'm your host, and today we are diving deep into a critical security mechanism for enterprise WiFi networks: OCSP and Certificate Revocation. If you are an IT manager, a network architect, or a CTO managing large-scale deployments in hospitality, retail, or public-sector environments, you know that certificate-based authentication—specifically EAP-TLS over 802.1X—is the gold standard for securing network access. But what happens when a device is compromised, lost, or an employee leaves? How do you ensure that a revoked certificate is instantly rejected by your network? That is exactly what we are covering today. We will break down the differences between CRL and OCSP, explain how a RADIUS server checks revocation status, explore the concept of OCSP stapling in a WiFi context, and provide actionable implementation strategies. Let's start with the basics: CRL versus OCSP. When a device connects to your WiFi using a certificate, the RADIUS server needs to verify that the certificate is not only mathematically valid and unexpired, but also that it hasn't been explicitly revoked by the Certificate Authority, or CA. Historically, this was done using a Certificate Revocation List, or CRL. A CRL is exactly what it sounds like: a big file containing the serial numbers of every revoked certificate. The RADIUS server downloads this list periodically—maybe once a day, or every few hours. The problem with CRLs in modern, high-density environments is twofold: latency and bandwidth. If you have a large PKI deployment, that list gets huge. Downloading it takes bandwidth, and parsing it takes CPU cycles on your RADIUS server. Worse, there's a vulnerability window. If a device is compromised at 9 AM, but your RADIUS server doesn't pull the new CRL until noon, that compromised device has three hours of unfettered access to your network. Enter OCSP: the Online Certificate Status Protocol. OCSP is a real-time, targeted query. Instead of downloading a massive list of every revoked certificate, the RADIUS server simply asks the CA's OCSP responder: "Hey, is this specific certificate serial number valid right now?" The responder replies with a signed message: "Good," "Revoked," or "Unknown." This drastically reduces bandwidth and processing overhead on the RADIUS server. More importantly, it closes the vulnerability window. Revocations are enforced immediately. So, how does this work in a WiFi authentication flow? When a client device—let's say a corporate laptop—tries to connect to the WiFi, it communicates with the Wireless Access Point. The AP acts as an authenticator, passing the EAP-TLS messages to the RADIUS server. The laptop presents its client certificate. The RADIUS server validates the cryptographic signature against its trusted root CA. Then, the RADIUS server pauses the authentication process. It reaches out over the network to the OCSP responder URI embedded in the client's certificate. It waits for the response. If the response is "Good," the RADIUS server sends an Access-Accept message back to the AP, and the laptop gets online. If the response is "Revoked," it sends an Access-Reject. Now, you might be thinking, "Doesn't that add latency to the connection process?" Yes, it does. Every single authentication requires an external DNS lookup and an HTTP request to the OCSP responder. In a busy stadium or a large hotel during peak check-in, that can cause authentication timeouts. This brings us to a crucial concept: OCSP Stapling. In the web server world, OCSP stapling is common. The web server periodically queries the OCSP responder for its own certificate status, gets a time-stamped, signed response, and "staples" that response to the certificate it sends to the client during the TLS handshake. The client doesn't have to query the CA; it just verifies the CA's signature on the stapled response. Can we do this for WiFi? Yes, but it's complex. In EAP-TLS, the RADIUS server also presents a server certificate to the client, so the client knows it's talking to the legitimate network and not an evil twin AP. The RADIUS server can use OCSP stapling here. It queries the CA for its own status and staples the response into the EAP-TLS Server Hello. This saves the client device from having to do an OCSP lookup on the RADIUS server's certificate. However, stapling the *client's* certificate status is different. The client can't staple its own status because the network doesn't trust the client yet. So, for client certificate validation, the RADIUS server still has to perform the traditional OCSP query. To mitigate the latency of these queries, enterprise RADIUS servers use caching. They will cache a "Good" OCSP response for a configurable amount of time—say, 15 minutes or an hour. This means subsequent roam events or reconnects don't trigger a new external query, balancing security with performance. Let's look at a real-world implementation scenario. Imagine a large retail chain with thousands of point-of-sale devices and corporate laptops connecting via EAP-TLS. They are rolling out Purple's WiFi platform. They need strict security, but they can't afford POS devices timing out during authentication. Here is the recommended approach: First, ensure your CA infrastructure is robust. Your OCSP responders must be highly available, ideally behind a load balancer, and geographically distributed. If your RADIUS server can't reach the OCSP responder, it has to decide whether to "fail open" (allow the connection) or "fail closed" (deny the connection). In high-security environments, you fail closed. But if your OCSP responder goes down, nobody gets on the WiFi. Second, configure OCSP caching on your RADIUS servers. A 30-minute cache is a good middle ground. It significantly reduces load on your CA and speeds up authentications, while keeping the revocation window reasonably tight. Third, implement a fallback mechanism. Configure your RADIUS server to try OCSP first. If the OCSP responder is unreachable, fall back to a locally cached CRL. This provides resilience against CA outages. Finally, consider the impact of certificate expiration. Expiration is not revocation. A certificate simply reaches its "Not After" date. Your RADIUS server will reject it automatically, without needing to check OCSP or a CRL. The operational challenge here is lifecycle management—ensuring certificates are renewed and deployed to devices *before* they expire. Let's move to a quick rapid-fire Q&A based on common client questions. Question 1: "We use a cloud-based MDM to push certificates. Do we still need OCSP?" Answer: Absolutely. Your MDM issues the certificate, but the RADIUS server enforces network access. If you wipe a device in your MDM, the MDM tells the CA to revoke the certificate. But until the RADIUS server checks that revocation status via OCSP, the device can still connect to the WiFi. Question 2: "What happens if a device is offline when we revoke its certificate?" Answer: It doesn't matter if the device is offline. Revocation happens at the CA level. The next time that device tries to connect to the WiFi, the RADIUS server will check OCSP, see the "Revoked" status, and deny access. Question 3: "Is OCSP traffic encrypted?" Answer: Historically, OCSP requests were sent over plain HTTP. This was considered acceptable because the response itself is cryptographically signed by the CA, preventing tampering. However, modern implementations increasingly use HTTPS to protect privacy, preventing observers from seeing which certificates are being checked. To summarize and outline next steps: Certificate revocation is a non-negotiable component of a secure 802.1X deployment. While CRLs are acceptable for small networks, OCSP is essential for enterprise scale, providing real-time security and lower bandwidth overhead. For your next steps: 1. Audit your current RADIUS configuration. Are you checking revocation status at all? 2. If you are using CRLs, evaluate the size of your list and your download frequency. 3. Plan a migration to OCSP. Ensure your CA infrastructure can handle the query load, and configure sensible caching on your RADIUS servers to optimize performance. By implementing robust OCSP checking, you ensure that your Purple WiFi deployment remains secure, compliant, and performant, giving you absolute control over who—and what—can access your network. Thank you for listening to this Purple Technical Briefing.

header_image.png

Sintesi operativa

Per le sedi aziendali che gestiscono reti WiFi ad alta densità — dalle grandi catene di vendita al dettaglio ai moderni centri congressi — l'autenticazione basata su certificati (EAP-TLS) è lo standard definitivo per proteggere l'accesso alla rete. Tuttavia, l'emissione di un certificato è solo metà del ciclo di vita. La sfida operativa critica risiede nella revoca: garantire che quando un dispositivo viene compromesso, smarrito o dismesso, il suo accesso alla rete venga interrotto immediatamente. Questa guida esplora l'architettura tecnica della revoca dei certificati, mettendo a confronto le Certificate Revocation Lists (CRL) legacy con l'Online Certificate Status Protocol (OCSP). Dettagliamo come i server RADIUS si integrano con la Public Key Infrastructure (PKI) per applicare la revoca in tempo reale, le complessità dell'OCSP stapling in un contesto 802.1X e i modelli di implementazione strategica necessari per bilanciare una sicurezza rigorosa con un'esperienza utente fluida. Implementando un controllo OCSP robusto, i gestori delle sedi possono mitigare i rischi, garantire la conformità e mantenere l'elevato throughput richiesto per il Guest WiFi e l'accesso aziendale.

Ascolta il nostro briefing esecutivo di 10 minuti su questo argomento:

Approfondimento tecnico

La meccanica della revoca in 802.1X

In un flusso di autenticazione 802.1X, l'Access Point wireless (AP) funge da autenticatore, passando i messaggi Extensible Authentication Protocol (EAP) tra il dispositivo client (supplicant) e il server RADIUS. Quando un client presenta un certificato durante l'handshake EAP-TLS, il server RADIUS deve convalidarne l'integrità crittografica, verificare la catena di fiducia e confermare lo stato di revoca attuale.

Storicamente, ciò avveniva tramite una Certificate Revocation List (CRL). Una CRL è un file firmato digitalmente contenente i numeri di serie di tutti i certificati revocati emessi da una specifica Autorità di Certificazione (CA). Il server RADIUS scarica periodicamente questo file e lo memorizza localmente nella cache. Sebbene semplici da implementare, le CRL presentano sfide di scalabilità significative. In ambienti aziendali di grandi dimensioni, come quelli del settore Retail , le CRL possono raggiungere dimensioni di diversi megabyte. Il download e l'analisi di questi elenchi consumano larghezza di banda e cicli di elaborazione. Aspetto ancora più critico, le CRL introducono una finestra di vulnerabilità: il tempo che intercorre tra la revoca di un certificato presso la CA e il download dell'elenco aggiornato da parte del server RADIUS.

Il passaggio a OCSP

Per superare i limiti delle CRL, è stato sviluppato l'Online Certificate Status Protocol (OCSP). L'OCSP sostituisce il modello di download massivo con un meccanismo di query mirato in tempo reale. Quando un client presenta un certificato, il server RADIUS estrae l'URI del risponditore OCSP dall'estensione Authority Information Access (AIA) del certificato. Invia quindi una richiesta HTTP leggera al risponditore, interrogando lo stato di quello specifico numero di serie del certificato. Il risponditore restituisce una risposta firmata indicando se il certificato è 'Valido', 'Revocato' o 'Sconosciuto'.

Questo approccio elimina la finestra di vulnerabilità associata alle CRL, applicando le revoche immediatamente. Riduce inoltre in modo significativo il consumo di banda, poiché il server RADIUS richiede dati solo per i certificati che tentano attivamente l'autenticazione.

crl_vs_ocsp_comparison.png

OCSP Stapling negli ambienti WiFi

L'OCSP stapling è una tecnica di ottimizzazione delle prestazioni ampiamente utilizzata nei server web. Invece di far interrogare il risponditore OCSP dal client, il server interroga periodicamente il risponditore per il proprio stato del certificato. Quindi 'spilla' (staple) la risposta firmata al certificato che presenta al client durante l'handshake TLS. Ciò sposta l'onere della query dal client al server e riduce il numero di connessioni di rete esterne richieste.

Nel contesto dell'autenticazione WiFi, l'OCSP stapling è molto rilevante ma presenta delle sfumature. Durante l'EAP-TLS, il server RADIUS presenta il proprio certificato server al client per dimostrare la propria identità. Il server RADIUS può utilizzare l'OCSP stapling in questo caso, allegando la risposta OCSP al Server Hello EAP-TLS. Ciò consente al dispositivo client di verificare lo stato di revoca del server RADIUS senza richiedere una propria connessione Internet — una funzione critica per i dispositivi a cui non è ancora stato concesso l'accesso alla rete.

Tuttavia, lo stapling dello stato del certificato del client non è fattibile. Il client non può eseguire lo stapling del proprio stato perché la rete non si fida ancora del client. Pertanto, per la convalida del certificato client, il server RADIUS deve eseguire una query OCSP tradizionale alla CA.

ocsp_stapling_architecture.png

Guida all'implementazione

L'implementazione di OCSP in un ambiente aziendale ad alta densità richiede un'attenta pianificazione dell'architettura per garantire sia la sicurezza che la disponibilità. I seguenti passaggi delineano una strategia di implementazione robusta.

1. Infrastruttura CA ad alta disponibilità

Il passaggio a OCSP introduce una dipendenza critica dall'infrastruttura del risponditore della CA. Se il server RADIUS non riesce a raggiungere il risponditore OCSP, non può verificare con certezza lo stato del certificato. Pertanto, il risponditore OCSP deve essere altamente disponibile, distribuito geograficamente e posizionato dietro bilanciatori di carico per gestire i picchi di autenticazione, come quelli che si verificano durante una grande conferenza o un evento sportivo.

2. Configurazione del server RADIUS e caching

Per mitigare la latenza introdotta dalle query OCSP in tempo reale, i server RADIUS aziendali devono essere configurati con meccanismi di caching intelligenti. Quando un server RADIUS riceve una risposta 'Valida' dal risponditore OCSP, dovrebbe memorizzare tale risposta nella cache per una durata configurabile — in genere tra 15 e 60 minuti. Le successive richieste di autenticazione dallo stesso client entro quella finestra verranno convalidate rispetto alla cache, bypassando la query esterna. Ciò bilancia la necessità di sicurezza in tempo reale con i requisiti di prestazioni di una rete trafficata.

3. Meccanismi di failover e resilienza

Gli architetti di rete devono definire il comportamento del server RADIUS nel caso in cui il risponditore OCSP non sia raggiungibile. Questo è noto come 'fail open' rispetto a 'fail closed'. In una configurazione 'fail closed', il server RADIUS negherà l'accesso se non può verificare lo stato del certificato. Questa è la posizione più sicura, ma rischia interruzioni diffuse se l'infrastruttura CA fallisce. In una configurazione 'fail open', il server RADIUS consentirà l'accesso se il risponditore non è raggiungibile, dando priorità alla disponibilità rispetto alla sicurezza rigorosa.

Un approccio ibrido raccomandato consiste nel configurare il server RADIUS affinché tenti prima una query OCSP. Se il risponditore non è raggiungibile, il server ripiega su una CRL memorizzata localmente. Ciò garantisce resilienza contro i guasti della CA mantenendo un livello base di controllo della revoca.

Best Practice

  • Ridurre al minimo la durata dei certificati: Sebbene la revoca gestisca l'invalidazione prematura, il controllo di sicurezza più efficace è una breve durata del certificato. Implementa il provisioning automatico dei certificati tramite MDM per emettere certificati validi per giorni o settimane, anziché anni. Ciò riduce completamente la dipendenza dai meccanismi di revoca. Per ulteriori letture sulla sicurezza dei dispositivi moderni, consulta la nostra guida sull' Autenticazione 802.1X: Proteggere l'accesso alla rete sui dispositivi moderni .
  • Monitorare la latenza OCSP: Monitora continuamente la latenza delle query OCSP dai tuoi server RADIUS all'infrastruttura CA. Una latenza elevata influirà direttamente sull'esperienza utente, portando a timeout di autenticazione e connessioni interrotte.
  • Implementare controlli di accesso rigorosi alla CA: La sicurezza della tua rete WiFi è intrinsecamente legata alla sicurezza della tua CA. Assicurati che siano in atto controlli di accesso rigorosi, autenticazione a più fattori e auditing completo per tutte le interfacce di gestione della CA.

Risoluzione dei problemi e mitigazione dei rischi

Durante l'implementazione di OCSP, i team IT riscontrano spesso diverse modalità di guasto comuni:

  • Timeout di autenticazione: Se il risponditore OCSP è lento a rispondere, l'handshake EAP-TLS potrebbe andare in timeout. Ciò è spesso causato dalla congestione della rete o da un'infrastruttura CA sottodimensionata. La mitigazione prevede l'ottimizzazione del caching OCSP sul server RADIUS e il dimensionamento dell'infrastruttura del risponditore.
  • Disallineamento dell'orologio (Clock Skew): Le risposte OCSP sono dotate di timestamp e firmate. Se l'orologio sul server RADIUS non è sincronizzato con la CA, il server potrebbe rifiutare una risposta OCSP valida in quanto scaduta. Assicurati che tutti i componenti dell'infrastruttura siano sincronizzati tramite server NTP affidabili.
  • Blocco del firewall: Le query OCSP utilizzano in genere HTTP (porta 80) o HTTPS (porta 443). Assicurati che i firewall tra il server RADIUS e l'infrastruttura CA siano configurati per consentire questo traffico. Le implementazioni moderne utilizzano sempre più HTTPS per proteggere la privacy e impedire agli osservatori di rete di analizzare le query dei certificati.

ROI e impatto sul business

L'implementazione di robusti meccanismi di revoca dei certificati offre un valore aziendale misurabile che va oltre la semplice conformità alla sicurezza.

  • Mitigazione del rischio: Eliminando la finestra di vulnerabilità associata alle CRL, l'OCSP riduce significativamente il rischio che un dispositivo compromesso acceda a risorse aziendali sensibili. Ciò protegge la proprietà intellettuale e mitiga i danni finanziari e di reputazione di una violazione dei dati.
  • Efficienza operativa: L'automazione dei controlli di revoca tramite OCSP riduce il sovraccarico amministrativo associato alla gestione di enormi file CRL. I team IT possono concentrarsi su iniziative strategiche anziché sulla risoluzione dei problemi di download delle CRL.
  • Abilitazione della conformità: Per le sedi che operano in settori regolamentati, come la Sanità o la finanza, controlli di accesso rigorosi e revoca in tempo reale sono spesso requisiti di conformità obbligatori (ad esempio, HIPAA, PCI DSS). Un'implementazione OCSP robusta garantisce la conformità continua e semplifica i processi di audit.

Termini chiave e definizioni

OCSP (Online Certificate Status Protocol)

An internet protocol used for obtaining the revocation status of an X.509 digital certificate in real-time.

Used by RADIUS servers to instantly verify if a device's certificate has been revoked, closing the vulnerability window associated with legacy CRLs.

CRL (Certificate Revocation List)

A periodically updated, digitally signed list of certificate serial numbers that have been revoked by the issuing Certificate Authority.

The legacy method for revocation checking. It suffers from scalability issues and introduces a vulnerability window between updates.

OCSP Stapling

A mechanism where the certificate presenter (e.g., a RADIUS server) obtains a time-stamped OCSP response from the CA and appends it to the certificate during the TLS handshake.

Used to improve performance and privacy by offloading the OCSP query burden from the client device.

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

A highly secure 802.1X authentication method that requires mutual certificate-based authentication between the client and the RADIUS server.

The standard protocol used in enterprise WiFi environments that necessitates robust certificate revocation checking.

Vulnerability Window

The period of time between a certificate being revoked at the CA and the enforcing system (e.g., RADIUS server) becoming aware of the revocation.

A primary driver for adopting OCSP over CRLs, as OCSP effectively reduces this window to near zero.

Fail Open vs. Fail Closed

A configuration decision determining the system's behaviour when a dependency (like an OCSP responder) is unreachable. 'Fail open' allows access; 'fail closed' denies access.

A critical architectural decision for IT teams balancing network availability against strict security compliance.

AIA (Authority Information Access)

An extension within an X.509 certificate that indicates how to access information and services for the issuer of the certificate, including the OCSP responder URI.

The RADIUS server reads this extension to determine exactly where to send the OCSP query for a specific client certificate.

Supplicant

The software client on a device (e.g., a laptop or smartphone) that attempts to access the network and responds to authentication requests.

The entity presenting the client certificate that the RADIUS server must validate against the OCSP responder.

Casi di studio

A 500-room luxury hotel in the [Hospitality](/industries/hospitality) sector is upgrading its back-of-house WiFi network to use EAP-TLS for staff devices. They currently use a centralized RADIUS server in their corporate data centre, connected via SD-WAN. They are concerned that real-time OCSP queries to their cloud-based CA will cause authentication timeouts during shift changes when hundreds of staff connect simultaneously.

The implementation must prioritize low-latency authentication without compromising security. The solution involves three steps: 1) Deploy a localized RADIUS proxy at the hotel property to handle the initial EAP termination. 2) Configure the RADIUS proxy to perform OCSP queries and cache the 'Good' responses for 60 minutes. 3) Implement a fallback mechanism where the RADIUS proxy relies on a locally downloaded, daily CRL if the SD-WAN link to the cloud CA fails.

Note di implementazione: This approach effectively mitigates the latency risk. By caching OCSP responses locally at the edge, the hotel avoids sending hundreds of simultaneous queries across the WAN during a shift change. The 60-minute cache window is a pragmatic compromise, keeping the vulnerability window small while ensuring high availability. The CRL fallback provides critical resilience against WAN outages, ensuring staff can still authenticate even if the cloud CA is temporarily unreachable. This architecture aligns with the principles discussed in our article on [The Core SD WAN Benefits for Modern Businesses](/blog/sd-wan-benefits).

A large public-sector organisation is deploying [Sensors](/products/sensors) across multiple municipal buildings. These IoT devices authenticate via 802.1X using certificates with a 5-year lifespan. The IT security team requires immediate network disconnection if a sensor is reported stolen.

Given the long certificate lifespan, robust revocation is critical. The organisation must configure their RADIUS servers to perform mandatory OCSP queries for every authentication request from the sensor VLAN. Caching should be disabled or set to a very short duration (e.g., 5 minutes). The RADIUS servers must be configured to 'fail closed'—if the OCSP responder is unreachable, the sensor is denied access.

Note di implementazione: While long-lived certificates are generally discouraged, they are common in IoT deployments due to the difficulty of automated renewal. In this scenario, OCSP is the only effective security control. Disabling caching ensures that a revoked certificate is rejected almost immediately upon the next authentication attempt. The 'fail closed' configuration prioritizes security over availability, which is appropriate given the risk of a compromised physical sensor providing a bridgehead into the municipal network.

Analisi degli scenari

Q1. Your organisation is migrating from a daily CRL download to real-time OCSP checking for your corporate WiFi. During the pilot phase, you notice a significant increase in authentication timeouts, particularly for users roaming between buildings. What is the most likely cause and the recommended mitigation?

💡 Suggerimento:Consider the latency introduced by external network queries during the EAP-TLS handshake.

Mostra l'approccio consigliato

The timeouts are likely caused by the latency of performing an external HTTP query to the OCSP responder for every authentication event, including fast reconnects during roaming. The recommended mitigation is to configure OCSP caching on the RADIUS server. By caching 'Good' responses for a period (e.g., 30 minutes), subsequent roam events will be validated locally against the cache, eliminating the external query latency and preventing timeouts.

Q2. A critical security audit requires that no compromised device can access the network for more than 5 minutes after its certificate is revoked in the MDM platform. Your RADIUS server is configured to use OCSP with a 60-minute cache. Does this configuration meet the audit requirement?

💡 Suggerimento:Analyze the relationship between the cache duration and the vulnerability window.

Mostra l'approccio consigliato

No, this configuration fails the audit requirement. The 60-minute cache creates a vulnerability window of up to one hour. If a device authenticates and its 'Good' status is cached, and the certificate is revoked 1 minute later, the RADIUS server will continue to permit access for the remaining 59 minutes based on the cached response. To meet the 5-minute requirement, the OCSP cache duration must be reduced to 5 minutes or less, though this will increase the query load on the CA infrastructure.

Q3. During a major ISP outage, your cloud-based OCSP responder becomes unreachable. Your RADIUS server is configured for OCSP checking with a 'fail closed' policy. What is the impact on the network, and how could the architecture be improved for resilience?

💡 Suggerimento:Consider the implications of 'fail closed' when a critical dependency is unavailable.

Mostra l'approccio consigliato

The impact is a total outage for all new WiFi authentications. Because the RADIUS server cannot reach the responder and is configured to 'fail closed', it will deny all access requests. To improve resilience, the architecture should implement a fallback mechanism. The RADIUS server should be configured to attempt OCSP first, and if unreachable, fall back to a locally cached CRL. This allows authentications to proceed using the last known good revocation state during the ISP outage.

Punti chiave

  • OCSP replaces bulky CRL downloads with real-time, targeted certificate status queries, eliminating the vulnerability window.
  • In 802.1X environments, the RADIUS server performs the OCSP query to validate the client's certificate before granting network access.
  • OCSP stapling allows the RADIUS server to prove its own validity to the client without requiring the client to query the CA.
  • Intelligent caching of 'Good' OCSP responses on the RADIUS server is critical to prevent authentication timeouts in high-density venues.
  • Implementing a CRL fallback mechanism ensures network resilience if the primary OCSP responder becomes unreachable.
  • A 'fail closed' configuration maximizes security but risks widespread outages, whereas 'fail open' prioritizes availability.
  • Robust certificate lifecycle management, including short certificate lifespans, reduces reliance on revocation mechanisms.