UGREEN 1-to-2 Gigabit Ethernet Splitter, 1000Mbps LAN Network Adapter - Ugreen | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Ugreen

UGREEN 1-to-2 Gigabit Ethernet Splitter, 1000Mbps LAN Network Adapter

SKU: NW301-45311
R 339.00
In Stock

The UGREEN 1-to-2 Gigabit Ethernet Splitter provides a stable, high-speed network connection, enabling two devices to share a single Ethernet port efficiently. Designed for home offices, small businesses, and entertainment setups, this splitter ensures seamless connectivity for PCs, gaming...

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

Frequently Bought Together

The UGREEN 1-to-2 Gigabit Ethernet Splitter provides a stable, high-speed network connection, enabling two devices to share a single Ethernet port efficiently. Designed for home offices, small businesses, and entertainment setups, this splitter ensures seamless connectivity for PCs, gaming consoles, smart TVs, and network devices without signal loss or interference.

Supporting speeds of up to 1000Mbps, this Gigabit LAN adapter delivers fast and reliable data transmission, making it ideal for HD streaming, online gaming, video conferencing, and large file transfers. The splitter is engineered to maintain full bandwidth performance while eliminating network congestion, ensuring a smooth online experience.

Built with a durable, shielded design, the UGREEN Ethernet Splitter features premium materials that protect against electromagnetic interference (EMI) and signal degradation. Its compact form factor allows for easy installation in tight spaces, while the plug-and-play functionality ensures hassle-free operation without the need for additional software or power sources.

Perfect for expanding wired connections in network-limited environments, the UGREEN 1-to-2 Gigabit Ethernet Splitter is an essential networking solution for users who demand efficiency, stability, and high-speed performance.

FEATURES:

  • 1-to-2 LAN Splitter: Enables two devices to share a single Ethernet port efficiently.
  • 1000Mbps Data Transmission: Supports Gigabit speeds
  • Full Bandwidth Performance: Maintains stable, high-speed connectivity
  • Shielded Design: Reduces electromagnetic interference (EMI)
  • Space-Saving Design: Small, lightweight form factor for easy placement
  • Premium Build Quality: Durable materials for long-lasting network stability.

SPECIFICATIONS:

  • Network Standards: IEEE 802.3/u/x/ab
  • InterfacePerfommance:
    • 3x10/100/1000Mbps auto-negotiation RJ45 port;
    • Auto MDl/MDIX;
    • Supports full/half duplex modes
    • MAC address entry learning and ageing
    • No-blocking forwarding at full wire speed
  • LED Indicator:
    • 1x Power indicator
    • 3x Link/Act connection status indicator
  • Transmission Medium:
    • 10Base-T: Cat 3 or later(≤100m/328ft)
    • 100Base-TX: Cat 5 orlater(≤100m/328ft)
    • 1000Base-T: Cat 5 orlater(≤100m/328ft )
  • Transfer Method: Store and forward
  • Forwarding Rate:
    • 10Mbps: 14880pps/port
    • 100Mbps: 148800pps/port
    • 1000Mbps:1488000pps/port
  • Power Input: 5.0V ⎓ 0.5A Max
  • Operating:
    • Temperature: 0°C~40°C (32°F~104°F)
    • Humidity: 10%-90%RH,non-condensing
  • Storage Temperate: -40°C~70°C (-40°F~158°F)
  • Humidity: 5%-90%RH,non-condensing

WHAT'S IN THE BOX:

  • UGREEN 1-to-2 Gigabit Ethernet Splitter, 1000Mbps LAN Network Adapter x1
Brand Ugreen
Colour -
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 24 Months
0.0
0 reviews
Login to Review

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

Related Products

UGREEN CAT6 FTP RJ45 Modular Plugs 10 Pack
Ugreen

UGREEN CAT6 FTP RJ45 Modular Plugs 10 Pack

R 29.00

In Stock

UGREEN Cat7 FTP RJ45 Modular Plugs (10 Pieces)
Ugreen

UGREEN Cat7 FTP RJ45 Modular Plugs (10 Pieces)

R 129.00

Out of Stock

UGREEN RJ45 Splitter Adapter 2 Pack (Black)
Ugreen

UGREEN RJ45 Splitter Adapter 2 Pack (Black)

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