Cudy AC1200 Wi-Fi Mesh Kit 2 Pack With Gigabit - Cudy | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Cudy

Cudy AC1200 Wi-Fi Mesh Kit 2 Pack With Gigabit

SKU: M1300
R 999.00
In Stock

Work and play securely with the Cudy M1300 AC1200 Gigabit Whole Home Wi-Fi System. The Cudy M1300 seamlessly connects your entire home with reliable Wi-Fi. Finally, you can stream, surf, and game from anywhere. Say goodbye to dead spots and Neck Scarfering without buying a brand-new Wi-Fi...

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

Frequently Bought Together

Work and play securely with the Cudy M1300 AC1200 Gigabit Whole Home Wi-Fi System. The Cudy M1300 seamlessly connects your entire home with reliable Wi-Fi. Finally, you can stream, surf, and game from anywhere. Say goodbye to dead spots and Neck Scarfering without buying a brand-new Wi-Fi ecosystem. The M1300 can help you create a more flexible and cost-effective network to cover your entire family.

With a built-in PPTP/L2TP/OpenVPN/WireGuard/IPSec and Zerotier VPN Client, this router can easily establish a connection to the VPN server to transport all your online data and traffic. It can be easily configured to secure it with encryption and DNS over TLS at the same time to boost security. Get secure and reliable coverage with the Cudy M1300 AC1200 Gigabit Whole Home Wi-Fi System.

FEATURES:

  • AC1200 Mesh Wi-Fi Solution
  • 867Mbps on 5GHz and 300Mbps on 2.4GHz
  • Seamless Roaming, Whole Home Coverage
  • 2 Gigabit Ethernet Ports
  • Compatible with 15 more DDNS providers
  • PPTP/L2TP/OpenVPN/WireGuard/IPSec/Zerotier VPN
  • Double Mesh Pack

SPECIFICATIONS:

  • Processor: Dual-Core Processors
  • Flash: 128Mbit (16MB)
  • DDR: 1Gbit (128MB)
  • Antenna: 2 × Internal Omni-Directional Antennas
  • Interface: 1 × 1000/100/10 Mbps WAN Port, 1 × 1000/100/10 Mbps LAN Port
  • Button: Pair Button, Reset Button
  • External Power Supply: 12V/1A
  • Wireless Standards: IEEE 802.11/ac/n/a (5GHz), IEEE 802.11/n/b/g (2.4GHz)
  • Frequency: 5GHz, 2.4GHz
  • Signal Rate: 867Mbps (5GHz), 300 Mbps (2.4GHz), Compatible with 802.11a/b/g/n/ac Wi-Fi standards
  • Transmit Power: CE: <20dBm (2.4GHz), <23dBm (5.15GHz~5.25GHz), FCC: <30dBm (2.4GHz & 5.15GHz~5.825GHz)
  • Wireless Modes: Enable/Disable Wireless Radio, WMM
  • Wireless Security: WEP, WPA/WPA2, WPA-PSK/WPA2-PSK
  • WAN Type: Dynamic IP/Static IP/PPPoE
  • DHCP: Server, DHCP Client List, Address Reservation
  • Dynamic DNS: Compatible with 15 more DDNS providers
  • Guest Network: 2.4 GHz guest network × 1, 5 GHz guest network × 1
  • NAT: Port Forwarding, Port Triggering, UPnP, DMZ
  • VPN: PPTP/ L2TP/ OpenVPN/ WireGuard/ IPSec/ Zerotier

WHAT'S IN THE BOX:

  • Cudy M1300 AC1200 Gigabit Whole Home Wi-Fi System x2
  • Power Adapter x1
  • RJ45 Ethernet Cable x1
  • Quick Installation Guide x1
Brand Cudy
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

Cudy AC1200 WiFi 4G LTE Cat4 Outdoor Router
Cudy

Cudy AC1200 WiFi 4G LTE Cat4 Outdoor Router

R 1 699.00

In Stock

V-Sol V2801SG 1GE+ XPON Optical Network Unit
V-SOL

V-Sol V2801SG 1GE+ XPON Optical Network Unit

R 299.00

In Stock

Cudy BE11000 Wi-Fi7 Gigabit Mesh Router
Cudy

Cudy BE11000 Wi-Fi7 Gigabit Mesh Router

R 2 399.00

In Stock

Xiaomi Mesh System AC1200 - 3 Pack
Xiaomi

Xiaomi Mesh System AC1200 - 3 Pack

R 2 099.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!