Skip to main content

Why Is My Guest WiFi Not Connecting? Troubleshooting Captive Portal Issues

This authoritative technical reference guide explains the underlying mechanics of captive portal detection and details the six primary failure modes that prevent guest WiFi from connecting. It provides IT managers and network architects with a practical troubleshooting framework to resolve HTTP redirect issues, DNS conflicts, and MAC randomisation challenges.

📖 6 min read📝 1,615 words🔧 2 worked examples3 practice questions📚 8 key definitions

Listen to this guide

View podcast transcript
TITLE: Why Is My Guest WiFi Not Connecting? Troubleshooting Captive Portal Issues FORMAT: Purple Technical Briefing Podcast VOICE: UK English - Senior Solutions Architect tone DURATION: Approximately 10 minutes --- SECTION 1: Introduction and Context - approximately 1 minute Hello, and welcome to this technical briefing from Purple. I am your host, and today we are tackling one of the most persistent, most misunderstood problems in enterprise wireless networking: the guest WiFi captive portal that simply refuses to load. You have been there. A guest arrives at your hotel, your retail store, your stadium, or your conference centre. They join the WiFi network. Nothing happens. No login page. No internet. Just a spinning icon and a growing sense of frustration. For venue operations directors and IT managers, that moment is not just a minor inconvenience. It represents a direct failure of your guest experience, a spike in front-of-house support calls, and a missed opportunity to capture the first-party data that justifies your wireless infrastructure investment. In this briefing, we are going to go under the hood. We will explain exactly how captive portal detection works at the operating system level, identify the six root causes responsible for the vast majority of connection failures, and give you a practical, actionable troubleshooting framework you can hand to your IT team today. Let us get into it. --- SECTION 2: Technical Deep-Dive - approximately 5 minutes To fix a captive portal problem, you first need to understand what a captive portal actually does at the network level. Most people think of it as simply a login page. It is actually a network-level traffic interception mechanism, and that distinction matters enormously when things go wrong. Here is the sequence. A guest's device joins your guest SSID and receives an IP address via DHCP. At that point, the operating system does not wait for the user to open a browser. In the background, a system service immediately fires off an unencrypted HTTP GET request to a vendor-controlled probe URL. Apple devices query captive.apple.com. Android devices query connectivitycheck.gstatic.com. Windows devices query msftconnecttest.com. Firefox has its own probe at detectportal.firefox.com. If the network has open internet access, these probes return their expected responses, and the operating system concludes everything is fine. But on a guest network, your wireless gateway or controller intercepts that HTTP probe before it reaches the internet. Instead of the expected response, the gateway returns an HTTP 302 redirect pointing to your captive portal splash page. The operating system detects the unexpected redirect, realises it is behind a captive portal, and opens a sandboxed browser window - often called the Captive Portal Assistant - to display the login page. That is the happy path. Now let us talk about the six ways it breaks. Root cause number one: DHCP pool exhaustion. This is the silent killer at high-density events. If you are running a conference with two thousand attendees on a standard slash-24 subnet, you have 254 usable IP addresses. If your DHCP lease time is set to the default 24 hours, you will exhaust that pool within minutes of doors opening. Every subsequent connection attempt fails before the captive portal sequence even begins. The fix is straightforward: set guest DHCP lease times to between 15 and 30 minutes for high-turnover environments, and size your subnets appropriately for peak concurrent users, not just total headcount. Root cause number two: DNS interception failure. The captive portal redirect depends on the gateway intercepting the HTTP probe. But the probe requires a DNS lookup first. If your DNS configuration does not permit pre-authenticated clients to resolve external domain names, the probe never fires. Ensure your firewall policy explicitly allows DNS queries from unauthenticated clients, and verify that your DNS interception is working by running a packet capture against a test device. Root cause number three: incomplete walled garden. The walled garden - also called the pre-authentication access control list - defines which external domains unauthenticated guests can reach. If your portal splash page loads assets from a CDN that is not in the walled garden, the page renders as a blank screen. If you offer social login via Google, Apple, or Facebook, every OAuth domain those providers use must be whitelisted. And here is the critical point: social identity providers update their CDN IP ranges and authentication domains regularly. A walled garden that worked perfectly six months ago may be silently broken today. Schedule quarterly walled garden audits and use wildcard domain snooping where your hardware supports it. On Cisco Meraki, HPE Aruba, Ruckus, and Juniper Mist, this is available natively. Root cause number four: HSTS blocking the redirect. HTTP Strict Transport Security, or HSTS, is a browser security policy that forces connections to specific domains over HTTPS only. If a guest's device attempts to contact an HSTS-preloaded domain - and that includes virtually every major website - and your gateway tries to intercept that HTTPS request to redirect to the portal, the browser detects a certificate mismatch. It presents a non-bypassable security warning and blocks the redirect entirely. The correct solution is never to attempt HTTPS interception. Your gateway should only redirect the unencrypted HTTP canary probes. The long-term standards-based fix is RFC 8910, which defines DHCP Option 114. This option allows your DHCP server to directly advertise the captive portal URL to the client device, bypassing the need for HTTP redirection entirely. iOS 14 and Android 11 and above support this natively. Root cause number five: active VPN on the guest device. A VPN encrypts all traffic from the device and routes it through an external tunnel before it reaches your gateway. Your gateway never sees the HTTP probe. The captive portal detection sequence never triggers. The guest sees no login page and no internet. The fix for the guest is simple: disable the VPN, connect to the portal, then re-enable the VPN. For your front-of-house staff, this should be the first question they ask when a guest reports a connection problem. Root cause number six: MAC address randomisation breaking session persistence. Modern iOS and Android devices use randomised MAC addresses by default as a privacy feature. Each time a device connects to a network, it may present a different MAC address. Since captive portal session state is tracked by MAC address, a guest who authenticated an hour ago may be presented with the login page again after their device's MAC rotates. The guest-facing fix is to disable Private Address for your specific SSID in the network settings. The operator-side fix is to implement profile-based authentication - such as OpenRoaming via Passpoint and 802.1X - which authenticates at Layer 2 using credentials rather than MAC addresses, making randomisation irrelevant. --- SECTION 3: Implementation Recommendations and Pitfalls - approximately 2 minutes Now that we understand the root causes, let us talk about what a well-configured captive portal deployment actually looks like. Start with your DHCP architecture. For any venue expecting more than 200 concurrent devices, move away from a single slash-24 subnet. Use slash-22 or larger, and set lease times to match your venue's dwell profile. A hotel sets leases to 8 hours. A stadium sets leases to 3 hours. A shopping centre sets leases to 90 minutes. A conference centre sets leases to 30 minutes. Next, validate your walled garden before every major event. The minimum required entries are: your portal's FQDN and all associated CDN domains, the captive portal detection URLs for Apple, Google, Windows, and Firefox, and the OAuth domains for every social login provider you support. On Purple's platform, we maintain and update these walled garden entries automatically as part of our cloud-managed service, which removes the manual maintenance burden from your team. For your portal certificate, use a publicly trusted TLS certificate from a recognised certificate authority. Self-signed certificates will trigger browser warnings on every device. Renew certificates before expiry - a lapsed certificate is one of the most common causes of sudden, venue-wide portal failures. One pitfall that catches many IT teams: testing the portal from a device that has previously authenticated. Your device's session is still active, so you bypass the portal entirely and conclude everything is working. Always test from a device in a fresh, unauthenticated state - either a new device, or one where you have forgotten the network and cleared the WiFi profile. Finally, consider the strategic direction of travel. Captive portals are a mature technology, but they carry inherent friction. OpenRoaming, built on Passpoint and 802.1X, allows returning guests to connect automatically and securely without ever seeing a login page. Purple acts as a free identity provider for OpenRoaming under our Connect plan. Venues like Premier Inn and Manchester Airports Group are already deploying this to eliminate re-authentication friction for repeat visitors while maintaining full GDPR compliance and first-party data capture. --- SECTION 4: Rapid-Fire Q and A - approximately 1 minute Let us run through the most common questions we hear from venue IT teams. Question: Why does the portal work on iPhones but not on Android devices? Answer: Android uses connectivitycheck.gstatic.com as its probe URL. If that domain is blocked by your firewall or not in your walled garden, Android devices never trigger the portal. Add it explicitly. Question: A guest says the portal loaded but they cannot get online after logging in. Answer: This is almost always a RADIUS authorisation failure. Check that your RADIUS server is reachable from the wireless controller, verify the shared secret matches on both sides, and review the RADIUS logs for Access-Reject messages. Question: How do we handle guests who keep getting logged out after a few minutes? Answer: Check your idle timeout setting. Many controllers default to a 5-minute idle timeout, which is far too aggressive for mobile devices that sleep between interactions. Set idle timeout to at least 30 minutes for hospitality and retail environments. --- SECTION 5: Summary and Next Steps - approximately 1 minute To summarise: guest WiFi captive portal failures fall into six categories - DHCP exhaustion, DNS interception failure, incomplete walled garden, HSTS redirect blocking, active VPN on the client device, and MAC address randomisation. Each has a specific, testable fix. For your IT team, the immediate actions are: audit your DHCP lease times and subnet sizing, validate your walled garden against the current OAuth domains of your social login providers, and test your portal from a fresh unauthenticated device after every configuration change. For your longer-term roadmap, evaluate OpenRoaming as the successor to captive portal re-authentication for returning visitors. The technology is mature, the standards are established under IEEE 802.1X and WPA3-Enterprise, and Purple makes it available at no additional software cost under the Connect plan. For more technical guides, case studies, and implementation resources, visit purple.ai. Thank you for listening to this Purple technical briefing. Keep your networks reliable and your guests connected.

