Skip to main content

Portails captifs HTTPS en 2026 : Pourquoi HSTS et le renforcement des navigateurs brisent les anciens modèles

Ce guide détaille comment HSTS et les politiques HTTPS-first des navigateurs brisent les portails captifs HTTP d'interception hérités en 2026. Il fournit des conseils techniques exploitables aux architectes réseau pour implémenter des alternatives modernes, y compris l'API CAPPORT et Passpoint (Hotspot 2.0), garantissant un accès WiFi invité sécurisé et fiable.

📖 6 min de lecture📝 1,495 mots🔧 2 exemples3 questions📚 8 termes clés

🎧 Écouter ce guide

Voir la transcription
PODCAST SCRIPT: HTTPS Captive Portals in 2026 — Why HSTS and Browser Hardening Are Breaking the Old Patterns Runtime target: ~10 minutes | Voice: UK English, senior consultant tone --- [INTRO — ~60 seconds] Welcome back. I'm going to cut straight to it today, because if you're running guest WiFi at scale — hotels, retail estates, stadiums, conference centres — you've probably already hit this problem, or you're about to. The classic captive portal pattern — the one where your network intercepts an HTTP request and redirects the user to a splash page — is breaking. Not gradually. It's breaking hard, and the browser vendors are the ones doing it. In the next ten minutes, I want to walk you through exactly what's changed, why it's changed, and what your realistic options are in 2026. This isn't theoretical. This is the conversation I'm having with network architects and IT directors every week right now. Let's get into it. --- [TECHNICAL DEEP-DIVE — ~5 minutes] So let's start with the mechanism. The legacy captive portal pattern works like this: a device connects to your open or PSK-protected WiFi network. It tries to load a web page. Your network controller intercepts that HTTP request — port 80 traffic — and issues a 302 redirect to your portal page. The user sees your splash screen, accepts terms, maybe logs in, and then you open the walled garden. Simple. It's worked for twenty-plus years. The problem is that pattern depends entirely on the device making an unencrypted HTTP request that you can intercept. And browsers are systematically eliminating those requests. Here's the timeline of what's happened. HSTS — HTTP Strict Transport Security — has been around since RFC 6797 in 2012. The mechanism is straightforward: a site sends a Strict-Transport-Security header, and the browser remembers it. For the duration of the max-age period, the browser will refuse to load that site over plain HTTP. It upgrades the connection to HTTPS automatically. If HTTPS isn't available, the connection fails — hard. No bypass, no redirect, just a certificate error. Now, HSTS on its own is manageable. The browser only enforces it after the first visit. But then came the HSTS preload list. Chrome maintains a hardcoded list of domains that are HTTPS-only, baked directly into the browser binary. Firefox, Safari, and Edge all consume the same list. As of 2026, that list covers well over 100,000 domains, including essentially every major consumer destination — Google, Facebook, Twitter, banking sites, government portals, the lot. What that means in practice is this: when your guest device connects to your network and tries to load gmail.com, or bbc.co.uk, or any preloaded domain, the browser doesn't even attempt an HTTP request. It goes straight to HTTPS. Your network controller never sees a plain HTTP request to intercept. The redirect never happens. The user just gets a certificate error, because your portal's self-signed certificate is not trusted for gmail.com. They see NET::ERR_CERT_AUTHORITY_INVALID and they're stuck. And it's getting worse. In October 2025, Google announced that Chrome 154 — shipping October 2026 — will enable "Always Use Secure Connections" by default for all users on public sites. Chrome 147, which shipped in April 2026, already enabled this for the one-billion-plus users who have Enhanced Safe Browsing turned on. Firefox has been moving in the same direction. Safari has had HTTPS-first behaviour on iOS for some time. The net effect: by the end of 2026, the majority of your guests' browsers will attempt HTTPS for every navigation, regardless of whether the domain is on the preload list. The HTTP intercept pattern is not just unreliable — it's dead. Now, there's a secondary problem that compounds this. Even when the OS-level Captive Network Assistant — the CNA — fires up its mini-browser to handle the portal, that mini-browser has its own HSTS enforcement. On iOS, the CNA uses a sandboxed WebKit instance. On Android, it uses a Chrome Custom Tab. Both enforce HSTS. Both will fail to load your portal if you're trying to serve it via a hostname that has an HSTS policy. The correct technical response here is to serve your portal from a dedicated hostname that has never had an HSTS header and is not on the preload list — something like portal.yourvenue.com — with a valid, CA-signed TLS certificate. That's table stakes now. But even that doesn't fully solve the detection problem, because the device still needs to discover that it's behind a captive portal in the first place. That's where RFC 8910 and RFC 8908 come in. RFC 8910 defines a DHCP option — option 114 — and an IPv6 Router Advertisement option that tells the client device the URL of the captive portal API endpoint. RFC 8908 defines that API: a simple JSON endpoint that the OS queries to determine whether internet access is restricted, and if so, where the portal is. Modern operating systems — iOS 14 and later, Android 11 and later, Windows 11 — all support this. When you implement CAPPORT correctly, the device knows it's behind a portal before it ever tries to load a web page. The OS fires up the CNA with the correct portal URL directly. No HTTP intercept required. That's the first modern alternative: DNS and DHCP signalling via CAPPORT, with a properly-signed portal served from a dedicated hostname. The second alternative is Passpoint, based on IEEE 802.11u and the Wi-Fi Alliance's Hotspot 2.0 specification. Passpoint takes a fundamentally different approach. Instead of intercepting traffic, the access point advertises its identity and authentication requirements via ANQP — Access Network Query Protocol — before the device even associates. The device checks whether it has valid credentials for this network. If it does, it authenticates via 802.1X and WPA2 or WPA3 Enterprise, and gets full network access immediately. No portal, no redirect, no browser involvement at all. Passpoint is the right answer for a specific set of deployments: multi-site operators, enterprise environments, healthcare, transport hubs, anywhere you have repeat users who benefit from zero-touch connectivity. Purple's SecurePass product line is built around this model, and for the right deployment profile it eliminates the captive portal problem entirely. The third option, which sits between the two, is OWE — Opportunistic Wireless Encryption. OWE is defined in RFC 8110 and provides per-client encryption on open networks without requiring credentials. It doesn't replace the portal, but it removes the open-network security exposure that makes regulators nervous, particularly under GDPR and PCI DSS. --- [IMPLEMENTATION RECOMMENDATIONS & PITFALLS — ~2 minutes] Right, so what should you actually do? Let me give you the practical framework. If you're running a captive portal today and it's working, your immediate priority is to implement CAPPORT. That means configuring DHCP option 114 on your controller to point to your portal API endpoint, implementing the RFC 8908 JSON API on your portal server, and ensuring your portal is served from a dedicated hostname with a valid CA-signed certificate. This will restore reliable portal detection on modern devices and eliminate the certificate error problem. Do not — I repeat, do not — attempt to serve your portal from a hostname that appears on the HSTS preload list. And do not use a self-signed certificate. Both of these are instant failure modes. The second thing to address is your walled garden configuration. Your DHCP server, your DNS resolver, and your portal hostname all need to be accessible before authentication. That includes the OS detection probe URLs: captive.apple.com for Apple devices, connectivitycheck.gstatic.com for Android, and msftconnecttest.com for Windows. If any of these are blocked pre-auth, the CNA won't fire and your users will be stuck. For new deployments, particularly in hospitality and multi-site retail, I'd strongly recommend evaluating a hybrid architecture: a Passpoint SSID for repeat visitors and a CAPPORT-compliant portal SSID for first-time guests, with the portal offering Passpoint profile installation as part of the onboarding flow. This gives you the marketing touchpoint for new visitors while delivering zero-friction connectivity for returning ones. The pitfall I see most often is operators who've invested in portal customisation and data collection treating Passpoint as a threat to their marketing stack. It isn't. Purple's platform, for example, supports progressive onboarding where the initial portal interaction captures consent and profile data, and then provisions a Passpoint credential for future visits. You get the first-party data on the first visit and the seamless experience on every subsequent one. --- [RAPID-FIRE Q&A — ~1 minute] Quick-fire questions I get asked constantly: "Can I just use a self-signed cert for my portal?" No. Modern browsers and CNA implementations will reject it. You need a CA-signed certificate. "Does CAPPORT work on all devices?" iOS 14+, Android 11+, Windows 11 — yes. Older devices fall back to legacy detection behaviour. Plan for both. "Is Passpoint GDPR-compliant?" Yes, when implemented correctly. The credential provisioning step is where you capture consent. Purple handles this as part of the SecurePass onboarding flow. "What about PCI DSS scope?" If your guest network carries any cardholder data, you need network segmentation regardless of portal type. Passpoint's WPA3-Enterprise encryption significantly reduces your attack surface and simplifies scope arguments with QSAs. --- [SUMMARY & NEXT STEPS — ~1 minute] To wrap up: the HTTP intercept pattern is broken by HSTS preloading and Chrome's move to HTTPS-first by default. The fix for existing deployments is CAPPORT — RFC 8910 plus RFC 8908 — with a properly-signed portal on a dedicated hostname. For new deployments or major refreshes, evaluate Passpoint, particularly if you have repeat-visitor traffic or compliance requirements that benefit from WPA3-Enterprise encryption. The browser vendors have made their position clear. The question isn't whether to adapt — it's how fast. If you want to dig into the specifics for your deployment, the Purple team can walk you through a CAPPORT readiness assessment and a Passpoint feasibility analysis. Links in the show notes. Thanks for listening. See you next time. --- END OF SCRIPT

