AZ-104 Implement and Manage Virtual Networking Practice Question
This AZ-104 practice question tests your understanding of implement and manage virtual networking. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Troubleshooting summary: VM1 to VM2 on TCP 1433 shows Status = Blocked; connection troubleshooting reports that the destination is reachable at the route level; the administrator needs the specific allow or deny rule name.
Based on the exhibit, which Network Watcher tool should the administrator use to identify the exact NSG rule that is blocking TCP 1433 traffic?
Exhibit
Troubleshooting summary: VM1 to VM2 on TCP 1433 shows Status = Blocked; connection troubleshooting reports that the destination is reachable at the route level; the administrator needs the specific allow or deny rule name.
A
Connection troubleshoot
Why wrong: This confirms reachability and path issues, but it does not identify the exact NSG rule.
B
IP flow verify
IP flow verify returns whether a flow is allowed or denied and shows the matching NSG rule.
C
Next hop
Why wrong: Next hop only shows routing decisions, not security rule matches for a specific flow.
D
Packet capture
Why wrong: Packet capture can help analyze packets, but it is not the fastest way to identify the NSG rule.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
IP flow verify
IP flow verify is the correct Network Watcher tool because it tests whether a packet is allowed or denied to or from a specific virtual machine based on a 5-tuple (source IP, destination IP, source port, destination port, and protocol). By specifying TCP 1433 as the destination port, the tool evaluates all effective security rules (NSG and ASG) and returns the exact rule name and direction that is blocking the traffic.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✗
Connection troubleshoot
Why it's wrong here
This confirms reachability and path issues, but it does not identify the exact NSG rule.
When this WOULD be correct
If the question asked which tool to use to test TCP connectivity over a specific port between two VMs and report latency, packet loss, and hop-by-hop path, then Connection troubleshoot would be correct.
✓
IP flow verify
Why this is correct
IP flow verify returns whether a flow is allowed or denied and shows the matching NSG rule.
Related concept
Read the scenario before looking for a memorised answer.
✗
Next hop
Why it's wrong here
Next hop only shows routing decisions, not security rule matches for a specific flow.
When this WOULD be correct
Use Next hop when troubleshooting routing issues, such as determining why traffic is taking an unexpected path (e.g., traffic destined for a VM is being sent to a virtual appliance instead of directly to the VM).
✗
Packet capture
Why it's wrong here
Packet capture can help analyze packets, but it is not the fastest way to identify the NSG rule.
When this WOULD be correct
Packet capture would be correct when the question asks to capture and analyze network traffic to diagnose a performance issue or inspect application-level protocol details, such as verifying if a specific SQL query is being sent over TCP 1433.
Option-by-option analysis
Why each answer is right or wrong
Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The AZ-104 exam frequently reuses these exact scenarios with slightly different constraints.
✓IP flow verifyCorrect answer▾
Why this is correct
IP flow verify returns whether a flow is allowed or denied and shows the matching NSG rule.
✗Connection troubleshootWrong answer — click to see why▾
Why this is wrong here
Connection troubleshoot tests end-to-end connectivity between a source and destination VM, but it does not identify which specific NSG rule is blocking traffic; it only reports connectivity success or failure.
★ When this WOULD be the correct answer
If the question asked which tool to use to test TCP connectivity over a specific port between two VMs and report latency, packet loss, and hop-by-hop path, then Connection troubleshoot would be correct.
Why candidates choose this
Candidates may think 'troubleshoot' implies diagnosing blocking rules, but Connection troubleshoot is for broader connectivity checks, not rule-level analysis.
✗Next hopWrong answer — click to see why▾
Why this is wrong here
Next hop identifies the next hop IP address and route for a packet, but it does not evaluate NSG rules to determine if traffic is allowed or blocked.
★ When this WOULD be the correct answer
Use Next hop when troubleshooting routing issues, such as determining why traffic is taking an unexpected path (e.g., traffic destined for a VM is being sent to a virtual appliance instead of directly to the VM).
Why candidates choose this
Candidates may confuse network path analysis with security rule evaluation, thinking that identifying the next hop will reveal where the traffic is blocked.
✗Packet captureWrong answer — click to see why▾
Why this is wrong here
Packet capture captures raw network packets for deep analysis but does not identify which specific NSG rule is blocking traffic; it requires manual inspection of captured data and does not correlate with NSG rules.
★ When this WOULD be the correct answer
Packet capture would be correct when the question asks to capture and analyze network traffic to diagnose a performance issue or inspect application-level protocol details, such as verifying if a specific SQL query is being sent over TCP 1433.
Why candidates choose this
Candidates may think packet capture can directly show blocked packets, but it lacks integration with NSG rule evaluation and requires additional analysis to determine rule blocking.
Analysis generated from the official AZ-104blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often confuse 'Connection troubleshoot' (which tests end-to-end connectivity but not rule-level blocking) with 'IP flow verify' (which explicitly evaluates NSG rules), leading them to select A instead of B.
Trap categories for this question
Command / output trap
Next hop only shows routing decisions, not security rule matches for a specific flow.
Detailed technical explanation
How to think about this question
IP flow verify works by simulating a packet against the effective security rules of the network interface and subnet NSG, using the Azure Resource Manager API to evaluate rules in priority order. It returns the rule name, direction (inbound/outbound), and whether the traffic is allowed or denied, making it ideal for troubleshooting NSG denials. In a real-world scenario, if a SQL Server is unreachable on port 1433, IP flow verify can quickly confirm if a deny rule (e.g., a custom rule blocking port 1433 from a specific subnet) is the cause, without needing to manually parse NSG rule sets.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
An e-commerce site experiences heavy traffic on Black Friday and near-zero traffic during off-peak weeks. Rather than provisioning permanent large VMs, the team uses auto-scaling groups that add capacity automatically under load and reduce it overnight. Questions like this test whether you understand elasticity, availability zones, and cloud compute scaling patterns.
Related glossary terms
Concepts from this question explained
These glossary pages explain the core terms tested in this AZ-104 question in full detail.
Implement and Manage Virtual Networking — This question tests Implement and Manage Virtual Networking — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: IP flow verify — IP flow verify is the correct Network Watcher tool because it tests whether a packet is allowed or denied to or from a specific virtual machine based on a 5-tuple (source IP, destination IP, source port, destination port, and protocol). By specifying TCP 1433 as the destination port, the tool evaluates all effective security rules (NSG and ASG) and returns the exact rule name and direction that is blocking the traffic.
What should I do if I get this AZ-104 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This AZ-104 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the AZ-104 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.