Intel AX210 M.2 Wifi Card Module - Giada | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Giada

Intel AX210 M.2 Wifi Card Module

SKU: AX210NGW
R 499.00
In Stock

The Intel® Wi-Fi 6E AX210 (Gig+) adapter is designed to support Wi-Fi 6E technology and related Wi-Fi Alliance certification. The product supports dual-stream Wi-Fi in the 2.4GHz, 5GHz and 6GHz bands as well as Bluetooth® 5.3. It also supports Wi-Fi 6 R2 features, including UL MU-MIMO. These new...

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

The Intel® Wi-Fi 6E AX210 (Gig+) adapter is designed to support Wi-Fi 6E technology and related Wi-Fi Alliance certification. The product supports dual-stream Wi-Fi in the 2.4GHz, 5GHz and 6GHz bands as well as Bluetooth® 5.3. It also supports Wi-Fi 6 R2 features, including UL MU-MIMO. These new features maximize the benefits of Wi-Fi 6, including Gigabit speed, ultra-low latencies, and enhanced reliability benefits across new radio frequencies exclusive to Wi-Fi 6E devices, and deliver a significant improvement in user experience in dense deployments. Combined with Intel® Core™ processors and exceptional Intel wireless innovations, the Intel® Wi-Fi 6E AX210 module can dramatically improve your connected experience at home, work, or on the go.

Intel® Wi-Fi 6E AX210 module supports legacy Wi-Fi 4, 5, 6, and Wi-Fi 6E and is designed to support Wi-Fi 6 R2 features. By implementing Wi-Fi 6E technology supporting the 6GHz band that includes 1200MHz of new contiguous spectrum (>2x compared to 5GHz) with more Gigabit Wi-Fi options and exclusivity to Wi-Fi 6 products, the Intel® Wi-Fi 6E AX210 module maximises Wi-Fi 6 and Gigabit Wi-Fi benefits, enabling greater network flexibility, faster downloads, sharing, and backups, as well as reduced latency and improved reliability.

When using Wi-Fi 6 technology with 1024QAM and 160MHz channels, the Intel® Wi-Fi 6 AX210 module can deliver nearly 3x higher peak data rates (up to 2.4Gbps) and up to 4x capacity improvement in dense or congested environments compared to Wi-Fi 5.

FEATURES:

  • Greater Network Flexibility
  • Faster Speed
  • Reduced Latency
  • Wi-Fi 6E Tri-Band 2x2 160MHz
  • Bluetooth® 5.2
  • Microsoft Windows
  • Form Factors (M.2 2230 and 1216)

SPECIFICATIONS:

  • Connector Interface: M.2: PCIe*, USB
  • Wi-Fi Alliance: Wi-Fi CERTIFIED 6 with Wi-Fi 6E, Wi-Fi CERTIFIED  a/b/g/n/ac, WMM , WMM -Power Save, WPA3 , PMF , Wi-Fi Direct , Wi-Fi Agile Multiband, Wi-Fi Location R2 HW readiness
  • IEEE WLAN Standard: IEEE 802.11-2020 and select amendments (selected feature coverage), IEEE 802.11a, b, d, e, g, h, i, k, n, r, u, v, w, ac, ax; Fine Timing Measurement based on 802.11-2016,  802.11az HW readiness
  • Bluetooth®: Bluetooth® 5.2
  • Security Methods: WPA3 personal and enterprise including WPA2 transition mode
  • Authentication Protocols: 802.1X EAP-TLS, EAP-TTLS/MSCHAPv2, PEAPv0-MSCHAPv2 (EAP-SIM, EAP-AKA, EAP-AKA’)
  • Encryption: 128-bit AES-CCMP, 256-bit AES-GCMP
  • Operating Temperature (Adapter Shield): 0°C to +80°C
  • Humidity Non-Operating: 50% to 90% RH non-condensing (at temperatures of 25°C to 35°C)
  • Operating Systems: Microsoft Windows 11, Microsoft Windows 10, Linux
  • Dimensions: M.2 2230: 22mm x 30mm x 2.4mm [1.5mm Max (Top Side)/ 0.1mm Max (Bottom Side)], M.2 1216: 12mm x 16mm x 1.7 (+-0.1) mm
  • Weight: M.2 2230: 2.83 +/– 0.3 g, M.2 1216: 0.67 +/– 0.1 g

WHAT'S IN THE BOX:

  • Intel® Wi-Fi 6E AX210 M.2 WIFI module - Green x1
Brand Giada
Colour -
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 12 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

Cudy Gigabit PCI Express Adapter
Cudy

Cudy Gigabit PCI Express Adapter

R 99.00

In Stock

Cudy 2.5Gbps PCI-E Ethernet Adapter
Cudy

Cudy 2.5Gbps PCI-E Ethernet Adapter

R 199.00

In Stock

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!