📚 Part of our core series: Captive Portal Guide

header_image.png

Resumo Executivo

Para locais corporativos modernos, as redes sem fio para convidados não são mais uma simples comodidade; elas representam um ponto de contato crítico para o engajamento do cliente, inteligência operacional e posicionamento de marca. No entanto, o valor comercial dessas redes depende inteiramente da confiabilidade da experiência de conexão inicial. Quando um convidado se conecta a uma rede e a página de login do Captive Portal não aparece, o local sofre imediatamente com o aumento do atrito no atendimento, um pico nos chamados de suporte e a perda de oportunidades de captura de dados.

No cerne dessas falhas está uma tensão fundamental entre os padrões seguros da web e as técnicas de interceptação em nível de rede historicamente usadas por portais cativos. Os navegadores da web e sistemas operacionais modernos são projetados para detectar e bloquear o redirecionamento de tráfego não autorizado para proteger os usuários de ataques man-in-the-middle. Ao compreender as sequências precisas de redirecionamento HTTP e DNS, o impacto de protocolos seguros como HSTS e os recursos de privacidade dos dispositivos móveis modernos, as equipes de TI podem projetar soluções robustas de acesso sem fio. Este guia fornece a estrutura definitiva para diagnosticar e resolver as causas raiz por trás do estado de falha "guest wifi not connecting captive portal".

