Cudy 8-Port Gigabit Metal Switch - Cudy | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Cudy

Cudy 8-Port Gigabit Metal Switch

SKU: GS108
R 329.00
In Stock

The Cudy GS108 8-Port Gigabit Desktop Switch allows you to manage your home network with ease. It supports bandwidth speeds of up to 16Gbps and features 6 Ethernet ports and 2 uplink ports. Its high-speed RJ-45 connectors support any 10/100/1000Mbps Ethernet devices. For additional protection, it...

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

Frequently Bought Together

The Cudy GS108 8-Port Gigabit Desktop Switch allows you to manage your home network with ease. It supports bandwidth speeds of up to 16Gbps and features 6 Ethernet ports and 2 uplink ports. Its high-speed RJ-45 connectors support any 10/100/1000Mbps Ethernet devices.

For additional protection, it features a VLAN mode which helps isolate the ports from each other. The IEEE 802.3x flow control for Full Duplex mode and backpressure for Half Duplex mode offer increased bandwidth to alleviate network congestion, making the switch work reliably.

Used for many applications the Cudy GS105 works with IP Cameras for home, office or small businesses. It also works well with PCs, printers and access points in your home or office, making it ideal for small businesses. It even features an Extend mode for longer distances up to 250 meters.

Its simple plug and play interface makes it incredibly easy to use. Its sturdy design is made from high-quality metal. This gives you a longer service life and provides better heat dissipation, making it suitable for most environments. It also features a fanless design for silent operation.

FEATURES:

  • Complies with IEEE 802.3, IEEE 802.3u, IEEE802.3x and IEEE 802.3ab standards
  • 8 10/100/1000Mbps Auto-Negotiation, Auto-MDI/MDIX ports provide smart switching between 10Mbps, 100Mbps and 1000Mbps hardware
  • Non-blocking switching architecture enables full wire-speed packets forwarding and filtering
  • Store-and-Forward switching method
  • Supports 16K MAC address auto-learning & auto-ageing

SPECIFICATIONS:

  • Standard configuration: 8 10/100/1000M RJ-45 adaptive ports
  • Switching Capacity: 16Gbps
  • Throughput: 11.9Mpps
  • Packet Neck Scarfer: 2.5M
  • MAC Address: 1K
  • Jumbo Frame: 2K
  • Transfer Mode: Store and forward
  • MTBF: 100000 hour
  • Network protocol:
    • IEEE802.3 (10Base-T)
    • IEEE802.3u (100Base-TX)
    • IEEE802.3ab (1000Base-TX)
    • IEEE802.3x (Flow control)
  • Industry Standard
    • EMI: FCC Part 15 CISPR (EN55032) class A
    • EMS: EN61000-4-2 (ESD), EN61000-4-4 (EFT)
    • Shock: IEC 60068-2-27
    • Free Fall: IEC 60068-2-32
    • Vibration: IEC 60068-2-6
  • Network Medium:
    • 10Base-T: Cat3, 4, 5 or above UTP(≤100m)
    • 100Base-TX: Cat5  or above UTP(≤100m)
    • 1000Base-TX: Cat5 or above UTP(≤100m)
  • LED Indicators:
    • PWR (Power indicator)
    • Link (Network Link)
    • LOOP (Loop alarm)
  • DIP Switch:
  • VLAN: Port Isolation, 1-6 ports are isolated each other, all communicate with uplink port 7/8
  • Default: Default mode, Support loop alarm
  • Extend: Monitor Mode, 1-6 ports support 100M speed reduction negotiation, support 250 meters in 10Mbps/s mode,  port 7 and port 8 as an uplink port
  • Power Voltage:
    • Power Input Voltage: AC 100-240 V
    • Switch Input Voltage: DC 5V
  • Product Dimensions: 13.7 x 7.7 x 2.5 cm
  • Product Weight: 300g

WHAT'S IN THE BOX:

  • Cudy GS108 8-Port Gigabit Desktop Switch - Black x1
  • Power Adapter x1
  • Quick Install Guide x1
Brand Cudy
Colour Black
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 Fibre to Gigabit Ethernet Media Converter
Cudy

Cudy Fibre to Gigabit Ethernet Media Converter

R 229.00

In Stock

Cudy 24-Port Unmanaged POE Switch - Rack Mount
Cudy

Cudy 24-Port Unmanaged POE Switch - Rack Mount

R 1 999.00

In Stock

Cudy 8-Port Gigabit Desktop Switch
Cudy

Cudy 8-Port Gigabit Desktop Switch

R 279.00

In Stock

Cudy 24-Port Gigabit PoE+ Unmanaged Switch
Cudy

Cudy 24-Port Gigabit PoE+ Unmanaged Switch

R 3 199.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!