mediummultiple choiceObjective-mapped

Exhibit

ip access-list extended BLOCK-TELNET
 deny ip any host 10.10.10.10
 deny tcp any host 10.10.10.10 eq 23
 permit ip any any

Exhibit: An ACL applied inbound on G0/0 is intended to block Telnet to 10.10.10.10 while permitting everything else, but users cannot reach any service on that server. Why?

Question 1mediummultiple choice
Full question →

Exhibit: An ACL applied inbound on G0/0 is intended to block Telnet to 10.10.10.10 while permitting everything else, but users cannot reach any service on that server. Why?

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

Distractor review

The ACL must be applied outbound, not inbound

That is not the core logic error shown here.

B

Best answer

The deny ip statement blocks all traffic to the host before the Telnet-specific line is evaluated

The first matching ACE wins.

C

Distractor review

Extended ACLs cannot match TCP port 23

They can.

D

Distractor review

Telnet uses UDP, so the ACE should reference udp

Telnet uses TCP.

Common exam trap

Common exam trap: answer the scenario, not the keyword

A common exam trap is assuming that the ACL evaluates all lines before deciding to block or permit traffic. Many candidates mistakenly believe that a specific deny Telnet line will override a broader deny ip statement later in the ACL. However, ACLs stop processing at the first match, so placing a deny ip line before the Telnet-specific deny causes all IP traffic to that host to be blocked. This misunderstanding leads to ACLs that unintentionally block all services, not just Telnet, causing connectivity failures and confusion.

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 allow granular control by matching specific Layer 4 protocols and port numbers, enabling administrators to permit or deny traffic like Telnet (TCP port 23) selectively. When an ACL is applied inbound on an interface, it evaluates packets as they arrive, filtering traffic before routing or switching decisions occur. ACLs are processed sequentially from the top down, and the first matching ACE determines the fate of the packet. If a deny ACE matches, the packet is dropped immediately, and no further ACL entries are checked. This means that if a broad deny statement appears before a specific permit statement, the specific permit will never be reached, causing unintended traffic blocking. Therefore, the order of ACEs is crucial to ensure correct traffic filtering behavior. In the given scenario, the ACL intended to block only Telnet traffic to 10.10.10.10 contains a deny ip statement that blocks all IP traffic to that host before the Telnet-specific deny line is evaluated. This causes all services to be blocked, not just Telnet. The exam trap lies in misunderstanding ACL processing order and the impact of broad deny statements placed before specific ones. Practically, network engineers must carefully order ACL entries to avoid inadvertently blocking legitimate traffic while achieving the desired filtering effect.

KKey Concepts to Remember

  • An Access Control List (ACL) processes packets sequentially from top to bottom and stops at the first matching Access Control Entry (ACE).
  • A deny ACE in an ACL immediately blocks matching traffic and prevents further ACL entries from being evaluated for that packet.
  • Extended ACLs can filter traffic based on Layer 3 IP addresses and Layer 4 protocols and ports, such as TCP port 23 for Telnet.
  • Applying an ACL inbound on an interface filters traffic as it enters the router or switch before routing decisions are made.
  • The order of ACEs in an ACL is critical; placing a broad deny statement before specific permit statements can block all traffic unintentionally.
  • Telnet uses TCP port 23, so ACLs must specify TCP protocol and port 23 to selectively block Telnet traffic.
  • Implicit deny at the end of every ACL blocks all traffic not explicitly permitted, so permit statements must be carefully ordered.
  • ACLs do not differentiate between services unless explicitly configured with protocol and port numbers in extended ACLs.

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 Access Control List (ACL) processes packets sequentially from top to bottom and stops at the first matching Access Control Entry (ACE).

What is the correct answer to this question?

The correct answer is: The deny ip statement blocks all traffic to the host before the Telnet-specific line is evaluated — ACLs are processed top-down. The shown ACL denies all IP traffic to the host before the Telnet-specific ACE could matter, so every protocol toward that server is blocked.

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.