V-Sol 1GE + Wi-Fi ONU - V-SOL | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
V-SOL

V-Sol 1GE + Wi-Fi ONU

SKU: V2801RGW
R 499.00
In Stock

The V2801RGW (1GE+WiFi 4 XPON ONT) is an excellent choice for quick and dependable internet connection in your home or small business. This ONT is designed to suit the demands of telecom operators for FTTH and SOHO, with a high-performance Realtek chipset that supports modern IEEE 802.11 b/g/n WiFi...

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

Frequently Bought Together

The V2801RGW (1GE+WiFi 4 XPON ONT) is an excellent choice for quick and dependable internet connection in your home or small business. This ONT is designed to suit the demands of telecom operators for FTTH and SOHO, with a high-performance Realtek chipset that supports modern IEEE 802.11 b/g/n WiFi 4 technology. The V2801RGW supports robust Layer 2 and Layer 3 functionalities, guaranteeing high-quality data services for carrier-grade FTTH applications.

It is designed for high dependability and is simple to handle and maintain, making it an excellent solution for those seeking hassle-free internet access. With QoS assurances, you may enjoy seamless streaming, gaming, and browsing experiences. The ONT meets worldwide technological standards such as IEEE 802.3ah and ITU-T G.984, which ensure compatibility and performance. The V2801RGW is compact, attractive, and space-saving, making it simple to install and suitable for any situation. It also has a robust firewall to ensure network security.

FEATURES:

  • XPON Dual Mode with both EPON and GPON OLTs, ensuring flexibility and broader network integration.
  • Wi-Fi Authentication & Multiple SSID Support
  • Wide Coverage up to 300MB/s
  • Wi-Fi IEEE802.11b/g/n 2T2R 5dBi Antenna
  • DDOS Protection & Advanced Filtering
  • Layer 3 IPv4/IPv6 Support & DHCP
  • Multicast IGMP v1/v2/v3 & IGMP Snooping

SPECIFICATIONS:

  • Interface Parameters:
  • PON Interface: 1 XPON port (EPON PX20+ & GPON Class B+), SC single mode, SC/UPC connector
  • RX sensitivity: -27dBm
  • Overload optical power: -3dBm (EPON) or - 8dBm (GPON)
  • Transmission distance: 20Km
  • LAN interface: 1 x GE Auto-negotiation RJ45 ports
  • Wi-Fi interface: IEEE802.11b/g/n (TX power: 17dBm/16dBm/15dBm), 300Mbps / Supports 13 Channels
  • Hardware Parameters:
  • Power adapter: DC 12V, 1A, external AC-DC power adaptor
  • Power supply: ≤6W
  • Interfaces: 1GE+WIFI4
  • Indicators: POWER, LOS, PON, LAN, Wi-Fi
  • Storing conditions: Storing temp: -40 ~ +70°C, Storing humidity: 5 ~ 95% (non-condensing)
  • Operating condition: Operating temp: -10 ~ +55°C, Operating humidity: 5~95% (non-condensing)
  • Product Dimensions: 12 x 7.8 x 3.0 cm
  • Weight: 150g

WHAT’S IN THE BOX:

  • V-Sol 1GE Wi-Fi XPON ONT V2801RGW – White x1
  • DC12V/0.5A Power Adapter x1
  • User Manual x1
Brand V-SOL
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 AC1200 Wi-Fi Mesh Kit 2 Pack With Gigabit
Cudy

Cudy AC1200 Wi-Fi Mesh Kit 2 Pack With Gigabit

R 999.00

In Stock

V-Sol 1XPON+4GE+1POTS+CATV+USB 3.0+Wi-Fi 5 HGU ONT
V-SOL

V-Sol 1XPON+4GE+1POTS+CATV+USB 3.0+Wi-Fi 5 HGU ONT

R 799.00

Only 5 left - order soon!

Cudy AX3000 Wi-Fi 6 Mesh Kit 3 Pack - White
Cudy

Cudy AX3000 Wi-Fi 6 Mesh Kit 3 Pack - White

R 2 299.00

In Stock

Xiaomi AC1200 Whole Home Mesh Wi-Fi System (1-Pack)
Xiaomi

Xiaomi AC1200 Whole Home Mesh Wi-Fi System (1-Pack)

R 729.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!