Skip to main content

What Is MAC Address Authentication? When to Use It and When to Avoid It

This authoritative technical reference guide covers MAC address authentication in enterprise WiFi environments — how RADIUS-based MAC authentication works at Layer 2, its inherent security vulnerabilities (including MAC spoofing and the impact of OS-level MAC randomisation), and the precise operational contexts where it remains a valid tool for managing IoT and headless devices. It provides actionable deployment guidance for IT managers and network architects across hospitality, retail, healthcare, and public-sector venues, with real-world worked examples, decision frameworks, and integration context for Purple's guest WiFi and analytics platform.

📖 8 min read📝 1,899 words🔧 2 worked examples4 practice questions📚 10 key definitions

Listen to this guide

View podcast transcript
Welcome to the Executive Briefing. I'm your host, and today we are diving into a topic that plagues almost every enterprise network architect: MAC Address Authentication. What is it, when is it a necessary operational tool, and when is it a massive security liability? Let's start with the context. If you manage IT for a large venue — say, a 500-room hotel, a retail chain, or a major stadium — you are dealing with an explosion of devices. I'm not just talking about laptops and smartphones. I'm talking about smart TVs, environmental sensors, point-of-sale terminals, CCTV cameras, and digital signage. These are what we call headless devices. They don't have a web browser to click accept on a captive portal, and they often lack the software required to support robust enterprise security protocols like 802.1X. So, how do you get them on the network? For decades, the answer has been MAC address authentication. Let's get into the technical deep-dive. How does it actually work? Every network interface card has a unique 48-bit hardware identifier called a MAC address. In MAC authentication, the wireless access point acts as a gatekeeper. When a device tries to connect, the AP grabs its MAC address and sends it to a RADIUS server. The RADIUS server basically checks a VIP list — an allowlist database. It says, is this MAC address on the list? If yes, access granted. If no, access denied. It sounds simple and effective. But here is the critical problem: MAC authentication is fundamentally flawed from a security perspective. Why? Because MAC addresses are broadcast in cleartext over the air. Anyone sitting in your hotel lobby with a free packet sniffing tool like Wireshark can see the MAC addresses of all the devices communicating on your network. Once an attacker sees a valid MAC address — say, the MAC address of a smart TV in the lobby — they can use simple software to spoof their own laptop's MAC address to match it. The RADIUS server only checks the address; it doesn't perform any cryptographic challenge to verify the device's true identity. The attacker is instantly granted the exact same network privileges as that smart TV. Furthermore, MAC authentication provides zero encryption for the data payload. If you don't pair it with WPA2 or WPA3 encryption, all that traffic is flying through the air in plain text. This is why we say MAC authentication is network access control, not network security. So, with these vulnerabilities, why do we still use it? Because sometimes, we have no choice. Let's talk about implementation recommendations. When should you use MAC authentication? You use it exclusively for devices that cannot authenticate any other way. Those headless IoT devices, legacy operational technology, building management systems. When you do deploy it, you must follow strict mitigation strategies. First, always combine it with WPA2-PSK or WPA3-SAE to ensure the data is encrypted. Second, and most importantly, you must use strict VLAN segmentation. If a smart TV's MAC address is spoofed, that attacker should find themselves in a quarantined VLAN that can only talk to the specific internet services the TV needs. They should never be able to pivot from that IoT VLAN into your corporate network or point-of-sale systems. Now, when should you absolutely avoid MAC authentication? Number one: High-security corporate networks. If a device is handling sensitive data, it needs 802.1X with client certificates. Full stop. Number two: Guest WiFi and BYOD environments. This is a massive issue right now. Modern operating systems — iOS 14 and later, Android 10 and later — now use MAC address randomisation by default to protect user privacy. When a guest walks into your retail store, their iPhone generates a random, fake MAC address to connect to the WiFi. If you are relying on MAC authentication or MAC caching to remember returning guests so they don't have to log in to the captive portal again, it's going to fail. The next time they visit, their phone generates a new random MAC address. Your network thinks they are a brand new user. This ruins the seamless guest experience and completely skews your WiFi Analytics data, making your returning visitor metrics plummet. For guest networks, you need to move away from MAC caching and look towards modern solutions like Passpoint, or Hotspot 2.0, which uses secure certificates rather than hardware addresses to identify returning users. Let's move to a rapid-fire Q and A based on common client scenarios. Question one: Can I use MAC authentication for our new fleet of corporate laptops to save time on deployment? Answer: Absolutely not. Corporate laptops support 802.1X. Using MAC authentication for them downgrades your security posture unnecessarily and exposes corporate data to spoofing attacks. Question two: We have legacy medical equipment that only supports open networks and MAC filtering. How do we secure it? Answer: This is a tough spot, common in healthcare. If the device cannot support encryption, you must rely entirely on extreme network segmentation. Place those devices on a dedicated, isolated VLAN with aggressive firewall rules that only allow traffic to the specific internal server they need to function. Monitor that VLAN heavily for anomalous traffic patterns. Question three: Does Purple support MAC authentication? Answer: Yes, Purple's platform can handle MAC authentication for your IoT devices, routing them to the appropriate VLANs, while simultaneously providing secure, compliant captive portals for your guest traffic. It's about unified management of different authentication types across your entire venue. To summarise: MAC authentication is a necessary operational tool for the IoT era, but it is not a security protocol. Use it only for headless devices that give you no other option. Never use it for user devices or guest networks due to MAC randomisation. And when you must use it, always pair it with encryption and ruthless VLAN segmentation. Treat every MAC-authenticated device as a potential vulnerability, contain it, and you can maintain both operational efficiency and a strong security posture. Thank you for listening to the Executive Briefing.

