An ACL entry reads:
access-list 25 permit 192.168.8.0 0.0.0.15
Which address range does this statement match?
access-list 25 permit 192.168.8.0 0.0.0.15
An ACL entry reads:
access-list 25 permit 192.168.8.0 0.0.0.15
Which address range does this statement match?
Answer choices
Good practice is not just finding the correct option. The wrong answers often show the exact trap the exam wants you to fall into.
192.168.8.0 through 192.168.8.15
That is the correct range for a wildcard of 0.0.0.15.
192.168.8.0 through 192.168.8.31
That would match a wildcard of 0.0.0.31.
192.168.8.8 through 192.168.8.15
The range starts at .0, not .8.
Only host 192.168.8.15
A host match would use a wildcard of 0.0.0.0.
Common exam trap
A frequent exam trap is mistaking the wildcard mask for a subnet mask or miscalculating the starting IP address of the range. Many candidates incorrectly assume the range starts at 192.168.8.8 or that the wildcard mask 0.0.0.15 matches 32 addresses instead of 16. This happens because the wildcard mask is the inverse of a subnet mask and controls which bits can vary. If the base IP address is not aligned to the block size defined by the wildcard mask, the ACL will not match the intended range. Understanding that the base address must be a multiple of the block size (16 in this case) helps avoid this pitfall.
Technical deep dive
Access Control Lists (ACLs) in Cisco networking use wildcard masks to specify which IP addresses to match in a rule. A wildcard mask is the inverse of a subnet mask, where a 0 bit means "match exactly" and a 1 bit means "ignore this bit". In the ACL entry "access-list 25 permit 192.168.8.0 0.0.0.15", the wildcard mask 0.0.0.15 allows variation in the last 4 bits of the IP address, effectively matching a block of 16 addresses starting from 192.168.8.0. The rule for determining the address range matched by an ACL entry is to add one to the wildcard mask value plus the base IP address. Since 0.0.0.15 corresponds to binary 00001111, it means the last 4 bits can vary from 0000 to 1111 (0 to 15 decimal). Therefore, the ACL matches all IP addresses from 192.168.8.0 through 192.168.8.15 inclusive. This is a common technique in ACLs to efficiently permit or deny a small subnet or range of hosts. A common exam trap is confusing wildcard masks with subnet masks or misinterpreting the starting address of the range. For example, assuming the range starts at 192.168.8.8 instead of 192.168.8.0 is incorrect because the base address must align with the wildcard mask block size. Practically, Cisco routers use this wildcard mask logic to quickly filter traffic based on IP ranges, making understanding this concept critical for ACL configuration and troubleshooting.
Related practice questions
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Practise IPv4 subnetting, CIDR, masks, host ranges and subnet selection.
Practise OSPF neighbours, router IDs, metrics, areas and routing-table interpretation.
Practise VLANs, access ports, trunks, allowed VLANs and switching scenarios.
Practise spanning tree, root bridge election, port roles and STP troubleshooting.
Practise LACP, PAgP, port-channel behaviour and bundle requirements.
Practise standard and extended ACLs, permit/deny logic and traffic filtering.
Practise static NAT, dynamic NAT, PAT and inside/outside address translation.
Practise DHCP scopes, relay, leases and troubleshooting.
Practise routing-table output, longest-prefix match, AD and route selection.
Practise trunk verification and VLAN forwarding across switches.
Practise WLAN security, authentication and wireless architecture concepts.
Practise IPv6 addressing, routes, neighbour discovery and common IPv6 exam traps.
Keep practising from the same exam bank, or move into a focused topic page if this question exposed a weak area.
Question 1
Question 2
Question 3
Question 4
Question 5
Question 6
FAQ
An ACL wildcard mask uses 0 bits to require an exact match and 1 bits to allow any value in that bit position.
The correct answer is: 192.168.8.0 through 192.168.8.15 — A wildcard of 0.0.0.15 means the last 4 bits can vary, which corresponds to a block size of 16 addresses. Starting at 192.168.8.0, the range is 192.168.8.0 through 192.168.8.15.
Then try more questions from the same exam bank and focus on understanding why the wrong options are tempting.
Sign in to join the discussion.