header_image.png

Résumé Exécutif

Le modèle de portail captif hérité — interceptant le trafic HTTP et émettant une redirection 302 — est obsolète. Poussé par HTTP Strict Transport Security (HSTS) et le renforcement agressif des navigateurs, le mécanisme traditionnel d'« interception et redirection » échoue à grande échelle dans les environnements Hôtellerie , Commerce de détail et d'entreprise. En 2026, avec Chrome imposant un comportement HTTPS-first par défaut et la liste de préchargement HSTS dépassant les 100 000 domaines, les contrôleurs réseau ne peuvent plus compter sur les requêtes HTTP non chiffrées pour déclencher la détection de portail.

Pour les responsables informatiques et les architectes réseau, cela représente un changement architectural critique. Maintenir un accès WiFi invité fluide nécessite désormais de moderniser votre flux d'intégration. Ce guide détaille les mécanismes techniques qui brisent les portails hérités et décrit la voie d'implémentation neutre vis-à-vis des fournisseurs : le déploiement de l'API CAPPORT (RFC 8908/8910) pour une stabilité immédiate, et la migration vers Passpoint (Hotspot 2.0) et OpenRoaming pour une connectivité sécurisée et sans contact.

Approfondissement technique : Pourquoi HSTS brise le modèle d'interception

