hardmultiple choiceObjective-mapped

Exhibit

Requirement:
- Block SSH from 10.88.88.0/24 to 192.0.2.10
- Allow all other traffic

Configured ACL entry:
deny tcp 10.88.88.0 0.0.0.255 host 192.0.2.10

Based on the exhibit, why is this ACL failing to block only SSH traffic from the branch subnet to the router?

Question 1hardmultiple choice
Full question →

Based on the exhibit, why is this ACL failing to block only SSH traffic from the branch subnet to the router?

Answer choices

Why each option matters

Good practice is not just finding the correct option. The wrong answers often show the exact trap the exam wants you to fall into.

A

Best answer

Because the ACL denies all TCP traffic to the destination instead of only TCP port 22.

This is correct because the deny statement lacks the SSH destination-port qualifier.

B

Distractor review

Because SSH uses UDP port 22.

This is wrong because SSH uses TCP, not UDP.

C

Distractor review

Because ACLs cannot match host destinations.

This is wrong because host matches are valid and common.

D

Distractor review

Because the ACL should be applied only to IPv6 traffic.

This is wrong because the requirement is clearly an IPv4 extended ACL case.

Common exam trap

Common exam trap: answer the scenario, not the keyword

A common exam trap is assuming that a deny statement specifying only the TCP protocol will block just SSH traffic. This mistake ignores that TCP encompasses many services beyond SSH, so the ACL ends up blocking all TCP traffic to the destination. Candidates may overlook the necessity of specifying the destination port 22 to target SSH specifically. This overbroad deny can cause unintended network outages and fails the requirement to block only SSH traffic. Recognizing this subtlety is essential to avoid losing points on ACL precision questions.

Technical deep dive

How to think about this question

Access Control Lists (ACLs) are fundamental tools in Cisco networking used to filter traffic based on defined criteria such as source/destination IP addresses, protocols, and ports. Extended ACLs provide granular control by allowing filtering on Layer 3 and Layer 4 parameters, including TCP or UDP port numbers. This capability is essential when restricting specific services like SSH, which uses TCP port 22, to enforce security policies on routers and switches. When configuring an ACL to block SSH traffic, the rule must explicitly specify TCP as the protocol and port 22 as the destination port. A deny statement that only specifies TCP without the port qualifier will block all TCP traffic to the destination, which is broader than intended. Proper ACL design requires matching the exact service port to avoid unintended traffic disruption. Cisco IOS ACLs process entries sequentially, so specificity in the deny statements ensures only targeted traffic is blocked while other services remain unaffected. The exam trap arises when candidates assume that denying TCP traffic without specifying the port will block only SSH. In reality, this approach blocks all TCP traffic, which can cause network disruptions and does not meet the requirement of blocking only SSH. Practically, this means legitimate TCP services like HTTP or HTTPS could be unintentionally blocked. Understanding the importance of port qualifiers in ACLs is critical for precise traffic filtering and passing Cisco CCNA exams confidently.

KKey Concepts to Remember

  • An extended ACL in Cisco IOS can filter traffic based on Layer 3 IP addresses and Layer 4 protocol ports, enabling service-specific traffic control.
  • SSH traffic uses TCP as its transport protocol and specifically communicates over TCP port 22, which must be matched in ACL rules to block it accurately.
  • A deny ACL statement without a destination port qualifier blocks all TCP traffic to the specified destination, not just SSH traffic.
  • Cisco ACLs process entries in sequential order, so placing specific deny statements before broader permits is essential for correct filtering behavior.
  • Host destination matches in ACLs are valid and commonly used to precisely identify single devices or interfaces in traffic filtering.
  • IPv4 extended ACLs are used to filter IPv4 traffic; applying an ACL designed for IPv4 to IPv6 traffic will not work as expected.
  • Failing to specify the correct protocol and port in an ACL can lead to overblocking or underblocking, causing network connectivity issues.
  • Precise ACL configuration is critical in security fundamentals to ensure only intended traffic is blocked without disrupting other services.

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.

Related practice questions

Related 200-301 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

More questions from this exam

Keep practising from the same exam bank, or move into a focused topic page if this question exposed a weak area.

FAQ

Questions learners often ask

What does this 200-301 question test?

An extended ACL in Cisco IOS can filter traffic based on Layer 3 IP addresses and Layer 4 protocol ports, enabling service-specific traffic control.

What is the correct answer to this question?

The correct answer is: Because the ACL denies all TCP traffic to the destination instead of only TCP port 22. — The ACL fails because it blocks all TCP traffic to the router instead of only SSH. In practical terms, the requirement is narrow and service-specific, but the entry is broad. Since SSH is only one TCP-based service, a deny that matches all TCP to the destination is overreaching and blocks more than intended. This is a strong ACL-precision item because it forces you to translate a requirement into the correct degree of specificity.

What should I do if I get this 200-301 question wrong?

Then try more questions from the same exam bank and focus on understanding why the wrong options are tempting.

Discussion

Loading comments…

Sign in to join the discussion.