Xiaomi Wireless Router AC1200 - Xiaomi | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Xiaomi

Xiaomi Wireless Router AC1200

SKU: DVB4330GL
R 609.00 R 779.00
You save R 170.00 (22%)
In Stock
You save R 170.00 (22% off)

With the Xiaomi Dual Band AC1200 Router, you can enjoy a wireless dual band speed of 1167 Mbps for a faster and smoother online experience. The Xiaomi Router supports Smart Join, which combines the 2.4GHz and 5GHz bands into a single Wi-Fi name. This eliminates uncertainty about which Wi-Fi network...

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

Frequently Bought Together

With the Xiaomi Dual Band AC1200 Router, you can enjoy a wireless dual band speed of 1167 Mbps for a faster and smoother online experience. The Xiaomi Router supports Smart Join, which combines the 2.4GHz and 5GHz bands into a single Wi-Fi name. This eliminates uncertainty about which Wi-Fi network to join. The 2.4GHz band delivers better performance through walls, while the 5GHz band provides faster speeds. A dual-band terminal chooses the best frequency band automatically.

4 precision-tested external omnidirectional antennas with a carefully designed internal structure and configuration significantly enhance transmission performance, especially in complicated situations. A carefully prepared metal substrate is coupled with nanomaterials with superior thermal radiation properties. It has high heat absorption and heat dissipation properties, allowing it to effectively lower chip temperature and increase system stability. The Xiaomi Router includes a large 128 MB of memory, which ensures data transfer stability and connectivity of each access device.

FEATURES:

  • 4 External Antennas
  • Dual-Core CPU
  • Large 128 MB memory for stable connection of 64 devices
  • Control remotely via the Mi Home App
  • Unauthorised access prevention
  • Parental Control

SPECIFICATIONS:

  • CPU: MT7621AT MIPS dual-core 880MHz
  • ROM: 16MB
  • RAM: 128MB
  • 2.4GHz Wi-Fi: 2x2 (supports the IEEE 802.11a/b/g/n/ac, 802.3/3u protocol, maximum possible speed of 300Mbps)
  • 5GHz Wi-Fi: 2x2 (supports the IEEE 802.11a/b/g/n/ac, 802.3/3u protocol, maximum possible speed of 867Mbps)
  • Product antennas: 4 external omnidirectional antennas (two 2.4GHz antennas with maximum gain of 5dBi; two 5GHz antennas with maximum gain of 6dBi)
  • Product heat dissipation: Natural heat dissipation
  • Total interfaces: Two 10/100/1000Mbps self-adaptive LAN ports (Auto MDI/MDIX), One 10/100/1000Mbps self-adaptive WAN port (Auto MDI/MDIX)
  • LED indicator lights: 2
  • System reset buttons: 1
  • Power input interface: 1
  • Protocol standards: IEEE 802.11a/b/g/n/ac, IEEE 802.3/3u
  • Certification standards: GB9254-2008, YD/T993-1998 GB4943.1-2011
  • Dual band: 2.4GHz and 5GHz
  • Operating system: Mi Wi-Fi ROM intelligent router operating system based on a highly customised version of OpenWRT
  • Wireless security: WPA-PSK/WPA-PSK2 encryption, wireless access control (blacklist and whitelist), SSID hiding, smart unauthorised access prevention
  • Management Application: Supports web, Android, and iOS
  • Product Dimensions: 19 x 10 x 17.5 cm

WHAT’S IN THE BOX:

  • Xiaomi AC1200 Dual Band Router 4A  – White x1
  • Power Adapter x1
  • User Manual x1
Brand Xiaomi
Colour White
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

-26%
ASUS RT-BE88U Wi-Fi 7 Dual-Band 10G + 2.5G AiMesh Router
ASUS

ASUS RT-BE88U Wi-Fi 7 Dual-Band 10G + 2.5G AiMesh Router

R 7 169.00 R 9 719.00

Save R 2 550.00

Only 1 left - order soon!

-21%
ASUS BE3600 Wi-Fi 7 Dual-Band Router - Black
ASUS

ASUS BE3600 Wi-Fi 7 Dual-Band Router - Black

R 2 029.00 R 2 577.00

Save R 548.00

Out of Stock

-15%
Cudy AC1200 Wi-Fi Mini VPN Router - Orange
Cudy

Cudy AC1200 Wi-Fi Mini VPN Router - Orange

R 449.00 R 529.00

Save R 80.00

In Stock

-20%
ASUS Go Wi-Fi 7 Dual-Band Travel Router with 5G - White
ASUS

ASUS Go Wi-Fi 7 Dual-Band Travel Router with 5G - White

R 2 839.00 R 3 559.00

Save R 720.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!