hardmultiple choiceObjective-mapped

Exhibit

access-list 101 permit tcp any any eq 80
interface g0/1
 ip access-group 101 in
DMZ web server: 172.16.100.10

Exhibit: Users on the inside network can open connections to a web server in the DMZ, but return traffic is denied by an ACL on the outside interface. Which statement best explains the issue?

Question 1hardmultiple choice
Full question →

Exhibit: Users on the inside network can open connections to a web server in the DMZ, but return traffic is denied by an ACL on the outside interface. Which statement best explains the issue?

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

The ACL should match the source port 80 on returning traffic, not the destination port 80

Return packets from the server use source port 80 and a random high destination port on the client.

B

Distractor review

HTTP traffic can never be filtered with a standard ACL

It is true that TCP ports need an extended ACL, but that is not the precise return-traffic explanation here.

C

Distractor review

The ACL must be applied outbound on the inside interface only

ACL placement can vary; the key problem is the match logic.

D

Distractor review

NAT automatically bypasses interface ACLs

NAT does not bypass ACL processing.

Common exam trap

Common exam trap: answer the scenario, not the keyword

A frequent exam trap is believing that return HTTP traffic will have destination port 80, just like the outbound request. This misconception causes candidates to configure ACLs that only permit inbound packets with destination port 80, which blocks legitimate return traffic because the return packets have source port 80 and a high-numbered destination port. Misunderstanding this port reversal leads to ACLs that deny return traffic, causing connectivity failures despite correct outbound rules. Another trap is confusing NAT behavior, incorrectly assuming NAT bypasses ACLs, which it does not. This misunderstanding can cause candidates to overlook ACL port matching issues.

Technical deep dive

How to think about this question

Access Control Lists (ACLs) are fundamental Cisco security tools used to filter traffic based on IP addresses and TCP/UDP ports. When a client inside a network initiates an HTTP connection to a web server in the DMZ, the outbound packets have a source port assigned by the client (usually a high ephemeral port) and a destination port 80 (HTTP). The return traffic from the server reverses these ports: the source port is 80, and the destination port is the client’s ephemeral port. This port reversal is crucial for ACL matching. Cisco routers apply ACLs based on the direction and interface where they are configured. An inbound ACL on the outside interface inspects packets entering from the DMZ or external network. To permit return HTTP traffic, the ACL must allow packets with source port 80 (from the server) and destination port matching the client’s ephemeral port. If the ACL only permits inbound packets with destination port 80, it will block return traffic because the destination port on return packets is not 80. This is why extended ACLs must be carefully configured to match the correct source and destination ports for bidirectional communication. A common exam trap is assuming that return traffic will have the same destination port as the outbound traffic, leading to ACLs that block legitimate responses. Additionally, NAT does not bypass ACL processing; ACLs still filter packets after NAT translation, so ACL logic must consider translated addresses and ports. Understanding the direction of traffic flow and port roles in TCP connections is essential for correctly configuring ACLs and avoiding connectivity issues in Cisco networks.

KKey Concepts to Remember

  • An Access Control List (ACL) evaluates traffic based on source and destination IP addresses and ports to permit or deny packets on Cisco routers.
  • Return traffic from a web server uses the server’s source port 80 and a high-numbered ephemeral destination port assigned to the client.
  • Extended ACLs must match the correct source and destination ports to allow return traffic through an interface on Cisco devices.
  • ACLs applied inbound on an interface filter traffic entering that interface, so return packets must match the ACL’s source port criteria.
  • NAT does not bypass ACL processing; ACLs still inspect and filter packets after NAT translation on Cisco routers.
  • Incorrect ACL port matching commonly causes return traffic to be denied, even if initial outbound connections are allowed.
  • Applying ACLs on the correct interface and direction is critical to ensure bidirectional traffic flow for protocols like HTTP.
  • Standard ACLs cannot filter traffic based on TCP or UDP ports; extended ACLs are required for port-specific filtering.

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) evaluates traffic based on source and destination IP addresses and ports to permit or deny packets on Cisco routers.

What is the correct answer to this question?

The correct answer is: The ACL should match the source port 80 on returning traffic, not the destination port 80 — An ACL applied inbound on the outside interface will evaluate the return traffic entering from the DMZ or outside toward the router. If it permits only destination port 80 inbound, the returning packets will not match because their destination is an ephemeral client port, not 80.

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.