header_image.png

Executive Summary

For enterprise IT leaders managing complex venues — from expansive hotel properties and retail chains to stadiums and public-sector facilities — securing network access for an exploding number of unmanaged devices is a critical operational challenge. MAC address authentication, while fundamentally limited as a standalone security protocol, remains a necessary mechanism for onboarding IoT devices, legacy hardware, and headless systems that cannot support 802.1X or captive portals.

This guide dissects the architecture of MAC-based RADIUS authentication, evaluating its operational utility against its inherent security vulnerabilities. We cover exactly when to deploy MAC authentication to streamline operations, when to avoid it to mitigate risk, and how modern enterprise WiFi platforms integrate these controls to maintain robust security postures without sacrificing connectivity. The core principle: MAC authentication is a network access control mechanism, not a security protocol. Deploy it accordingly.


Technical Deep-Dive

How MAC Address Authentication Works

MAC (Media Access Control) address authentication operates at Layer 2 of the OSI model. Unlike IEEE 802.1X, which requires a supplicant on the client device to negotiate credentials using EAP methods such as PEAP-MSCHAPv2 or EAP-TLS, MAC authentication relies solely on the device's hardware address as both the identifier and the authenticator.

The authentication sequence proceeds as follows. When a device attempts to associate with a wireless access point (AP), the AP intercepts the association request and extracts the client's MAC address — a unique 48-bit identifier assigned to the network interface controller (NIC) by the manufacturer. The AP, acting as a RADIUS client, forwards an Access-Request message to the RADIUS server. In a typical implementation, the MAC address is submitted as both the username and password, often formatted without delimiters (e.g., A4CF12388E7F), though vendor implementations vary. The RADIUS server queries its backend — commonly an LDAP directory, Active Directory, or a dedicated identity store — to verify whether the MAC address exists in an allowlist. A match returns an Access-Accept message, and the AP grants network access, optionally assigning a specific VLAN. No match returns an Access-Reject, and the device is denied association or placed in a restricted quarantine VLAN.

mac_auth_flow_diagram.png

Security Limitations and Vulnerabilities

