Azure Basics Part 3 – NSG

In Part 1 we created VNet and in Part 2 we talked about how to create new VM. Once your VM is deployed, it’s ready to be used for whatever purpose you have for it. But you’ll probably want some of VMs to be accessible from outside your VNet, especially if this VM is webserver with IIS role installed.

For this we need to configure NSG – Network Security Group. NSG contains a list of Access Control List (ACL) rules that allow or deny specific traffic on your VM in your VNet. NSG can be associated with either subnet in VNet or individual VM instance where subnet rule applies to entire subnet and individual rule applies to specific VM.

In this case we’ll talk about opening port 80 (http) so your webserver can be accessed over internet. I also got lot of questions about this specific subject (in person, e-mail, forums) as a lot of people have issue setting up HTTP in ARM.

First go to ‘Virtual Machines’ in Azure portal.

1

Select VM with IIS role from list of your VMs.

2

In new tile, select ‘Network Interfaces’.

3

Click on your network interface.

4

In new tile select ‘Network Security Group’.

5

Select security group to edit.

6

In new tile, select ‘Inbound security rules’.

7

Click ‘Add’ and wait for new tile to open.

8

You need to enter parameters for new rule. First enter name for your rule (‘http’ in this case but can be anything, I just find it easier to manage when name tells me what it’s about), set priority to ‘100’, Source to ‘Any’, leave service as ‘Custom’, set protocol to ‘Any’, enter 80 for port range and set action to allow. Finally click OK and wait for few seconds (this can vary but usually it’s created under 1 minute).

9

Once your rule is created, go to your VM overview page and check your Public IP address/ DNS name.

10

Enter your IP address to browser and here it is – your IIS server is accessible from internet and ready to be used.

11

Article by Mustafa Toroman

I’m System Engineer at Authority Partners. I love to test and explore new technologies. Have over 20 active MS certificates such as MCSA for Windows Server and SQL Server, MCSE Private Cloud, Data Platform, Business Intelliegence and Server Infrastracture. Lately most interested in BI and Azure solutions. MCT since 2012. From 2016 MVP for Microsoft Azure.

Comments are closed.