Ouça o briefing técnico completo:

Análise Técnica Detalhada: Como a Detecção de Captive Portal Realmente Funciona

Para solucionar um problema de Captive Portal, primeiro você deve entender o que um Captive Portal realmente faz no nível da rede. A maioria das pessoas pensa nele apenas como uma página de login. Na verdade, trata-se de um mecanismo de interceptação de tráfego no nível da rede.

Quando um dispositivo se conecta ao seu SSID de convidado e recebe um endereço IP via DHCP, o sistema operacional não espera que o usuário abra um navegador. Em segundo plano, um serviço do sistema dispara imediatamente uma solicitação HTTP GET não criptografada para uma URL de teste controlada pelo fabricante. Dispositivos Apple consultam captive.apple.com. Dispositivos Android consultam connectivitycheck.gstatic.com. Dispositivos Windows consultam msftconnecttest.com.

Se a rede tiver acesso aberto à internet, essas sondas retornam as respostas esperadas e o sistema operacional conclui que está tudo bem. Mas em uma rede de convidados, seu gateway ou controladora sem fio intercepta essa sonda HTTP antes que ela chegue à internet. Em vez da resposta esperada, o gateway retorna um redirecionamento HTTP 302 apontando para a página de Captive Portal. O sistema operacional detecta o redirecionamento inesperado, percebe que está atrás de um Captive Portal e abre uma janela de navegador em sandbox para exibir a página de login.

captive_portal_flow_diagram.png

Os Seis Principais Modos de Falha

Quando um convidado relata que o WiFi não está conectando, a falha quase sempre decorre de uma das seis causas raiz que interrompem essa sequência.

1. Esgotamento do Pool de DHCP Este é o assassino silencioso em eventos de alta densidade. Se você realiza uma conferência com 2.000 participantes em uma sub-rede /24 padrão, você tem 254 endereços IP utilizáveis. Se o tempo de concessão (lease time) do seu DHCP estiver definido para o padrão de 24 horas, você esgotará esse pool poucos minutos após a abertura das portas. Cada tentativa de conexão subsequente falha antes mesmo do início da sequência do Captive Portal.

2. Falha na Interceptação de DNS O redirecionamento do Captive Portal depende de o gateway interceptar a sonda HTTP. Mas a sonda requer uma consulta DNS primeiro. Se a sua configuração de DNS não permitir que clientes pré-autenticados resolvam nomes de domínio externos, a sonda nunca é disparada.