The fundamental weakness of MAC authentication is that MAC addresses are transmitted in cleartext within IEEE 802.11 management frames. Any actor with a basic packet analyser — Wireshark, Kismet, or similar — can passively capture legitimate MAC addresses communicating on the network without any active intrusion. Once a valid MAC address is identified, the attacker uses tools such as macchanger (Linux) or built-in OS utilities to spoof their own NIC to match the captured address.

Because the RADIUS server performs no cryptographic challenge-response — it only checks whether the string matches a database entry — the spoofed device is granted identical network privileges to the legitimate device. This is not a theoretical attack; it requires no specialist knowledge and takes under two minutes to execute.

Furthermore, MAC authentication provides no encryption for the data payload. Unless the SSID is secured with WPA2-PSK, WPA3-SAE, or Opportunistic Wireless Encryption (OWE), all traffic remains vulnerable to interception. For this reason, MAC authentication must always be understood as a form of network access control (NAC), not a security boundary.

A further operational complication has emerged with the widespread adoption of MAC address randomisation. Apple introduced per-network randomised MAC addresses in iOS 14 (2020), and Android followed with Android 10. Windows 11 enables randomisation by default. When a consumer device connects to a network, it presents a randomised, temporary MAC address rather than its hardware-burned address. This directly breaks any system that relies on MAC addresses to identify or authenticate returning users — including MAC caching for captive portal bypass on Guest WiFi networks.


Implementation Guide

When to Use MAC Authentication

MAC authentication is appropriate exclusively for device classes that lack the capability to authenticate via more robust methods. The primary use cases are:

Device Class Examples Rationale
Headless IoT devices Smart TVs, CCTV cameras, environmental sensors No browser or supplicant capability
Operational Technology (OT) HVAC controllers, BMS, access control panels Legacy protocols, no 802.1X support
Legacy POS terminals Older retail payment terminals WPA2-PSK only; MAC filtering adds a weak secondary layer
Managed device fleets Printers, VoIP handsets, barcode scanners Stable, known MAC addresses; centrally managed
Temporary event equipment AV equipment, event tablets Short-term, controlled deployment

For Retail environments, this typically covers the back-of-house operational network: stock management scanners, digital price tags, and building automation systems. For Hospitality , it covers in-room entertainment systems, smart thermostats, and IP telephony handsets. For Healthcare , it covers infusion pumps, patient monitoring equipment, and legacy diagnostic devices.

mac_auth_use_case_matrix.png

When to Avoid MAC Authentication

IT architects must actively avoid MAC authentication in several critical scenarios:

Guest WiFi and BYOD Networks. This is the most operationally significant issue for venue operators today. Modern mobile operating systems randomise MAC addresses by default. If a Guest WiFi deployment relies on MAC caching to provide seamless re-authentication for returning visitors, it will fail for the majority of modern devices. The guest's device presents a new random MAC on each visit, the network treats them as a new user, and they are forced through the captive portal every time. This degrades the user experience and corrupts the returning visitor data in WiFi Analytics platforms. The solution is Passpoint (Hotspot 2.0) or a secure captive portal with persistent session tokens.

High-Security Corporate Networks. Any network segment handling sensitive corporate data must use 802.1X with EAP-TLS (certificate-based) or PEAP-MSCHAPv2 at minimum. For detailed deployment guidance, see How to Set Up Enterprise WiFi on iOS and macOS with 802.1X . MAC authentication provides no meaningful protection against insider threats or targeted attacks on corporate infrastructure.

PCI DSS-Regulated Environments. PCI DSS v4.0 Requirement 8 mandates strong authentication controls for all systems in the cardholder data environment (CDE). MAC authentication does not meet the definition of strong authentication and cannot be used as a primary access control for any system that touches payment data. VLAN segmentation can isolate MAC-authenticated devices from the CDE, but the payment network itself must use 802.1X or equivalent.