Le portail captif traditionnel repose sur une hypothèse fondamentale : le périphérique client effectuera une requête HTTP non chiffrée sur le port 80 que le serveur d'accès réseau (NAS) ou le contrôleur pourra intercepter et rediriger vers la page d'accueil du portail.

Cette hypothèse n'est plus valide.

Le problème du préchargement HSTS

HTTP Strict Transport Security (HSTS), défini dans le RFC 6797, permet à un serveur web de déclarer que les navigateurs web ne doivent interagir avec lui qu'en utilisant des connexions HTTPS sécurisées. Lorsqu'un utilisateur tente d'accéder à un domaine protégé par HSTS via HTTP, le navigateur met à niveau la requête en HTTPS en interne avant l'envoi de tout trafic réseau.

Parce que la requête est chiffrée, le contrôleur réseau ne peut pas inspecter l'en-tête d'hôte ni émettre une redirection HTTP 302. Au lieu de cela, le contrôleur intercepte le trafic HTTPS et présente son propre certificat de portail. Étant donné que ce certificat ne correspond pas au domaine demandé (par exemple, google.com), le navigateur génère une erreur fatale NET::ERR_CERT_AUTHORITY_INVALID. L'utilisateur est bloqué et le portail ne se charge jamais.

La liste de préchargement HSTS exacerbe ce problème. Les navigateurs codent en dur une liste de domaines qui doivent toujours être accessibles via HTTPS, même lors de la première visite. En 2026, cette liste inclut pratiquement toutes les principales destinations grand public. Lorsqu'un invité se connecte à votre réseau et tape une URL courante, le navigateur force le HTTPS, déclenchant l'erreur de certificat et interrompant le flux du portail captif.

