CCNA Network Infrastructure and Connectivity Practice Question
This 200-301 practice question tests your understanding of network infrastructure and connectivity. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Network Topology
You are troubleshooting connectivity for a wireless client connected to the home network shown below. The client has obtained an APIPA address (169.254.x.x), indicating DHCP failure. Verify the DHCP server configuration on R1 and correct the issue so that the client receives a valid IP address from the 192.168.1.0/24 subnet.
R1# show running-config | section dhcp
ip dhcp excluded-address 192.168.1.1 192.168.1.10
ip dhcp pool HOME
network 192.168.1.0 255.255.255.0
default-router 192.168.1.1
dns-server 8.8.8.8
lease 7
R1# show ip interface brief
Interface IP-Address OK? Method Status Protocol
GigabitEthernet0/0 192.168.1.1 YES NVRAM up up
GigabitEthernet0/1 10.0.0.1 YES NVRAM up up
Client ipconfig output:
Ethernet adapter Wi-Fi:
Connection-specific DNS Suffix . :
IPv4 Address. . . . . . . . . . . : 169.254.123.45
Subnet Mask . . . . . . . . . . . : 255.255.0.0
Default Gateway . . . . . . . . . :
A
Enable the DHCP service globally using the 'service dhcp' command on R1.
The DHCP service is disabled by default on Cisco routers. The 'service dhcp' command enables the DHCP server and relay agent globally, allowing the router to respond to DHCP requests. Without this command, the router ignores DHCP messages even if pools are configured.
B
Remove the 'ip dhcp excluded-address 192.168.1.1 192.168.1.10' command because it excludes too many addresses.
Why wrong: This is incorrect because excluding 10 addresses from a /24 subnet (254 usable addresses) is not excessive. The exclusion is necessary to reserve addresses for static devices like the router interface. The APIPA issue is not caused by this exclusion.
C
Change the DHCP pool network to 192.168.1.0/24 and add the default-router 192.168.1.1 command.
Why wrong: This is incorrect because the DHCP pool already includes the network statement for 192.168.1.0/24 and the default-router command. The configuration is correct; the issue is that the DHCP service is not enabled globally.
D
Configure the 'ip helper-address' command on the client's VLAN interface to forward DHCP requests to the server.
Why wrong: This is incorrect because the DHCP server is on the same router (R1) as the client's subnet. The 'ip helper-address' command is used to forward DHCP broadcasts to a remote server, which is unnecessary here. The client and server are on the same device.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Enable the DHCP service globally using the 'service dhcp' command on R1.
The client obtained an APIPA address (169.254.x.x) because DHCP was not assigning addresses. The DHCP pool is correctly configured, but the global DHCP service must be enabled with the 'service dhcp' command on R1. The excluded-address range (192.168.1.1–192.168.1.10) uses only a small fraction of the /24 subnet, so it is not the issue. Enabling 'service dhcp' allows the router to process DHCP requests and assign addresses from the pool.
Key principle: A trunk being up does not mean the VLAN is allowed across it. Always verify the allowed VLAN list and whether the VLAN exists on both switches.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✓
Enable the DHCP service globally using the 'service dhcp' command on R1.
Why this is correct
The DHCP service is disabled by default on Cisco routers. The 'service dhcp' command enables the DHCP server and relay agent globally, allowing the router to respond to DHCP requests. Without this command, the router ignores DHCP messages even if pools are configured.
Related concept
Access ports place end devices into a single VLAN.
✗
Remove the 'ip dhcp excluded-address 192.168.1.1 192.168.1.10' command because it excludes too many addresses.
Why it's wrong here
This is incorrect because excluding 10 addresses from a /24 subnet (254 usable addresses) is not excessive. The exclusion is necessary to reserve addresses for static devices like the router interface. The APIPA issue is not caused by this exclusion.
✗
Change the DHCP pool network to 192.168.1.0/24 and add the default-router 192.168.1.1 command.
Why it's wrong here
This is incorrect because the DHCP pool already includes the network statement for 192.168.1.0/24 and the default-router command. The configuration is correct; the issue is that the DHCP service is not enabled globally.
✗
Configure the 'ip helper-address' command on the client's VLAN interface to forward DHCP requests to the server.
Why it's wrong here
This is incorrect because the DHCP server is on the same router (R1) as the client's subnet. The 'ip helper-address' command is used to forward DHCP broadcasts to a remote server, which is unnecessary here. The client and server are on the same device.
Option-by-option analysis
Why each answer is right or wrong
Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The 200-301 exam frequently reuses these exact scenarios with slightly different constraints.
✓Enable the DHCP service globally using the 'service dhcp' command on R1.Correct answer▾
Why this is correct
The DHCP service is disabled by default on Cisco routers. The 'service dhcp' command enables the DHCP server and relay agent globally, allowing the router to respond to DHCP requests. Without this command, the router ignores DHCP messages even if pools are configured.
✗Remove the 'ip dhcp excluded-address 192.168.1.1 192.168.1.10' command because it excludes too many addresses.Wrong answer — click to see why▾
Why this is wrong here
The specific factual error: Excluding 10 addresses does not exhaust the pool; the pool still has 244 addresses available.
Why candidates choose this
Candidates might think that excluding addresses reduces the pool size and could cause exhaustion, but in this case the pool is large enough.
✗Change the DHCP pool network to 192.168.1.0/24 and add the default-router 192.168.1.1 command.Wrong answer — click to see why▾
Why this is wrong here
The specific factual error: The pool configuration is already correct; modifying it does not address the disabled DHCP service.
Why candidates choose this
Candidates often assume the pool is misconfigured when clients get APIPA addresses, but the pool commands are correct here.
✗Configure the 'ip helper-address' command on the client's VLAN interface to forward DHCP requests to the server.Wrong answer — click to see why▾
Why this is wrong here
The specific factual error: 'ip helper-address' is for DHCP relay across subnets; it is not needed when the server is local.
Why candidates choose this
Candidates may confuse scenarios where the DHCP server is on a different subnet and think relay is always required.
Analysis generated from the official 200-301blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”
Common exam traps
Common exam trap: an active trunk can still block the VLAN you need
A trunk being up does not prove every VLAN is crossing it. Check allowed VLAN lists, native VLAN mismatch, VLAN existence and access-port assignment.
Trap categories for this question
Command / output trap
This is incorrect because the DHCP pool already includes the network statement for 192.168.1.0/24 and the default-router command. The configuration is correct; the issue is that the DHCP service is not enabled globally.
Detailed technical explanation
How to think about this question
VLAN questions usually combine access-port and trunking clues. The key is to identify whether the issue is local to one switchport, caused by the trunk, or caused by the VLAN not existing where it needs to exist.
KKey Concepts to Remember
Access ports place end devices into a single VLAN.
Trunk ports carry multiple VLANs between switches.
Allowed VLAN lists decide which VLANs can cross a trunk.
Native VLAN mismatch can create confusing symptoms.
TExam Day Tips
→Use show vlan brief to verify access VLANs.
→Use show interfaces trunk to verify trunk state and allowed VLANs.
→Do not treat every same-VLAN issue as a routing problem.
Key takeaway
A trunk being up does not mean the VLAN is allowed across it. Always verify the allowed VLAN list and whether the VLAN exists on both switches.
Real-world example
How this comes up in practice
A help-desk technician troubleshoots why a newly connected PC cannot reach shared printers on the same floor. The cable is good, the switch port is active, but the PC is in VLAN 20 and the printers are in VLAN 10. The uplink trunk only allows VLAN 10. A trunk being up does not mean every VLAN crosses it.
Related glossary terms
Concepts from this question explained
These glossary pages explain the core terms tested in this 200-301 question in full detail.
Review VLAN allowed lists, native VLAN mismatch detection, and how to verify VLAN membership with show vlan brief and show interfaces trunk. Then practise related 200-301 questions on switching, trunking, and access-port configuration.
Network Infrastructure and Connectivity — This question tests Network Infrastructure and Connectivity — Access ports place end devices into a single VLAN..
What is the correct answer to this question?
The correct answer is: Enable the DHCP service globally using the 'service dhcp' command on R1. — The client obtained an APIPA address (169.254.x.x) because DHCP was not assigning addresses. The DHCP pool is correctly configured, but the global DHCP service must be enabled with the 'service dhcp' command on R1. The excluded-address range (192.168.1.1–192.168.1.10) uses only a small fraction of the /24 subnet, so it is not the issue. Enabling 'service dhcp' allows the router to process DHCP requests and assign addresses from the pool.
What should I do if I get this 200-301 question wrong?
Review VLAN allowed lists, native VLAN mismatch detection, and how to verify VLAN membership with show vlan brief and show interfaces trunk. Then practise related 200-301 questions on switching, trunking, and access-port configuration.
What is the key concept behind this question?
Access ports place end devices into a single VLAN.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This 200-301 practice question is part of Courseiva's free Cisco certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the 200-301 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.