UGREEN USB-A 3.2 Gen 1 to 2.5G Ethernet Adapter - Ugreen | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Ugreen

UGREEN USB-A 3.2 Gen 1 to 2.5G Ethernet Adapter

SKU: CM648-25051
R 624.27
In Stock

Upgrade to ultra-fast 2.5G wired networking | USB-A 3.2 Gen 1 | Plug & Play | Aluminium housing Quick Specs

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

Frequently Bought Together

Upgrade to ultra-fast 2.5G wired networking | USB-A 3.2 Gen 1 | Plug & Play | Aluminium housing

Quick Specs

  • USB-A 3.2 Gen 1 to RJ45 2.5G Ethernet Adapter
  • Up to 2.5Gbps network speeds
  • USB 3.2 Gen 1 with up to 5Gbps data transfer
  • Backward compatible with 10/100/1000Mbps Ethernet
  • Plug & Play on Windows 11 and macOS
  • Compatible with Windows, macOS, Linux and ChromeOS
  • Compact aluminium housing

Upgrade your wired network connection with the UGREEN USB-A 3.2 Gen 1 to 2.5G Ethernet Adapter. Designed for laptops, desktops and other USB-A devices without a built-in Ethernet port, it delivers stable, high-speed network performance for gaming, streaming, video conferencing and everyday productivity.

The UGREEN USB-A 3.2 Gen 1 to RJ45 2.5G Ethernet Adapter provides a reliable wired network connection with speeds of up to 2.5Gbps. Supporting USB 3.2 Gen 1 with data transfer speeds of up to 5Gbps, it delivers fast and dependable network performance while remaining backward compatible with Gigabit and Fast Ethernet networks.

Its durable aluminium housing helps dissipate heat during extended use, while the compact, lightweight design makes it easy to carry between home, office and travel. Plug & Play support on Windows 11 and macOS allows for quick setup, with driver installation required on selected Windows versions.

Features

  • Delivers wired network speeds of up to 2.5Gbps.
  • Supports 10Mbps, 100Mbps, 1000Mbps and 2500Mbps Ethernet networks.
  • USB-A 3.2 Gen 1 interface with up to 5Gbps bandwidth.
  • Backward compatible with USB 2.0 and USB 1.1.
  • Plug & Play on Windows 11 and macOS.
  • Compatible with Windows, macOS, Linux and ChromeOS.
  • Aluminium housing enhances durability and heat dissipation.
  • Compact and portable design for work, travel and everyday use.

Specs

  • Product Type: USB-A 3.2 Gen 1 to RJ45 2.5G Ethernet Adapter
  • Hardware Interface: USB-A 3.2 Gen 1, RJ45 Ethernet
  • Network Speed: Up to 2.5Gbps
  • Supported Ethernet Speeds: 10Mbps / 100Mbps / 1000Mbps / 2500Mbps
  • USB Data Transfer Speed: Up to 5Gbps
  • Data Link Protocol: IEEE 802.3
  • USB Compatibility: Backward compatible with USB 2.0 and USB 1.1
  • Plug and Play: Yes (Windows 11 and macOS)
  • Driver Support: Windows 7, Windows 8.x and Windows 10 require manual driver installation
  • Compatible Devices: Laptops, PCs, Macs, Surface Pro, Steam Deck, Routers and Switches
  • Operating System Compatibility: Windows, macOS, Linux, ChromeOS
  • Housing Material: Aluminium
  • Colour: Silver / Grey
  • Dimensions: 6.2 × 2.6 × 1.6cm
  • Weight: 60g

What's in the Box

  • 1 × UGREEN USB-A 3.2 Gen 1 to RJ45 2.5G Ethernet Adapter

Why UGREEN

UGREEN is a trusted global brand known for designing reliable, high-quality connectivity solutions that enhance everyday digital experiences. Built with premium materials and engineered for dependable performance, UGREEN products deliver practical innovation for work, entertainment and gaming.

 

Brand Ugreen
Colour Grey
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

Cudy BE6500 Tir-Band Wi-Fi7 USB 3.0 Adapter
Cudy

Cudy BE6500 Tir-Band Wi-Fi7 USB 3.0 Adapter

R 676.18

In Stock

UGREEN Cat7 FTP RJ45 Modular Plugs (10 Pieces)
Ugreen

UGREEN Cat7 FTP RJ45 Modular Plugs (10 Pieces)

R 136.32

Out of Stock

UGREEN RJ45 Splitter Adapter 2 Pack (Black)
Ugreen

UGREEN RJ45 Splitter Adapter 2 Pack (Black)

R 136.32

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!