Renforcement des navigateurs : Mode HTTPS-First

Au-delà de HSTS, les fournisseurs de navigateurs ont systématiquement renforcé leurs comportements par défaut. Fin 2025, Google a annoncé que Chrome 154 (publié en octobre 2026) activerait par défaut « Toujours utiliser des connexions sécurisées » pour tous les utilisateurs sur les sites publics. Safari et Firefox ont implémenté des modes HTTPS-first similaires.

Cela signifie que même pour les domaines ne figurant pas sur la liste de préchargement HSTS, le navigateur tentera d'abord une connexion HTTPS. Le modèle d'interception HTTP est effectivement obsolète.

legacy_vs_modern_comparison.png

Alternatives modernes : CAPPORT et Passpoint

Pour restaurer la fonctionnalité et améliorer l'expérience utilisateur, les architectes réseau doivent passer à des mécanismes modernes de détection de portail captif et à des cadres d'authentification.

1. L'API CAPPORT (RFC 8908 et RFC 8910)

L'Internet Engineering Task Force (IETF) a abordé le problème de la détection des portails captifs avec l'architecture CAPPORT. Au lieu de s'appuyer sur le trafic web intercepté, CAPPORT fournit un mécanisme de signalisation explicite.

  • RFC 8910 (Identification de portail captif) : Le réseau utilise DHCP (Option 114) ou les annonces de routeur IPv6 pour fournir au périphérique client l'URI de l'API du portail captif.
  • RFC 8908 (API de portail captif) : Le client interroge l'URI fournie (un point de terminaison JSON) pour déterminer s'il est captif et pour obtenir l'URL de la page du portail destinée à l'utilisateur.

Lorsqu'il est implémenté, le système d'exploitation client (iOS, Android, Windows) détecte nativement le portail avant que l'utilisateur n'ouvre un navigateur. Le système d'exploitation lance son assistant de réseau captif (CNA) et charge l'URL du portail directement via une connexion HTTPS sécurisée. Cela élimine le besoin d'interception HTTP et évite les erreurs de certificat.

2. Passpoint (Hotspot 2.0) et OpenRoaming

Pour les environnements avec des visiteurs réguliers ou des exigences de sécurité élevées, Passpoint (basé sur IEEE 802.11u) est le remplacement définitif du portail captif.

Passpoint fonctionne au niveau de la couche MAC. Avant de s'associer au point d'accès (AP), le périphérique client utilise l'Access Network Query Protocol (ANQP) pour découvrir les capacités du réseau et les consortiums d'itinérance. Si le périphérique détient une accréditation correspondante (par exemple, un profil installé lors d'une visite précédente ou via un fournisseur d'identité), il s'authentifie automatiquement en utilisant 802.1X et WPA2/WPA3-Enterprise.

Cette approche offre une connectivité de type cellulaire, sans contact. Elle chiffre le trafic en direct, atténuant les risques des réseaux ouverts et des attaques par faux jumeaux. OpenRoaming, basé sur Passpoint, étend cela en fédérant les fournisseurs d'identité, permettant aux utilisateurs de se déplacer de manière transparente entre différents lieux. Notamment, Purple agit comme un fournisseur d'identité gratuit pour des services comme OpenRoaming sous la licence Connect, facilitant une large adoption sans frais de licence par utilisateur.

passpoint_migration_decision.png

Guide d'implémentation

Le déploiement d'une architecture d'accès invité résiliente nécessite une approche progressive, passant d'une remédiation immédiate à une transformation stratégique.

Phase 1 : Stabiliser les portails existants avec CAPPORT

