Abhi
Abhi

Reputation: 5561

How to Manage Private Public Port on Azure (Ubuntu VM)?

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.

enter image description here

enter image description here

This is how I created my Linux VM..

enter image description here

Upvotes: 1

Views: 791

Answers (1)

Will Shao - MSFT
Will Shao - MSFT

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

Related Questions