In my project, on-prem system(multiple nodes) connecting to Azure cloud system using single private endpoint. Azure cloud system has multiple nodes and one private endpoint created for all the nodes.
My service runs on all the nodes on Azure cloud system on the same port number 13231. Configuration looks like below.
Private endpoint: 10.0.0.1
Target System with 4 nodes:
Node1: Service runs on port number 13231
Node2: Service runs on port number 13231
Node3: Service runs on port number 13231
Node4: Service runs on port number 13231
Source system will use sockets to connect to all the target nodes using port number and private endpoint. Since private endpoint and port number is same, socket connection always established to Node1. But in our project we wanted to connect to services running on all the nodes on target system. Is there any way to do this? Please help us.
Thanks in advance.