3. Walled Garden Incompleto O walled garden define quais domínios externos os convidados não autenticados podem acessar. Se a página do seu portal carrega recursos de uma CDN que não está no walled garden, a página é renderizada como uma tela em branco. Se você oferece login social via Google, Apple ou Facebook, todos os domínios OAuth que esses provedores usam devem estar na lista de permissões. Os provedores de identidade social atualizam seus intervalos de IP de CDN regularmente. Um walled garden que funcionava perfeitamente há seis meses pode estar silenciosamente quebrado hoje.

4. HSTS Bloqueando o Redirecionamento O HTTP Strict Transport Security (HSTS) é uma política de segurança do navegador que força conexões para domínios específicos apenas via HTTPS. Se um convidado tentar entrar em contato com um domínio pré-carregado com HSTS e seu gateway tentar interceptar essa solicitação HTTPS para redirecionar para o portal, o navegador detectará uma incompatibilidade de certificado. Ele apresentará um aviso de segurança que não pode ser ignorado e bloqueará o redirecionamento por completo. A solução correta é nunca tentar a interceptação HTTPS. Seu gateway deve apenas redirecionar as sondas canário HTTP não criptografadas.

5. VPN Ativa no Dispositivo do Convidado Uma VPN criptografa todo o tráfego do dispositivo e o roteia através de um túnel externo antes que ele chegue ao seu gateway. Seu gateway nunca vê a sonda HTTP. A sequência de detecção do Captive Portal nunca é acionada.

6. Randomização de Endereço MAC Dispositivos iOS e Android modernos usam endereços MAC aleatórios por padrão como um recurso de privacidade. Como o estado da sessão do Captive Portal é rastreado pelo endereço MAC, um visitante que se autenticou há uma hora pode se deparar com a página de login novamente após o MAC do seu dispositivo rotacionar.

Guia de Implementação: Arquitetando para Confiabilidade

Uma implantação de Captive Portal bem configurada exige uma coordenação cuidadosa em toda a sua infraestrutura de Guest WiFi .

Passo 1: Otimize a Arquitetura DHCP

Para qualquer local que preveja mais de 200 dispositivos simultâneos, evite usar uma única sub-rede /24. Use /22 ou maior e defina os tempos de concessão (lease times) para corresponder ao perfil de permanência do seu estabelecimento. Um hotel define concessões para 8 horas. Um estádio define concessões para 3 horas. Um shopping center define concessões para 90 minutos. Um centro de convenções define concessões para 30 minutos.

Passo 2: Automatize o Gerenciamento de Walled Garden

Valide seu walled garden antes de cada grande evento. Na plataforma da Purple, mantemos e atualizamos essas entradas de walled garden automaticamente como parte do nosso serviço gerenciado na nuvem, o que elimina a carga de manutenção manual da sua equipe. Oferecemos suporte a integrações com Cisco Meraki, HPE Aruba, Ruckus, Juniper Mist, Ubiquiti UniFi, Cambium, Extreme e Fortinet.

Passo 3: Implemente o RFC 8910 (Opção DHCP 114)

A solução de longo prazo baseada em padrões para conflitos de HSTS é o RFC 8910, que define a Opção DHCP 114. Essa opção permite que seu servidor DHCP anuncie diretamente a URL do Captive Portal para o dispositivo cliente, ignorando completamente a necessidade de redirecionamento HTTP. O iOS 14 e o Android 11 ou superior oferecem suporte nativo a isso.

Boas Práticas

Implante Autenticação Baseada em Perfil para Visitantes Recorrentes Os Captive Portals são uma tecnologia madura, mas trazem um atrito inerente. O OpenRoaming, construído sobre Passpoint e 802.1X, permite que visitantes recorrentes se conectem de forma automática e segura sem nunca ver uma página de login. A Purple atua como um provedor de identidade gratuito para OpenRoaming em nosso plano Connect. Locais como Premier Inn e Manchester Airports Group já estão implantando isso para eliminar o atrito de reautenticação para visitantes frequentes, mantendo total conformidade com a GDPR e a captura de dados primários (first-party data).

Nunca Teste a Partir de um Dispositivo Autenticado Um erro comum que afeta muitas equipes de TI: testar o portal a partir de um dispositivo que já foi autenticado anteriormente. A sessão do seu dispositivo ainda está ativa, então você ignora o portal completamente e conclui que tudo está funcionando. Sempre teste a partir de um dispositivo em um estado limpo e não autenticado.

