Networking – Will an Ethernet Splitter Work?

ethernetnetworkingsplitter

I have a room with only one Ethernet cable going there, but I would like to connect two devices on it. Is an Ethernet splitter suitable for that? I am talking about something like this:

image of splitter

In theory it should work like an Ethernet hub, which only amplifies the signal, but send it to all clients (like a splitter would). I've never used it, so I need confirmation that it work or not before I'll buy it.

Best Answer

TL;DR. Buy a switch. Do not use Ethernet Splitters, EVER.

Midlan posted a link to this schematic:

Parallel Wired 'Ethernet splitter'

'Parallel wired' means that if you use a device like that at best you will get a load of packet collisions because you have wired the two computers (Jacks 1&2) TX pins (Pair 3, Pins 1&2) together, and the RX (Pair 2, Pins 3&6) pins together.Ethernet Wiring

Twisted pair Ethernet, 10base-T, 100base-TX, 1000bast-T, etc. all need to be connected end-to-end. At each there is a transmission (TX) pair, and reception (RX) pair. This is how a cross-over cable works.

Indeed the simplest Ethernet network using twisted pair media is using a crossover cable between two computers:

 -----------------------------------------
 |           Computer-A                  |
 |           568A                        |      
 | Pair 3 - Pin 1 - TX+ Green on White   +-------\
 | Pair 3 - Pin 2 - TX- Green            +=======|==\
 | Pair 2 - Pin 3 - RX+ Orange on White  +-\     |  |
 | Pair 1 - Pin 4 - B+  Blue             + |     |  |
 | Pair 1 - Pin 5 - B-  Blue on White    + |     |  |
 | Pair 2 - Pin 6 - RX- Orange           +=|==\  |  |
 | Pair 4 - Pin 7 - B+  Brown on White   + |  |  |  |
 | Pair 4 - Pin 8 - B-  Brown            + |  |  |  | 
 |                                       | |  |  |  | 
 ----------------------------------------- |  |  |  |
                                           |  |  |  |
 ----------------------------------------- |  |  |  |
 |          Computer-B                   | |  |  |  | 
 |          568B                         | |  |  |  |     
 | Pair 2 - Pin 1 - TX+ Orange on White  +-/  |  |  |
 | Pair 2 - Pin 2 - TX- Orange           +----/  |  |
 | Pair 3 - Pin 3 - RX+ Green on White   +-------/  |
 | Pair 1 - Pin 4 - B+  Blue             +          |
 | Pair 1 - Pin 5 - B-  Blue on White    +          |
 | Pair 3 - Pin 6 - RX- Green            +==========/
 | Pair 4 - Pin 7 - B+  Brown on White   +
 | Pair 4 - Pin 8 - B-  Brown            +
 |                                       |
 -----------------------------------------

As you can see, the TX pins on Computer-A are wired to the RX pins on Computer-B, and similarly, the RX pins on Computer-A are wired to the TX pins on Computer-B. (For simplicity's sake, I have not wired up pins 4,5,7 & 8, but for completeness they should be wired straight through pin 4 to 4, 5 to 5, etc.)

What your Ethernet Splitter is doing is just adding in a Computer-C beside Computer-B, so that Computer B&C's pins are wired together, pin 1 to pin 1, 2 to 2, 3 to 3 etc. At best, your devices will not work, at worst you will damage your Ethernet ports.

Computer-A could infact be a hub or a switch, but you still have the problem of Computer-B's and Computer-C's TX and RX ports being wired together.

Here is a wiring diagram for a simple (passive/unpowered) Ethernet hub: http://www.eeweb.com/blog/circuit_projects/building-a-passive-ethernet-hub

https://en.wikipedia.org/wiki/Ethernet_over_twisted_pair

Ethernet is a digital signal, and it is not like an analogue telephone signal where you can use a splitter to add in another extension. Each little wave pattern is a packet of information that is transmitted from a TX port that is intended to go a RX port. Wiring TX ports together is going to cause all sorts of weirdness.

Instead of a splitter, your best option is to add a mini-switch, but you need to be careful with your wiring topology if you already have multiple other switches in your network.

There were other search results which mapped the two unused pairs (1&4) on 100 Base-TX to pins on 1 2 3 and 6 on the second port, so you would have to use these device on each end. However, the Ethernet wire protocol has been designed to use twisted pairs in such a way that cross-talk is eliminated between the wires. Start doing non-standard, non-compliant things, and you will end up getting non-standard, non-compliant, unexpected results.

Related Question