we have a client who has a standard load balancer, frontend ip , health probe , 2 Vms in the backend pool, and a health probe.
The load balancer is configured correctly.
if the user access the load balancer from another VM then it correctly load the page from the backend VM.
But if the user access the load balancer from one of the backend VM then its not reachable. e.g below:
backendVM1# traceroute -T -p 0 10.10.10.11 (load balancer ip)
1
2
3
.....
30
backendVM1# curl -v http://10.10.10.11:80/index.html
Trying 10.10.10.11...
TCP_NODELAY set
what can we do to solve this issue?
Thanks