Leia as Orientações Relacionadas Para ler mais sobre como proteger suas redes, consulte nosso What Is Secure WiFi: Essential Guide for Business 2026 e nosso Bandwidth Management: A Practical Guide for 2026 .

Resolução de Problemas e Mitigação de Riscos

Quando um visitante relata um problema de conexão, sua equipe de atendimento precisa de uma estrutura de diagnóstico rápido.

troubleshooting_checklist.png

Instrua sua equipe a executar primeiro as correções do lado do cliente:

  1. Peça ao visitante para desativar qualquer VPN ativa.
  2. Instrua o visitante a desativar a randomização de MAC (Endereço Privado) para o seu SSID específico.
  3. Peça ao visitante para abrir um navegador padrão e navegar para http://neverssl.com. Como este site foi projetado para nunca usar SSL, o gateway pode interceptar facilmente a solicitação e acionar o redirecionamento.
  4. Se tudo mais falhar, peça ao visitante para esquecer a rede e conectar-se novamente.

Se o problema persistir em vários visitantes, passe para as verificações do lado do operador. Revise a utilização do pool DHCP imediatamente, verifique os logs do RADIUS em busca de mensagens de Access-Reject e teste a interceptação de DNS.

ROI e Impacto nos Negócios

O impacto comercial de um Captive Portal confiável vai muito além das métricas de TI. Ao eliminar falhas de conexão, os estabelecimentos aumentam diretamente a taxa de crescimento de sua base de dados de marketing.

Considere a Harrods, que alcançou um ROI de marketing de 57x ao otimizar seu WiFi Analytics e o fluxo do Captive Portal. Ou a AGS Airports, que entregou um ROI de 842% por meio de um gerenciamento contínuo de largura de banda em camadas. Uma experiência de conexão confiável é o requisito fundamental para coletar os dados modernos de coleta de feedback detalhados em nosso guia Modern Feedback Collection: A Playbook for Venues 2026 .

Cada falha no carregamento do Captive Portal representa um perfil de cliente perdido. Ao implementar os padrões arquitetônicos descritos neste guia, os líderes de TI transformam sua infraestrutura sem fio de um centro de custo em um gerador de receita confiável e em conformidade.

Key Definitions

Captive Portal

A network-level interception mechanism that forces an unauthenticated user to view and interact with a specific web page before being granted access to the public internet.

When IT teams deploy guest networks, the captive portal is the primary tool for enforcing terms of service and capturing first-party marketing data.

Walled Garden

A pre-authentication access control list (ACL) that defines which external IP addresses or domain names an unauthenticated device is permitted to access.

Crucial for allowing devices to load the captive portal splash page assets and communicate with social identity providers before the user has fully authenticated.

HSTS (HTTP Strict Transport Security)

A web security policy mechanism that helps to protect websites against man-in-the-middle attacks such as protocol downgrade attacks and cookie hijacking.

HSTS is the primary reason why intercepting HTTPS traffic to display a captive portal results in severe browser security warnings rather than a successful redirect.

RFC 8910 (DHCP Option 114)

An IETF standard that allows a DHCP server to directly advertise the URL of the captive portal to the client device during the initial IP address assignment.

This standard eliminates the need for HTTP redirection entirely, solving the HSTS conflict and providing a cleaner connection experience.

MAC Address Randomisation

A privacy feature in modern mobile operating systems that generates a new, random MAC address for each wireless network the device joins, or periodically rotates the address.

This feature breaks traditional captive portal session persistence, forcing returning guests to log in repeatedly unless the venue upgrades to profile-based authentication like OpenRoaming.

OpenRoaming

A global roaming federation built on Passpoint and 802.1X that allows users to connect to public WiFi networks automatically and securely without interacting with a captive portal.

Purple acts as a free identity provider for OpenRoaming under the Connect plan, allowing venues to eliminate re-authentication friction.

HTTP 302 Redirect

An HTTP response status code indicating that the requested resource resides temporarily under a different URI.

This is the specific mechanism the wireless gateway uses to redirect the device's HTTP canary probe to the captive portal splash page.

Canary Probe

An automated, unencrypted HTTP request sent by an operating system immediately after connecting to a network to test for internet connectivity.

Apple uses captive.apple.com; Android uses connectivitycheck.gstatic.com. Intercepting these probes is the foundation of captive portal detection.

Worked Examples

