Is It Possible to open a port to a domain?

Nina G 46 Reputation points
2022-02-10T21:41:18.553+00:00

We have an IIS webserver hosted in Azure and trying to forward its logs to our SIEM. In order for our webserver to talk to our SIEM, we have to open port 443 outbound to a couple of domains example.com and abc.com (this is just an example).

However, as I take a look, I don't see a way to open port 443 outbound to the 2 domains. Is it possible to do this?

Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
7,254 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Prrudram-MSFT 22,486 Reputation points
    2022-02-11T10:20:08.697+00:00

    Hello @Nina G ,

    NSGs/ASGs cannot help here, the best course of action is to leverage Azure Firewall. Reference: tutorial-firewall-deploy-portal-policy
    Follow the instructions from the above document link and this is the section, where you define the rules.

    Configure an application rule:
    This is the application rule that allows outbound access to www.google.com.

    • Open the Test-FW-RG, and select the fw-test-pol firewall policy.
    • Select Application rules.
    • Select Add a rule collection.
    • For Name, type App-Coll01.
    • For Priority, type 200.
    • For Rule collection action, select Allow.
    • Under Rules, for Name, type Allow-Google.
    • For Source type, select IP address.
    • For Source, type 10.0.2.0/24.
    • For Protocol:port, type http, https.
    • For Destination Type, select FQDN.
    • For Destination, type www.google.com
    • Select Add.

    Please "Accept as Answer" and Upvote if any of the above helped so that, it can help others in the community looking for remediation for similar issues.

    0 comments No comments

  2. Lex Li (Microsoft) 4,742 Reputation points Microsoft Employee
    2022-02-14T05:37:34.55+00:00

    IIS 8 and above support multiple HTTPS sites on port 443 if you properly configure SNI certificate mappings, https://learn.microsoft.com/en-us/iis/get-started/whats-new-in-iis-8/iis-80-server-name-indication-sni-ssl-scalability

    0 comments No comments