0
0
Azurecloud~20 mins

Network Watcher for diagnostics in Azure - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Network Watcher Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
service_behavior
intermediate
1:30remaining
What is the primary function of Azure Network Watcher?
Azure Network Watcher helps you monitor and diagnose network issues. What is its main purpose?
ATo deploy virtual machines automatically based on network traffic.
BTo manage user access and permissions for Azure resources.
CTo monitor and diagnose network traffic and connectivity issues in Azure virtual networks.
DTo provide backup and disaster recovery for Azure databases.
Attempts:
2 left
💡 Hint
Think about what helps you find and fix network problems in Azure.
Configuration
intermediate
2:00remaining
Which Azure CLI command enables Network Watcher in a specific region?
You want to enable Network Watcher in the 'eastus' region using Azure CLI. Which command is correct?
Aaz network watcher enable --location eastus
Baz network watcher configure --locations eastus --enabled true
Caz network watcher create --location eastus
Daz network watcher configure --location eastus --enabled true
Attempts:
2 left
💡 Hint
The command uses 'configure' with plural 'locations' and an enabled flag.
Architecture
advanced
2:30remaining
Which architecture best supports continuous packet capture with Network Watcher?
You need to capture network packets continuously for a virtual machine in Azure for security analysis. Which architecture setup is best?
AEnable Network Watcher packet capture on the VM's network interface with storage account for saving captures.
BUse Azure Monitor logs only without enabling packet capture.
CDeploy a separate VM to mirror traffic and analyze packets manually.
DEnable Network Security Group flow logs instead of packet capture.
Attempts:
2 left
💡 Hint
Packet capture requires enabling on the VM's network interface and storage for data.
security
advanced
2:00remaining
What is a security best practice when using Network Watcher packet capture?
When capturing network packets with Network Watcher, what should you do to protect sensitive data?
AUse Network Watcher without any storage to avoid data exposure.
BShare packet capture files publicly for easy access by the team.
CDisable encryption on storage accounts to improve performance.
DStore packet capture files in a secure, access-controlled storage account with encryption enabled.
Attempts:
2 left
💡 Hint
Think about how to keep captured data safe and private.
🧠 Conceptual
expert
2:30remaining
What is the output of this Azure CLI command for Network Watcher troubleshooting?
You run the command:
az network watcher test-connectivity --source-resource-id /subscriptions/123/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1 --dest-address 8.8.8.8 --dest-port 53
What is the expected output type?
AA JSON object showing if the connection to 8.8.8.8 on port 53 succeeded or failed with details.
BA list of all virtual machines in the resource group rg1.
CAn error message saying the command is invalid.
DA plain text message confirming Network Watcher is enabled.
Attempts:
2 left
💡 Hint
This command tests network connectivity from a VM to an IP and port.