Monday 24 September 2018

components - Ethernet Without a Switch?



How do you wire up Ethernet electrically without a switch? An approximately equivalent phrasing of this question would be what is going on electrically inside an Ethernet Hub?


To clarify, I'm not trying to connect two computers here. I'm thinking specifically of creating a small network of microcontrollers on a single board. Can it be done without a switch or a hub through just electrical connections. This would be for 10BaseT or at most 100BaseT.



Answer



Ethernet 10baseT can work with a pure hub: just connecting all the wires together suitably, with very minimal electronics. This often also requires disabling cable autodetection and things on the communicating device side for modern cards.


Ethernet 100baseT and anything even relatively modern requires an actual switch even for "hubs" - a microcontroller and each port controlled separately.


No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...