Reputation: 5561
I am running my NodeJs application on 4567 port (as it should be greater than 1024) , now I am using (non classic) vm which cannot be accessed from older Azure Portal , so how can I bind(public port 80) with this private port 4567 in new Portal.
This is how I created my Linux VM..
Upvotes: 1
Views: 791
Reputation: 1207
You can manage your endpoints from preview portal. Click VM Item ==>>select your VM name==>>Click your "Setting"==>>Select Endpoint==>>click "ADD" button==>input your public port and private portal.
[Update] Currently VM in Resource Manager Model has a Public IP (PIP) and can be reached directly from the Internet. We can see in your Resource Group an IP. Because of that, there are no more endpoints to create. Instead, you need to operate with the Network Security Group, which is a firewall on the Azure infrastructure as your picture mentioned . Also, you can RDP to your VM and modify the inbound rules. Any concerns, please let me know.
Upvotes: 0