Results 1 to 2 of 2
We plan on installing a fast private LAN shared only by our servers via a 2nd NIC.
Basically, a server will "speak" (master) and all others will "listen" (slaves x ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 11-29-2009 #1Just Joined!
- Join Date
- Nov 2009
- Posts
- 3
UDP question
We plan on installing a fast private LAN shared only by our servers via a 2nd NIC.
Basically, a server will "speak" (master) and all others will "listen" (slaves x 4).
Initially we thought about implementing a common tcp-ip algorithm between master and slaves, but after 2nd thoughts, an UDP based algorithm could be better:
- the master broadcasts packets to the whole LAN (instead of slave by slave sending).
- we would implement a simple re-send mechanism in case of missing packet (but probability of lost packets should be low)
Our question is related to our strategy relevancy:
- is the TCP protocol usually taken care of by the NIC itself (re-send mechanism), or by the Linux driver? (talking about recent NICs, say, since 2008 )
If it is the driver, we'd probably better use UDP and implement a simpler re-send mechanism, without the overhead of TCP.
- 11-30-2009 #2
It will not be handled by the NIC card itself. The NIC card does not know what happens at the IP layer and above.


Reply With Quote
