You have deployed a Linux VM in Azure. You try to connect using SSH but the connection times out. What is the most likely reason?
Check the firewall rules controlling network traffic to the VM.
Azure VMs require that the Network Security Group allows inbound traffic on port 22 for SSH. Without this, the connection will time out.
You want to allow RDP access to your Windows VM by opening port 3389 in the NSG. Which command correctly adds this rule?
Look for the command that creates an NSG rule for port 3389 with the correct name and protocol.
Option C correctly creates an NSG rule named AllowRDP allowing inbound TCP traffic on port 3389, which is the default port for RDP.
You want to secure SSH access to your Linux VMs in Azure. Which architecture approach is best to reduce exposure to the internet?
Think about minimizing direct internet exposure of your VMs.
Using a jump box (bastion host) limits direct SSH exposure. Only the jump box has a public IP and strict access, improving security.
You enable Azure Bastion on your virtual network. What is the main effect on how you access your VMs?
Consider how Azure Bastion changes the connection method to VMs.
Azure Bastion provides secure RDP and SSH access via the Azure portal over SSL, without exposing public IPs or opening ports.
You want to require MFA when users SSH into your Azure Linux VMs. Which approach achieves this?
Think about integrating Azure identity services with VM login.
Azure AD login for Linux VMs allows using Azure identities and Conditional Access policies, including MFA, for SSH access.