Azure Network Security Group

A Network Security Group (NSG) in Azure allows you to filter network traffic to and from Azure resources in an Azure virtual network. A network security group contains security rules that allow or deny inbound network traffic to, or outbound network traffic from, several types of Azure resources. For each rule, you can specify source and destination, port, and protocol.
[1]
NSG's can also be used to target Azure Application Security Groups, which allows for the targeting of NICS bundled as a application, rather than targeting a set of IP addresses.

NSG Security Rules

A network security group contains zero, or as many rules as desired, within Azure subscription limits. Each rule specifies the following properties:

The firewall evaluates network security group security rules by priority, using the 5-tuple information (source, source port, destination, destination port, and protocol) to either allow or deny the traffic.
[1:1]

Default Security Rules

Azure creates the following default rules in each network security group that you create:

Direction Name Priority Source Source Ports Destination Destination Ports Protocol Access
Inbound AllowVNetInBound 65000 VirtualNetwork 0-65535 VirtualNetwork 0-65535 Any Allow
Inbound AllowAzureLoadBalancerInBound 65001 AzureLoadBalancer 0-65535 0.0.0.0/0 0-65535 Any Allow
Inbound DenyAllInbound 65500 0.0.0.0/0 0-65535 0.0.0.0/0 0-65535 Any Deny
Outbound AllowVnetOutBound 65000 VirtualNetwork 0-65535 VirtualNetwork 0-65535 Any Allow
Outbound AllowInternetOutBound 65001 0.0.0.0/0 0-65535 Internet 0-65535 Any Allow
Outbound DenyAllOutBound 65500 0.0.0.0/0 0-65535 0.0.0.0/0 0-65535

NSG Assignment and Precedence

Network Security Groups can be assigned to Subnets and NICs. If both a NIC is mounted to a Subnet, and both have NSG's attached, the Subnet NSG rules are applied first for Ingress traffic, and the opposite is applied for Egress.


  1. Deploy Network Security Groups by Using the Azure Portal - Training ↩︎ ↩︎