GDPR-Regulated Data Environments. Storing MAC addresses as personal data identifiers (which they can be, under GDPR Article 4) requires a lawful basis and appropriate security measures. Using MAC addresses as authentication credentials on networks that process personal data creates both a security and a compliance exposure.

Deployment Best Practices

When implementing MAC authentication for necessary IoT device classes, the following vendor-neutral practices are non-negotiable:

VLAN Segmentation. Never place MAC-authenticated devices on the same VLAN as corporate users, servers, or payment systems. Assign them to a dedicated IoT VLAN with strict firewall ACLs limiting access only to the specific services they require. This is the single most important compensating control. For further guidance on network-level security architecture, see Access Point Security: Your 2026 Enterprise Guide and Protect Your Network with Strong DNS and Security .

Combine with WPA2/WPA3 Encryption. Always configure the SSID with WPA2-PSK or WPA3-SAE to encrypt the wireless payload. MAC authentication controls who can join the network; encryption protects what they transmit.

Device Profiling and Anomaly Detection. Deploy NAC solutions that incorporate device profiling. If a device authenticates with the MAC address of a registered smart TV but exhibits the traffic patterns of a Windows workstation (DNS queries, SMB traffic, HTTP browsing), the system should dynamically quarantine it pending investigation.

Allowlist Lifecycle Management. Maintain a strict lifecycle for the MAC allowlist. Decommissioned devices must be removed promptly. Stale entries are a direct attack vector for spoofing. Automate the audit process where possible, flagging MAC entries that have not been seen on the network for more than 90 days.

Separate SSIDs per Device Class. Avoid mixing IoT devices and user devices on the same SSID. Use dedicated SSIDs for IoT, corporate, and guest traffic, each mapped to its own VLAN with appropriate security policies.


Best Practices

The following table summarises the recommended authentication method by device class and compliance context:

Scenario Recommended Auth Method MAC Auth Role
Corporate laptops and smartphones 802.1X (EAP-TLS or PEAP) None
Guest smartphones and tablets Captive portal / Passpoint None (MAC randomisation makes it unreliable)
Headless IoT (cameras, sensors) MAC Auth + WPA2/3-PSK Primary (only viable option)
Legacy POS terminals MAC Auth + WPA2-PSK + VLAN isolation Secondary (compensating control)
Medical devices (HIPAA) 802.1X where possible; MAC Auth + strict VLAN if not Last resort with maximum segmentation
Event/temporary devices MAC Auth with time-limited VLAN access Appropriate for short-term, controlled deployment

For organisations operating across multiple sectors, including Transport hubs and public-sector facilities, the principle remains consistent: authenticate the device class with the strongest method it supports, and compensate for weaker methods with network-level controls.


Troubleshooting & Risk Mitigation

Symptom: MAC-authenticated devices intermittently fail to connect. Root cause: The device's NIC firmware may be generating randomised or locally administered MAC addresses. Verify the device is configured to use its burned-in hardware MAC. Check the RADIUS server logs for Access-Reject messages and cross-reference against the allowlist format (some RADIUS servers require colon-separated format AA:BB:CC:DD:EE:FF; others require no delimiters).

Symptom: Guest returning visitor metrics are declining despite stable footfall. Root cause: MAC randomisation on iOS 14+/Android 10+ devices. The MAC caching mechanism is no longer reliable for modern consumer devices. Transition to session-token-based re-authentication or Passpoint to restore accurate WiFi Analytics data.

Symptom: Unexpected devices appearing on the IoT VLAN. Root cause: MAC spoofing or an allowlist that has not been audited recently. Implement device profiling to detect mismatches between the expected device behaviour and actual traffic patterns. Review RADIUS accounting logs for unusual session durations or data volumes.

Symptom: RADIUS server performance degradation during peak hours. Root cause: High volume of Access-Request messages from a large IoT fleet. Implement RADIUS proxy caching or a dedicated RADIUS instance for MAC authentication to offload the primary authentication server handling 802.1X.


