We have requirement where we are asked to create private link. This inturn requires internal load balancer which we created on top of VM.
Now when through bastion I telnet the required ssh and custom port I am able to do that.
azureuser@vm-bastion:~$ telnet 10.1.0.4 8007
Trying 10.1.0.4...
Connected to 10.1.0.4.
Escape character is '^]'.
But the moment I try to do that through internal load balancer IP. It fails
azureuser@vm-bastion:~$ telnet 10.1.0.5 8007
Trying 10.1.0.5...
Connected to 10.1.0.5.
Escape character is '^]'.
Connection closed by foreign host.
Please can you help fix this?