You have an Azure virtual machine named VM1 that runs Windows Server.
You need to configure the management of VM1 to meet the following requirements:
-> Require administrators to request access to VM1 before establishing a Remote Desktop connection.
-> Limit access to VM1 from specific source IP addresses.
-> Limit access to VM1 to a specific management port.
What should you configure?
Click on the arrows to vote for the correct answer
A. B. C. D.C
https://docs.microsoft.com/en-us/azure/defender-for-cloud/just-in-time-access-usage?tabs=jit-config-asc%2Cjit-request-ascThe correct answer is A. a network security group (NSG).
A network security group (NSG) is a filtering layer for network traffic to and from Azure resources. It allows you to control access to your virtual machines (VMs) by creating inbound and outbound security rules that permit or deny traffic based on the source or destination IP address, port, and protocol.
To configure the management of VM1 to meet the given requirements, you can create an NSG and associate it with the virtual network that contains VM1. Then, you can create inbound security rules in the NSG to limit access to VM1 from specific source IP addresses and a specific management port. Additionally, you can create an outbound security rule to require administrators to request access to VM1 before establishing a Remote Desktop connection.
Here are the steps to configure an NSG to meet the requirements:
Create an NSG: Go to the Azure portal and search for "Network Security Group" in the search box. Click "Create" and follow the prompts to create an NSG.
Associate the NSG with the virtual network: In the Azure portal, navigate to the virtual network that contains VM1. Under the "Settings" section, click "Subnets" and select the subnet that contains VM1. In the "Subnet" blade, click "Associate" under the "Network security group" section and select the NSG you created in step 1.
Create inbound security rules: In the NSG blade, click "Inbound security rules" and click "Add" to create a new rule. Configure the following settings:
Repeat this process to create additional inbound rules as needed.
This outbound rule will require administrators to request access to VM1 before establishing a Remote Desktop connection.
After completing these steps, the NSG will be configured to meet the requirements of the scenario.