ROI & Business Impact

Deploying MAC authentication strategically — rather than broadly — directly impacts both operational efficiency and security posture. For a large hospitality venue managing 2,000+ in-room IoT devices, automating the onboarding of smart TVs, thermostats, and IP phones via a pre-provisioned MAC allowlist eliminates the need for manual per-device configuration, reducing deployment time by an estimated 60–70% compared to manual credential entry. Helpdesk tickets related to IoT connectivity typically fall by 35–45% when devices are consistently assigned to the correct VLAN via RADIUS attributes.

Conversely, attempting to use MAC authentication for guest networks creates measurable negative outcomes. Venues that rely on MAC caching for Captive Portal bypass report returning visitor identification rates dropping from 70–80% to below 20% on networks where the majority of users have modern iOS or Android devices. This directly undermines the ROI of the Guest WiFi Marketing & Analytics Platform , where returning visitor data drives personalised marketing campaigns and loyalty engagement.

The business case is clear: invest in the right authentication mechanism for each device class. MAC authentication for IoT devices reduces operational overhead. Secure Captive Portals and Passpoint for guest devices protect analytics integrity and compliance posture. The two should never be conflated.

Key Definitions

MAC Address (Media Access Control Address)

A unique 48-bit hardware identifier assigned to a network interface controller (NIC) by the manufacturer, typically represented as six pairs of hexadecimal digits (e.g., A4:CF:12:38:8E:7F).

Used in MAC authentication as both the username and password submitted to the RADIUS server. Its cleartext transmission in 802.11 management frames makes it trivially capturable.

RADIUS (Remote Authentication Dial-In User Service)

A networking protocol providing centralised Authentication, Authorisation, and Accounting (AAA) management for users and devices connecting to a network service.

The server-side component of MAC authentication. It receives Access-Request messages from the access point, queries the MAC allowlist, and returns Access-Accept or Access-Reject responses.

MAC Spoofing

The act of altering the factory-assigned MAC address of a network interface to impersonate another device on the network.

The primary attack vector against MAC authentication. Requires no specialist tools or knowledge — standard OS utilities or freely available software (e.g., macchanger on Linux) can accomplish it in under two minutes.

MAC Address Randomisation

A privacy feature in modern operating systems (iOS 14+, Android 10+, Windows 11) that generates a temporary, per-network random MAC address when connecting to WiFi, rather than using the device's hardware-burned address.

The reason MAC authentication and MAC caching fail for modern consumer devices on guest networks. Directly impacts returning visitor analytics and seamless re-authentication workflows.

Headless Device

A computing device that operates without a monitor, graphical user interface, keyboard, or other input peripherals.

The primary legitimate use case for MAC authentication. Headless devices (smart TVs, IP cameras, sensors) cannot interact with captive portals or input 802.1X credentials, making MAC authentication the only viable onboarding mechanism.

VLAN Segmentation

The practice of logically dividing a physical network into multiple isolated virtual networks (VLANs), each with its own traffic policies and firewall rules.

The critical compensating control for MAC authentication deployments. By confining MAC-authenticated devices to a restricted VLAN, the blast radius of a successful MAC spoofing attack is contained.

IEEE 802.1X

An IEEE standard for port-based network access control that provides cryptographic authentication using the Extensible Authentication Protocol (EAP), requiring a supplicant on the client device, an authenticator (the AP), and an authentication server (RADIUS).

The secure alternative to MAC authentication for all capable devices. Should be the default authentication method for corporate devices, managed endpoints, and any device handling sensitive data.

Passpoint (Hotspot 2.0)

A Wi-Fi Alliance certification programme (based on IEEE 802.11u) that enables automatic, secure authentication to WiFi networks using digital certificates or SIM credentials, without requiring captive portal interaction.

The strategic replacement for MAC caching on guest networks. Provides seamless re-authentication for returning users without relying on MAC addresses, resolving the MAC randomisation problem.

