Creating network security group (NSG) rules in Azure


Creating Network Security Group (NSG) rules in Microsoft Azure involves defining inbound and outbound security rules to control traffic to and from Azure resources. Here's how you can create these rules:

Steps to Create NSG Rules in the Azure Portal

  1. Log in to Azure Portal:
    Go to and sign in.

  2. Navigate to NSG:

    • Search for "Network Security Groups" in the search bar.

    • Select an existing NSG or create a new one by clicking + Create.

  3. Go to Security Rules:

    • Open the NSG you want to configure.

    • Under Settings, choose Inbound security rules or Outbound security rules.

  4. Add a Rule:

    • Click + Add to create a new rule.

  5. Define Rule Properties:
    Fill in the following fields:

    • Name: A unique identifier for the rule.

    • Priority: A number between 100 and 4096. Lower numbers are processed first.

    • Source: The traffic origin. Options include Any, IP Address, or Service Tag.

    • Source port ranges: Specify ports or use * for all.

    • Destination: The traffic destination. Options include Any, IP Address, or Service Tag.

    • Destination port ranges: Specify ports or use * for all.

    • Protocol: Choose TCP, UDP, or Any.

    • Action: Choose Allow or Deny.

  6. Save the Rule:

    • Review the settings and click Add to save the rule.

Example Rules

Inbound Rule: Allow SSH (Port 22)

  • Name: Allow-SSH

  • Priority: 100

  • Source: Any

  • Source Port Range: *

  • Destination: Any

  • Destination Port Range: 22

  • Protocol: TCP

  • Action: Allow

Outbound Rule: Deny Internet Access

  • Name: Deny-Internet

  • Priority: 200

  • Source: VirtualNetwork

  • Source Port Range: *

  • Destination: Internet

  • Destination Port Range: *

  • Protocol: Any

  • Action: Deny

Using Azure CLI to Create NSG Rules

You can also create NSG rules using the Azure CLI:

Command to Create an NSG Rule

Example: Allow HTTPS

Best Practices

  1. Minimize Rules: Use as few rules as possible to simplify management.

  2. Follow Least Privilege: Only allow necessary traffic.

  3. Organize Priorities: Lower-priority rules take precedence over higher-priority ones.

  4. Monitor Logs: Use NSG flow logs for monitoring and troubleshooting.

Related Articles


Rajnish, MCT

Leave a Reply

Your email address will not be published. Required fields are marked *


SUBSCRIBE

My newsletter for exclusive content and offers. Type email and hit Enter.

No spam ever. Unsubscribe anytime.
Read the Privacy Policy.