Si vous devez maintenir un Captive Portal traditionnel pour la capture de données ou l' analyse WiFi , vous devez implémenter CAPPORT pour contourner les ruptures HSTS.

  1. Configurer l'option DHCP 114 : Mettez à jour votre serveur DHCP ou votre contrôleur réseau pour diffuser l'option 114, en la faisant pointer vers le point de terminaison API de votre portail (par exemple, https://portal.yourvenue.com/capport).
  2. Implémenter l'API RFC 8908 : Assurez-vous que votre serveur de portail répond à la requête API avec un JSON valide indiquant l'état Captive Portal et l'URL visible par l'utilisateur.
  3. Utiliser un nom d'hôte dédié et valide : Le portail doit être servi via HTTPS en utilisant un certificat valide, signé par une CA. N'utilisez jamais un certificat auto-signé ou un nom d'hôte figurant sur la liste de préchargement HSTS.
  4. Autoriser les sondes OS : Assurez-vous que les sondes de détection de Captive Portal au niveau du système d'exploitation (par exemple, captive.apple.com, connectivitycheck.gstatic.com) sont autorisées via le jardin clos de pré-authentification.

Phase 2 : Déployer Passpoint pour un accès sécurisé et fluide

La transition vers Passpoint améliore considérablement la sécurité et l'expérience utilisateur, en particulier dans les déploiements Santé et Transport .

  1. Vérifier le support de l'infrastructure : Assurez-vous que vos points d'accès et contrôleurs prennent en charge Hotspot 2.0/Passpoint et l'authentification 802.1X.
  2. Configurer les profils ANQP : Définissez le nom du lieu, les OI du consortium d'itinérance et les domaines NAI dans votre contrôleur réseau.
  3. Établir un backend RADIUS/AAA : Implémentez un serveur RADIUS capable de gérer l'authentification EAP (par exemple, EAP-TLS, EAP-TTLS).
  4. Implémenter le provisionnement de profils : Utilisez un serveur d'inscription en ligne (OSU) ou intégrez-vous à une plateforme comme Purple SecurePass pour provisionner les profils Passpoint sur les appareils des utilisateurs.

Phase 3 : Le modèle d'intégration progressive hybride

Pour les lieux qui nécessitent à la fois un accès fluide et une capture de données initiale (par exemple, les environnements de vente au détail cherchant à fidéliser), une approche hybride est optimale.

  1. Première visite : L'utilisateur se connecte à un SSID ouvert et est dirigé vers un Captive Portal compatible CAPPORT. Le portail capture les données nécessaires (par exemple, e-mail, acceptation des conditions) et provisionne un profil Passpoint sur l'appareil.
  2. Visites ultérieures : L'appareil de l'utilisateur détecte automatiquement le réseau Passpoint via ANQP et s'authentifie de manière fluide à l'aide de 802.1X. Le Captive Portal est entièrement contourné.

Bonnes pratiques

  • Évitez le jargon marketing « sans friction » : Concentrez-vous sur la réalité technique. Passpoint nécessite une friction de provisionnement initiale pour atteindre une fluidité à long terme.
  • Segmenter le trafic invité : Quelle que soit la méthode d'authentification, le trafic invité doit être logiquement séparé des réseaux d'entreprise à l'aide de VLAN et de pare-feu, conformément à Architecture de l'Internet des objets : Un guide complet .
  • Surveiller l'expiration des certificats : Un certificat TLS expiré sur votre portail ou serveur RADIUS entraînera des échecs d'authentification catastrophiques. Mettez en œuvre un renouvellement et une surveillance automatisés.
  • Se conformer aux réglementations sur la confidentialité des données : Assurez-vous que vos politiques de capture et de rétention des données sont conformes aux lois locales. Pour des conseils régionaux spécifiques, consultez des ressources telles que le Brésil LGPD et le WiFi invité : Un guide de conformité .

Dépannage et atténuation des risques

  • Symptôme : Les appareils iOS affichent un écran CNA vide.
    • Cause : La page du portail contient des ressources (images, scripts) hébergées sur des domaines externes qui sont bloqués par le jardin clos.
    • Solution : Hébergez tous les actifs essentiels du portail localement ou ajoutez les domaines externes requis à la liste d'autorisation de pré-authentification.
  • Symptôme : Les appareils Android affichent un avertissement de certificat au lieu du portail.
    • Cause : Le contrôleur intercepte le trafic HTTPS vers un domaine HSTS préchargé, ou le certificat TLS du portail est invalide/auto-signé.
    • Solution : Implémentez CAPPORT et assurez-vous que le portail utilise un certificat signé par une CA sur un nom d'hôte dédié.
  • Symptôme : L'installation du profil Passpoint échoue sur Windows 11.
    • Cause : La chaîne de certificats du serveur de provisionnement est incomplète ou non fiable pour le système d'exploitation.
    • Solution : Vérifiez que la chaîne de certificats complète (y compris les CA intermédiaires) est servie lors de l'établissement de la liaison TLS.

ROI et impact commercial

La transition des portails d'interception HTTP hérités vers les architectures modernes CAPPORT et Passpoint offre une valeur commerciale mesurable :

  • Réduction des tickets de support : L'élimination des erreurs de certificat liées à HSTS réduit directement le volume des demandes d'assistance informatique concernant les problèmes de connectivité des invités.
  • Augmentation des taux de connexion : Une détection fiable du portail au niveau du système d'exploitation garantit que davantage d'invités terminent avec succès le processus d'intégration, élargissant ainsi votre audience atteignable pour les initiatives marketing.
  • Amélioration de la posture de sécurité : Le passage à Passpoint et WPA3-Enterprise atténue les risques associés aux réseaux ouverts, protégeant contre l'écoute clandestine et les attaques de type « evil twin », ce qui est essentiel pour la conformité dans des secteurs comme la finance et la santé.
  • Expérience utilisateur améliorée : L'itinérance sans contact via Passpoint génère une satisfaction utilisateur et un engagement répété plus élevés, soutenant des initiatives numériques plus larges telles que Système de positionnement intérieur : Guide UWB, BLE et WiFi et Votre guide des solutions Wi-Fi d'entreprise embarquées .

Termes clés et définitions

HSTS (HTTP Strict Transport Security)

A web security policy mechanism that forces web browsers to interact with domains only via secure HTTPS connections, preventing protocol downgrade attacks and HTTP interception.

When IT teams see an increase in certificate errors on guest networks, HSTS enforcement on popular domains is typically the root cause, breaking legacy redirect mechanisms.

HSTS Preload List

A hardcoded list built into modern web browsers containing domains that must always be accessed via HTTPS, even on the very first visit.

If a user attempts to navigate to a preloaded domain (like google.com) while behind a legacy captive portal, the browser will refuse the HTTP connection, preventing the portal redirect.

CAPPORT (Captive Portal Architecture)

An IETF standard (RFC 8908 and 8910) that uses DHCP or IPv6 Router Advertisements to explicitly signal the presence and URL of a captive portal to a client device.

Implementing CAPPORT is the primary remediation strategy for network architects to fix broken portal detection on modern iOS, Android, and Windows devices.

Passpoint (Hotspot 2.0)

A Wi-Fi Alliance specification based on IEEE 802.11u that enables devices to automatically discover and securely authenticate to Wi-Fi networks without user intervention.

Used in enterprise and multi-site deployments to replace captive portals entirely, providing cellular-like roaming and WPA3-Enterprise security.

ANQP (Access Network Query Protocol)

A layer 2 protocol used by client devices to query Access Points for network information (like roaming partners and supported authentication types) before associating.

ANQP is the discovery mechanism that allows a Passpoint-enabled device to determine if it has the correct credentials to join a specific network silently.

CNA (Captive Network Assistant)

The OS-level pseudo-browser that automatically opens when a device detects it is behind a captive portal, allowing the user to authenticate before gaining full internet access.

IT teams must ensure their walled garden allows access to the OS-specific probe URLs (e.g., captive.apple.com) so the CNA triggers correctly.

OpenRoaming

A global Wi-Fi roaming federation that allows users to connect automatically and securely across different venues using a single set of credentials provided by an identity provider.

Venues adopt OpenRoaming to provide seamless access for guests, leveraging identity providers like Purple to manage authentication without complex bilateral agreements.

Walled Garden

A restricted network environment where unauthenticated users can only access a specific set of pre-approved IP addresses or domains necessary for the login process.

Misconfigured walled gardens that block OS detection probes or external portal assets are a leading cause of blank screens and failed guest onboarding.

Études de cas

A 400-room enterprise hotel is experiencing a 30% drop in successful guest WiFi connections. Users report seeing 'Your connection is not private' (NET::ERR_CERT_AUTHORITY_INVALID) errors on their smartphones when trying to access the network. The hotel currently uses a legacy open SSID that intercepts port 80 traffic to redirect to a branded splash page.

The IT team must immediately implement the CAPPORT API (RFC 8908/8910). First, configure the network controller's DHCP server to broadcast Option 114, providing the URI of the captive portal API. Second, deploy the RFC 8908 JSON endpoint on the portal server. Third, ensure the portal is hosted on a dedicated subdomain (e.g., wifi.hoteldomain.com) with a valid, CA-signed TLS certificate. Finally, verify that OS detection URLs (like captive.apple.com) are allowed pre-authentication.

Notes de mise en œuvre : This approach directly addresses the HSTS breakage by utilizing out-of-band signalling (DHCP) to inform the OS of the portal's location, rather than relying on intercepting encrypted web traffic. It restores the native Captive Network Assistant (CNA) experience without triggering browser certificate warnings.

A large retail chain with 500 locations wants to implement seamless WiFi roaming for their loyalty app users, eliminating the need for customers to interact with a captive portal on every visit, while still maintaining high security standards (WPA3).

The architect should deploy a Passpoint (Hotspot 2.0) architecture. The initial onboarding can occur via the retailer's loyalty app, which provisions a Passpoint profile (credential) to the user's device. The APs across all 500 locations must be configured to broadcast the appropriate ANQP roaming consortium OIs. A centralized RADIUS infrastructure will handle the 802.1X EAP authentication when the device automatically associates with the network.

Notes de mise en œuvre : Passpoint is the correct solution for multi-site roaming and high security. By moving authentication to the MAC layer (802.1X) and utilizing WPA3-Enterprise, the network avoids the vulnerabilities of open SSIDs and the UX friction of repeated captive portal logins.

Analyse de scénario

Q1. Your organisation is deploying a new guest WiFi network across 50 regional offices. Security policy mandates that all wireless traffic must be encrypted over the air, but the marketing team insists on capturing user email addresses upon first connection. Which architecture should you propose?

💡 Astuce :Consider how to balance the requirement for initial data capture with the mandate for over-the-air encryption.

Afficher l'approche recommandée

Propose a hybrid progressive onboarding architecture. First-time users connect to an open SSID and are directed to a CAPPORT-enabled captive portal to provide their email address. Upon submission, the portal provisions a Passpoint profile to the device. The device then automatically transitions to a secure, WPA3-Enterprise encrypted Passpoint SSID for all subsequent traffic and future visits. This satisfies marketing's data capture requirement while enforcing security policy for the vast majority of network usage.

Q2. A client complains that their newly designed, highly customized captive portal page is displaying a blank white screen on all modern iOS devices, although it works perfectly on older Android phones. The portal relies heavily on external web fonts and a third-party analytics script.

💡 Astuce :Think about how the iOS Captive Network Assistant (CNA) interacts with external resources before the device is fully authenticated.

Afficher l'approche recommandée

The issue is a misconfigured walled garden. The iOS CNA is attempting to render the portal page, but the external domains hosting the web fonts and analytics scripts are blocked by the network controller pre-authentication. Because these resources cannot load, the CNA stalls and displays a blank screen. The solution is to either host all required assets locally on the portal server or add the specific external domains (FQDNs) to the controller's pre-authentication allowlist.

Q3. During a network audit, you discover that the legacy captive portal is intercepting traffic and serving a self-signed certificate. You are tasked with upgrading the system to use the CAPPORT API. What specific certificate requirements must be met for the new portal server?

💡 Astuce :Consider how modern browsers and OS CNAs handle certificate validation during the captive portal detection phase.

Afficher l'approche recommandée

The new portal server must be accessed via a dedicated Fully Qualified Domain Name (FQDN) that is NOT on the HSTS preload list. Furthermore, it must use a valid TLS certificate issued by a publicly trusted Certificate Authority (CA). Self-signed certificates will be rejected by the OS CNA and modern browsers, preventing the portal from loading and halting the onboarding process.