Network Access Control (NAC)

A security approach that enforces policy on devices seeking to access network resources, including pre-admission checks (device health, authentication) and post-admission monitoring (traffic behaviour, anomaly detection).

The broader category under which MAC authentication falls. MAC authentication is a basic form of NAC; enterprise deployments should layer it with device profiling and anomaly detection for meaningful security value.

WPA3-SAE (Simultaneous Authentication of Equals)

The authentication handshake used in WPA3 Personal mode, replacing the WPA2 four-way handshake with a more secure Dragonfly key exchange that is resistant to offline dictionary attacks.

The recommended encryption standard to pair with MAC authentication on IoT SSIDs, ensuring that even if a device's MAC is spoofed, the attacker still needs the correct PSK to decrypt the traffic.

Worked Examples

A national retail chain is deploying 500 new digital signage displays across its stores. The displays run a stripped-down Linux OS that does not support 802.1X supplicants or captive portal interactions. The network architect needs to connect them securely without disrupting the corporate or guest networks.

Deploy a dedicated SSID exclusively for the digital signage fleet, secured with WPA3-SAE (or WPA2-PSK if WPA3 is unsupported by the display hardware). Enable MAC address authentication on this SSID. Pre-register all 500 MAC addresses in the central RADIUS server's allowlist, sourced from the device procurement manifest. Configure the RADIUS server to assign all authenticated displays to a dedicated IoT VLAN (e.g., VLAN 50). Apply strict firewall ACLs on VLAN 50 permitting only outbound HTTPS traffic to the specific CMS cloud endpoint and NTP server. Block all inbound connections and all lateral traffic to other VLANs. Schedule a quarterly RADIUS allowlist audit to remove decommissioned display entries.

Examiner's Commentary: This approach correctly layers MAC authentication (access control) with WPA3 (encryption) and VLAN segmentation (containment). Even if an attacker spoofs a display's MAC address, they are confined to a VLAN with no access to corporate systems or payment infrastructure. The quarterly audit prevents allowlist bloat from becoming a long-term attack surface. The key architectural principle: MAC authentication is the gate; VLAN segmentation is the fence.

A 400-room hotel is reporting that returning guests are being forced through the captive portal on every visit, despite the portal being configured to remember devices for 90 days using MAC address caching. The guest WiFi network has been operating this way for three years without issues, but complaints have increased sharply over the past 18 months.

The root cause is MAC address randomisation, introduced as a default behaviour in iOS 14 (September 2020) and Android 10. The 18-month timeline aligns with the widespread adoption of these OS versions across the guest base. The MAC caching mechanism is no longer reliable for modern consumer devices. The immediate fix is to remove MAC caching as the re-authentication mechanism and replace it with a persistent session token stored in the captive portal backend, keyed to the user's email address or loyalty account rather than their MAC address. The medium-term solution is to deploy Passpoint (Hotspot 2.0) credentials, which use cryptographic certificates to identify returning users regardless of MAC address, providing seamless re-authentication without a captive portal interaction.

Examiner's Commentary: This scenario is now the most common guest WiFi support issue for hospitality IT teams. The solution correctly identifies MAC randomisation as the structural cause rather than a configuration error. The two-stage remediation — session tokens as an immediate fix, Passpoint as the strategic upgrade — is the industry-standard response. Critically, this also restores the integrity of WiFi Analytics returning visitor data, which is directly impacted by the MAC randomisation problem.

Practice Questions

Q1. A stadium operations director wants to deploy 200 wireless point-of-sale (POS) terminals for concession vendors. The terminals only support WPA2-PSK and MAC authentication. The director suggests placing them on the main corporate SSID to simplify network management. What is your recommendation, and what are the compliance implications?

Hint: Consider PCI DSS Requirement 8 (strong authentication) and the network segmentation requirements for cardholder data environments.

View model answer