A 2,500-capacity conference centre in London is hosting a major technology summit. Within 45 minutes of the keynote beginning, attendees report that the 'guest wifi not connecting captive portal' issue is widespread. The SSID is visible, but devices either fail to obtain an IP address or receive an IP but see no login screen. The network is configured with a single /23 subnet and 12-hour DHCP leases.

  1. Identify DHCP Exhaustion: A /23 subnet provides 1,022 usable IP addresses. With 2,500 attendees, the pool is undersized. The 12-hour lease means addresses are not returned to the pool when attendees leave the building for lunch.
  2. Expand the Subnet: Reconfigure the guest VLAN to use a /21 subnet, providing 4,094 usable IP addresses, comfortably exceeding the venue capacity.
  3. Reduce Lease Time: Change the DHCP lease time from 12 hours to 30 minutes. This ensures that IP addresses from devices that disconnect (e.g., when an attendee leaves) are quickly reclaimed.
  4. Clear Leases: Clear the existing DHCP bindings to force active devices to renew under the new parameters.
Examiner's Commentary: This scenario demonstrates the classic failure mode of undersized subnets and overly long lease times in high-density environments. The solution addresses both the immediate capacity constraint and the ongoing lifecycle management of the IP addresses. By reducing the lease time to 30 minutes, the network operator ensures efficient utilisation of the address space without requiring manual intervention.

A retail chain rolls out a new captive portal featuring social login via Google and Facebook. During testing, the IT team finds that the portal splash page loads correctly, but when a user taps 'Log in with Google', the page times out and fails to connect. Standard email registration works perfectly.

  1. Diagnose Walled Garden Failure: The timeout indicates that the unauthenticated client device cannot reach the Google OAuth servers to complete the authentication handshake.
  2. Audit Walled Garden Entries: Review the pre-authentication access control list on the wireless controller (e.g., Cisco Meraki or HPE Aruba).
  3. Add Required Domains: Add the specific Google and Facebook authentication domains (e.g., accounts.google.com) to the walled garden. Crucially, add wildcard entries for the CDNs that serve the login page assets (e.g., *.gstatic.com).
  4. Implement Automated Updates: Because these providers change their IP ranges frequently, configure the controller to use wildcard domain snooping rather than static IP whitelisting.
Examiner's Commentary: The failure of social login while standard email login succeeds is the definitive symptom of an incomplete walled garden. The expert approach here is not just fixing the immediate missing domain, but implementing wildcard domain snooping to prevent the issue from recurring when the identity provider updates their infrastructure.

Practice Questions

Q1. A retail venue reports that their captive portal works perfectly for guests using standard email registration, but guests attempting to use the 'Log in with Facebook' option experience a blank white screen after tapping the button. What is the most likely architectural cause?

Hint: Consider what network resources the unauthenticated device needs to reach to render the Facebook login prompt.

View model answer

The venue has an incomplete walled garden. The wireless gateway is blocking the unauthenticated device from reaching Facebook's OAuth domains or CDN infrastructure. The IT team must update the pre-authentication access control list to include all required wildcard domains for Facebook authentication.

Q2. You are designing the guest WiFi architecture for a major football stadium. The venue holds 60,000 fans, and matches last approximately 3 hours. The current configuration uses a /16 subnet and 24-hour DHCP lease times. During the first match, thousands of fans report they cannot connect. What changes should you implement?

Hint: Calculate the total available IP addresses in the subnet versus the venue capacity, and evaluate the lifecycle of those addresses.

View model answer

The network is experiencing DHCP pool exhaustion. A /16 subnet provides 65,534 usable IP addresses, which is theoretically enough for 60,000 fans. However, with a 24-hour lease time, any device that connects briefly (e.g., staff, vendors, or fans walking past) consumes an IP address that will not be released until the next day. The solution is to reduce the DHCP lease time to 3 hours to match the venue's dwell profile, ensuring IP addresses are recycled efficiently during the event.

Q3. A hotel guest complains that the captive portal login page does not appear automatically on their laptop. When the front desk staff checks the guest's device, they notice a corporate VPN client is running. Why does the VPN prevent the portal from loading?

Hint: Consider how a VPN routes traffic and how the gateway intercepts the captive portal probe.

View model answer

The VPN encrypts all traffic from the laptop and attempts to route it through a secure tunnel to the corporate server. Because the traffic is encrypted, the local wireless gateway cannot inspect it, cannot identify the unencrypted HTTP canary probe, and therefore cannot issue the HTTP 302 redirect required to trigger the captive portal. The guest must disable the VPN, authenticate via the portal, and then re-enable the VPN.