• Post author:
  • Post category:Blog
  • Reading time:2 mins read
  • Post last modified:June 12, 2024

An ACL is applied inbound on a router interface. The ACL consists of a single entry:

access-list 100 permit tcp 192.168.10.0 0.0.0.255 any eq www .

If a packet with a source address of 192.168.10.45, a destination address of 10.10.3.27, and a protocol of 80 is received on the interface, is the packet permitted or denied?

  • permitted
  • denied
Explanation & Hint:

The ACL (Access Control List) entry is:

access-list 100 permit tcp 192.168.10.0 0.0.0.255 any eq www

This entry permits TCP traffic from the source IP address range 192.168.10.0 to 192.168.10.255 (as indicated by the subnet mask 0.0.0.255) to any destination, as long as the destination port is 80 (which is indicated by eq www, where www represents the well-known port for HTTP).

The packet in question has:

  • Source address: 192.168.10.45
  • Destination address: 10.10.3.27
  • Protocol: 80 (TCP)

Since the packet’s source address falls within the specified range (192.168.10.0 to 192.168.10.255), is using TCP, and is destined for port 80, it matches the criteria set by the ACL entry. Therefore, the packet is permitted.

For more Questions and Answers:

CCNA 3 v7 – ENSA v7.02 Final Exam Answers Full 100%

Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments