|
|
|
|
|
by kiitos
872 days ago
|
|
> Both load balancers and backend servers can juggle millions of concurrent connections nowadays. Maybe with SO_REUSEPORT, but not in general. A TCP connection is identified by a 5-tuple that requires a unique port for both the client and server. TCP represents ports as uint16s, which means the max number of possible ports per address is 65536. tl;dr: 1 server IP address = no more than 64k incoming connections |
|