13

I found a patch panel that splits off ethernet into multiple hosts as shown below.

Can anyone explain how this might work?

enter image description here

makerofthings7
  • 8,911
  • 34
  • 121
  • 197
  • 5
    100BASE-TX uses 2 pairs. There are 4 pairs available in the cable. Those 4 pairs are split between the 2 "outputs" on the splitter. As such, neither device connected to the "outputs" will operate at 1000BASE-TX. – joeqwerty Oct 18 '13 at 17:43
  • http://www.amazon.co.uk/LINDY-UTP-Port-Doubler-100Base-TX/dp/B000I2JVQ4#productDetails – user9517 Oct 18 '13 at 17:45
  • 1
    Be warned that there are also such splitters for telephone lines (Analog or ISDN) that look the same but that have different wiring. And not all vendors of the ethernet ones use the same wiring logic either. Things get real messy if you mix them on both ends of the UTP run. – Tonny Oct 18 '13 at 20:56

5 Answers5

18

How does it work? Like this:

Splitter wiring diagram

As Tim pointed out, it takes advantage of the fact that (100Mbit or slower) ethernet connections only use two of the pairs, so one jack can effectively carry two signals.


Of course just because it works doesn't mean it's a Good Thing.
Given the opportunity you should plan on rewiring your panel (and possibly the rest of your building) to conform to gigabit standards -- that may require dropping in an additional patch panel as yours appears to be full, but it means everyone can have gigabit speeds to their desktops, which is basically the standard these days.

It also eliminated the long dangly port-doublers and makes the patch panel neater -- always a laudable goal.

voretaq7
  • 79,879
  • 17
  • 130
  • 214
3

Wow.. Been a while since I've seen one of those.

Only half of the pairs in a standard CAT 5 / 6 cable are actively in use. If my memory serves standard network services don't use pair 1 (blue) or pair 4 (brown).

That's also why you don't see splitters like that for more than 2 cables. :)

Tim Brigham
  • 15,545
  • 10
  • 75
  • 115
  • 1
    It's technically not the cable that determines the pair usage, it's the Ethernet "standard" in use; 100BASE-TX, 1000BASE-TX, etc. – joeqwerty Oct 18 '13 at 18:02
  • PoE doesn't need separate wires. As others have mentioned, gigabit ethernet uses all 4 pairs for data, so Gigabit PoE power and data share the same wires. – Johnny Oct 18 '13 at 19:59
  • 1000base-T GigE (the dominant standard used pretty much everywhere) uses all 4 pairs. There does exist a [1000base-TX](http://en.wikipedia.org/wiki/1000BASE-TX#1000BASE-TX) standard that only requires 2 pairs, but by the time it saw the light of day, 1000base-T had already won the market. – James Sneeringer Oct 18 '13 at 22:01
3

From the product details section of the LINDY UTP Port Doubler

Our Port Doublers allow two devices to be connected using only one port of a structured cabling system. The CAT5/5e/6 cable used in a conventional Fast Ethernet network is made up of 8 conductors 4 of which are unused. The port doubler makes use of these 4 spare conductors to provide a second connection over a single cable run without any loss of performance. Port Doublers must be used in pairs by connecting one to the patch panel and the other to the wall outlet. Please note: these doublers are sold as single units not pairs. 2 x 10/100Base-TX devices to 1 port Low cost solution for adding extra connections Existing installations can be expanded quickly and easily allowing additional devices to be added temporarily or permanently No performance loss Saves adding additional cable runs Ideal for existing installations where additional cables cannot be installed easily

user9517
  • 115,471
  • 20
  • 215
  • 297
1

100BASE-TX uses 2 pairs. There are 4 pairs available in the cable. Those 4 pairs are split between the 2 "outputs" on the splitter. As such, neither device connected to the "outputs" will operate at 1000BASE-TX.

joeqwerty
  • 109,901
  • 6
  • 81
  • 172
0

If the splitter makes use of the spare pairs in a cable, the splitters need to be used in pairs to return the data to the correct pair at the other end. It is possible to connect multiple computers to one Ethernet cable in parallel since the Ethernet standards were originally bus type networks and allow for collision detection. Two computers will quite happily share one Ethernet medium.

Nick
  • 1