Labs · · 3 min read

Lab sec-10 - Wireless Security WPA2 vs WPA3 (Concept Lab)

Lab sec-10 - Wireless Security WPA2 vs WPA3 (Concept Lab) - PingLabz Labs article title card

The CCNA exam covers wireless security at a concept level. WPA2 has been the dominant Wi-Fi security standard since 2004; WPA3 (announced 2018) addresses several known weaknesses and is now mandatory for new Wi-Fi 6 certification. This lab is concept-only - a comparison of the two standards. Hands-on wireless labs need a WLC, an AP, and a wireless client - out of scope for CML Free.

What you will learn

  • The five Wi-Fi security generations (WEP, WPA, WPA2, WPA3, OWE)
  • Why WPA2 was broken (KRACK attack) and how WPA3 fixed it
  • Personal (PSK) vs Enterprise (802.1X) modes
  • Forward secrecy and why it matters
  • OWE (Opportunistic Wireless Encryption) for open networks

What this lab does NOT cover

  • Hands-on WLC configuration (out of CML Free scope)
  • Specific cryptographic primitives in depth
  • Wireless attack tooling (aircrack-ng, etc.)

Wi-Fi security history

WEP
Year1999
Status in 2026
Broken since 2001. NEVER use.
WPA (TKIP)
Year2003
Status in 2026
Deprecated. Was a stopgap.
WPA2 (CCMP/AES)
Year2004
Status in 2026
Still in use. KRACK weakness (2017).
WPA3
Year2018
Status in 2026
Modern standard. Mandatory for Wi-Fi 6.
OWE
Year2018
Status in 2026
For "open" guest networks. Encrypts without authentication.

WPA2 vs WPA3 comparison

Encryption
WPA2AES-128 (CCMP)
WPA3
AES-128 (Personal) or AES-256 (Enterprise)
Authentication (Personal)
WPA2
PSK with 4-way handshake
WPA3
SAE (Simultaneous Authentication of Equals)
Authentication (Enterprise)
WPA2802.1X / EAP
WPA3
802.1X / EAP (improved)
Forward secrecy
WPA2No
WPA3Yes
Offline dictionary attacks
WPA2
Possible (4-way handshake captured)
WPA3Defeated by SAE
KRACK vulnerability
WPA2
Affected (patched, but design weakness)
WPA3Not vulnerable
Required for new Wi-Fi 6 (802.11ax)
WPA2No
WPA3Yes

The big WPA3 improvement: SAE

WPA2-Personal's 4-way handshake can be captured passively. The attacker then runs offline brute-force against the captured handshake. If the PSK is weak, the attacker recovers it - and gets retroactive access to past traffic.

WPA3-Personal replaces the 4-way handshake with SAE (Simultaneous Authentication of Equals). SAE is a dragonfly key exchange variant that:

  • Prevents offline dictionary attacks - attacker must engage the AP per attempt
  • Provides forward secrecy - even if PSK is later cracked, past traffic stays encrypted
  • Survives KRACK-class attacks

Personal mode keeps PSK-style usability (one password for the whole network) while fixing the cryptographic weaknesses.

Read next

Terminal card showing a repeating CDP native VLAN mismatch log naming Ethernet0/0 native VLAN 1 against SW2 Ethernet0/0 native VLAN 99
VLANs ·

Native VLAN Mismatch: Read the CDP Log, Fix the Trunk

%CDP-4-NATIVE_VLAN_MISMATCH hands you both interfaces and both native VLANs in one line. The real damage is underneath it: untagged frames get re-homed at the trunk boundary and two VLANs quietly become one. Captured live on IOS XE 17.18.2 in CML.