@cm said:
though i have to add we've noticed some issues on a network lately using many MoL devices and streaming over ethernet simultaneously, though gigabit. my assumption is that because MoL uses UDP instead of TCP (in simple terms: UDP does not garantee an ethernet-packet to be delivered), but this has to be checked in detail ...
christian
The problem you're experiencing with latency is not UDP (Midi-Over-Lan is TCP) but is likely due to your networking hardware. First, make sure that you are using a switch, and
not a hub, because hubs broadcast all incoming data to every connected node, whereas a switch will make sure the data is routed to the correct destination. Hub's can cause severe packet collision which results in poor performance.
Second, make sure the switch you are using operates on Layer 2 (reffering to TCP/IP) and not a Layer 3. The difference here is that Layer 2 does not look at the actual data and only routes packets based on a computer's MAC address, whereas Layer 3 switches route based on reading packet headers. While Layer 3 sorting is more accurate, it slows down traffic significantly and is generally not needed.
Finally, make sure you are using a professional router. I reccomend Cisco's Gigabit Catylist switches. As well as operating on Layer 2, Cisco takes special care to ensure optimum bandwidth through innovative features and technologies. A 24-port gigabit switch runs around $900.00
That should clear up most of your latency problems.