LaserTag
LaserTag

Reputation: 3

How is response delivered if TCP load balancer / proxy terminates the connection?

It seems that (some) TCP load balancers would terminate the connection from client before sending the request to the backend server. I'm wondering what does the "terminates" mean. If it means closing the connection then how would the response be sent back to the client? Thanks!

Upvotes: 0

Views: 485

Answers (1)

Steffen Ullrich
Steffen Ullrich

Reputation: 123561

If it means closing the connection ...

No it doesn't. Terminating in this context means that the endpoint of the TCP connection from the client is the load balancer. The load balancer then creates a different connection between load balancer and server to transfer the data.

Upvotes: 0

Related Questions