Reject the proposal immediately. Placing POS terminals on the corporate SSID violates PCI DSS network segmentation requirements and creates a direct path from a MAC-spoofable device into the corporate network. The correct architecture is: create a dedicated SSID for POS terminals, secured with WPA2-PSK and MAC authentication, mapped to a dedicated POS VLAN. Apply firewall rules that permit only outbound traffic to the payment gateway processor over HTTPS (port 443). Block all inter-VLAN routing between the POS VLAN and the corporate or guest VLANs. Document this segmentation for the PCI DSS QSA audit. The MAC authentication provides a basic access control layer; the VLAN and firewall rules provide the actual security boundary.

Q2. Your WiFi Analytics dashboard shows that returning visitor identification rates have dropped from 74% to 18% over the past 12 months, despite stable foot traffic at your retail venues. The network uses MAC address caching to bypass the captive portal for returning visitors. What is the root cause, and what is the remediation path?

Hint: Consider the timeline of major mobile OS updates and their privacy features.

View model answer

The root cause is MAC address randomisation. iOS 14 (September 2020) and Android 10 introduced per-network randomised MAC addresses as a default privacy feature. As the guest device base has upgraded to these OS versions, the MAC caching mechanism has progressively failed, causing the analytics platform to treat returning visitors as new users. Immediate remediation: replace MAC caching with a persistent session token system, where the captive portal stores a long-lived cookie or token keyed to the user's email address or loyalty account, allowing the portal to recognise returning users without relying on MAC addresses. Strategic remediation: deploy Passpoint (Hotspot 2.0) to provide seamless, certificate-based re-authentication that is entirely independent of MAC addresses.

Q3. A hospital IT manager needs to connect 50 legacy infusion pumps to the clinical WiFi network. The pumps cannot handle captive portals or 802.1X supplicants. The manager plans to deploy an open SSID with MAC authentication as the sole access control. What is the critical security flaw, and how should the architecture be corrected?

Hint: MAC authentication controls access; it does not protect data in transit. Consider HIPAA Security Rule requirements for data encryption.

View model answer

The critical flaw is the absence of wireless encryption. An open SSID transmits all data in cleartext over the air. Any attacker within radio range can capture all traffic from the infusion pumps — including patient data, dosage commands, and device telemetry — using a standard packet analyser. This is a direct HIPAA Security Rule violation (45 CFR § 164.312(e)(2)(ii) — encryption of ePHI in transit). The corrected architecture must use WPA2-PSK (or WPA3-SAE) on the SSID in addition to MAC authentication, ensuring the wireless payload is encrypted. The pumps must be placed on a dedicated clinical device VLAN with firewall rules restricting traffic to the specific clinical information system they communicate with. The PSK should be complex, stored in the network management system, and rotated on a defined schedule.

Q4. A conference centre IT team is planning to deploy MAC authentication across all SSIDs — including the guest network, the exhibitor network, and the AV equipment network — to simplify management with a single authentication approach. Evaluate this proposal.

Hint: Consider the different device classes and user types on each network, and the impact of MAC randomisation on the guest network.

View model answer

The proposal is inappropriate for two of the three networks. For the AV equipment network (headless devices, stable MAC addresses), MAC authentication is a valid and practical approach — pair it with WPA2/3 and a dedicated VLAN. For the exhibitor network (corporate laptops, tablets), MAC authentication is insufficient; exhibitors' devices support 802.1X and should be onboarded via a secure certificate or credential-based method. For the guest network (consumer smartphones and tablets), MAC authentication is actively counterproductive due to MAC randomisation — it will fail for the majority of modern devices and degrade the guest experience. The correct architecture uses three distinct authentication methods: MAC auth for AV equipment, 802.1X or a secure portal for exhibitors, and a captive portal with session-token-based re-authentication for guests.

What Is MAC Address Authentication? When to Use It and When to Avoid It | Technical Guides | Purple