IntermediateExam Strategy 8 min read

How to Pass the CompTIA Network+ (N10-009) Exam

Master the N10-009 exam with proven study tactics and hands-on CLI practice.

The CompTIA Network+ (N10-009) exam validates your foundational networking knowledge and is a key stepping stone for IT professionals. With 90 questions, a 720/900 passing score, and domains like Network Fundamentals, Network Implementations, Network Operations, Network Security, and Network Troubleshooting, preparation requires both theory and hands-on practice. This guide provides a structured approach, including real CLI commands, configuration snippets, and exam-specific tips to help you pass on your first attempt.

1

Understand the Exam Blueprint and Domains

Start by reviewing the official CompTIA Network+ N10-009 exam objectives. The exam covers five domains: Network Fundamentals (23%), Network Implementations (20%), Network Operations (19%), Network Security (14%), and Network Troubleshooting (24%). Focus on the highest-weighted domains first. The exam includes multiple-choice, drag-and-drop, and performance-based questions (PBQs). Allocate at least 60% of your study time to PBQs and troubleshooting scenarios.

Exam Blueprint
Exam domains:
- Network Fundamentals: 23%
- Network Implementations: 20%
- Network Operations: 19%
- Network Security: 14%
- Network Troubleshooting: 24%
Passing score: 720/900
Questions: 90
Time: 90 minutes

Print the exam objectives and check off each topic as you master it. Use CompTIA's official study guide as your primary resource.

Do not skip the troubleshooting domain — it has the highest weight and often includes complex PBQs.

2

Master Subnetting and Binary Math

Subnetting is a critical skill for Network+. Practice calculating subnet masks, network addresses, broadcast addresses, and usable host ranges. Use the '2^n - 2' formula for hosts and '2^n' for subnets. For example, a /26 subnet mask (255.255.255.192) provides 4 subnets and 62 usable hosts each. Practice with real IP addresses like 192.168.1.0/26.

Subnetting Example
Example: 192.168.1.0/26
Subnet mask: 255.255.255.192
Number of subnets: 2^(26-24) = 4
Hosts per subnet: 2^(32-26) - 2 = 62
First usable: 192.168.1.1
Last usable: 192.168.1.62
Broadcast: 192.168.1.63

Memorize the 'magic number' method: 256 - subnet mask octet = block size. For /26, block size = 256 - 192 = 64.

Watch out for trick questions that ask for the number of usable hosts — always subtract 2 for network and broadcast addresses.

3

Practice with Real Cisco IOS Commands

Hands-on practice with Cisco IOS is essential for PBQs. Set up a lab using Packet Tracer or GNS3. Practice basic configuration: hostname, VLANs, trunking, and routing. For example, configure a switch with VLAN 10 and assign an access port.

Cisco IOS
Switch> enable
Switch# configure terminal
Switch(config)# hostname SW1
SW1(config)# vlan 10
SW1(config-vlan)# name Sales
SW1(config-vlan)# exit
SW1(config)# interface fastEthernet 0/1
SW1(config-if)# switchport mode access
SW1(config-if)# switchport access vlan 10
SW1(config-if)# end
SW1# show vlan brief

Use 'show running-config' and 'show interfaces status' to verify your configuration. PBQs often require you to identify misconfigurations.

Always use 'exit' to return to global config mode. Forgetting to do so can cause syntax errors in the exam simulator.

4

Learn Network Troubleshooting with CLI Tools

Troubleshooting is 24% of the exam. Master commands like ping, traceroute, nslookup, ipconfig, and netstat. For example, use traceroute to identify a routing loop or high latency hop. On Windows, use 'tracert'; on Linux/macOS, use 'traceroute'.

Traceroute Output
Windows:
C:\> tracert 8.8.8.8

Linux/macOS:
$ traceroute 8.8.8.8

Sample output:
1  192.168.1.1 (1 ms)
2  10.0.0.1 (5 ms)
3  72.14.204.1 (12 ms)
4  8.8.8.8 (15 ms)

Use 'ping -t' (Windows) or 'ping -c 5' (Linux) for continuous ping. Combine with 'netstat -r' to view the routing table.

In PBQs, you may be given simulated output. Look for patterns like increasing latency (potential congestion) or timeouts (possible firewall or routing issue).

5

Focus on Network Security Fundamentals

Network Security accounts for 14% of the exam. Understand firewalls, ACLs, VPNs, and wireless security. Practice configuring a basic ACL on a Cisco router to permit only specific traffic.

Cisco ACL
Router(config)# access-list 100 permit tcp 192.168.1.0 0.0.0.255 any eq 80
Router(config)# access-list 100 deny ip any any
Router(config)# interface gigabitEthernet 0/0
Router(config-if)# ip access-group 100 in
Router(config-if)# end
Router# show access-lists 100

Remember that ACLs are processed top-down. Place the most specific rules first. Use 'show access-lists' to verify hit counts.

On the exam, be aware of implicit deny at the end of every ACL. If you don't include a permit statement, all traffic will be blocked.

6

Simulate Performance-Based Questions (PBQs)

PBQs simulate real network tasks. Practice scenarios like configuring a router interface, setting up a wireless network, or troubleshooting a connectivity issue. For example, configure a router with an IP address and enable the interface.

Cisco IOS PBQ
Router> enable
Router# configure terminal
Router(config)# interface gigabitEthernet 0/0
Router(config-if)# ip address 192.168.1.1 255.255.255.0
Router(config-if)# no shutdown
Router(config-if)# end
Router# show ip interface brief

In the exam, PBQs are often at the beginning. If you get stuck, flag the question and return later. Don't spend more than 10 minutes on a single PBQ.

PBQs may have multiple tabs or layers. Read all instructions carefully before making changes. Some PBQs require you to drag and drop commands in the correct order.

7

Review and Take Practice Exams

After studying each domain, take practice exams from reputable sources like Jason Dion or Professor Messer. Aim for at least 85% on each practice test before scheduling the real exam. Review every incorrect answer and understand why you got it wrong. Focus on time management — you have about 1 minute per question.

Study Plan
Practice exam strategy:
- Take a full-length exam (90 questions)
- Time yourself: 90 minutes
- Review incorrect answers
- Re-study weak domains
- Repeat until 85%+ score

Use the 'exam mode' on practice tests to simulate real conditions. Avoid pausing or looking up answers during the test.

Don't memorize answers — understand the concepts. CompTIA often rephrases questions or changes scenarios.

Key tips

  • Join online study groups like r/CompTIA or Discord communities. Explaining concepts to others reinforces your own understanding.

  • Use the 'Professor Messer' free video series for domain-by-domain review. His course notes are excellent for last-minute revision.

  • For PBQs, practice with Packet Tracer or Boson NetSim. Real CLI experience is invaluable for drag-and-drop and simulation questions.

  • Memorize common port numbers: SSH (22), HTTP (80), HTTPS (443), DNS (53), DHCP (67/68), and SNMP (161/162). These appear frequently.

  • Take breaks during study sessions. Use the Pomodoro technique: 25 minutes of focused study, then 5 minutes break.

  • On exam day, arrive early, read each question twice, and eliminate obviously wrong answers first. Trust your preparation.

Frequently asked questions

How many questions are on the Network+ N10-009 exam?

The exam has a maximum of 90 questions, including multiple-choice, drag-and-drop, and performance-based questions. You have 90 minutes to complete it. The passing score is 720 out of 900.

What is the best way to prepare for PBQs?

Use simulation tools like Cisco Packet Tracer or Boson NetSim to practice real device configurations. Focus on VLANs, routing, ACLs, and troubleshooting scenarios. PBQs often require you to configure devices or interpret command output.

Do I need to memorize all port numbers?

Yes, common port numbers are heavily tested. Focus on ports like 20/21 (FTP), 22 (SSH), 23 (Telnet), 25 (SMTP), 53 (DNS), 80 (HTTP), 110 (POP3), 143 (IMAP), 443 (HTTPS), 3389 (RDP), and 161/162 (SNMP).

How long should I study for Network+?

Most candidates study for 6-8 weeks, dedicating 10-15 hours per week. If you have prior networking experience, 3-4 weeks may suffice. Focus on weak domains and take at least 3 full-length practice exams before the real test.

Can I skip the troubleshooting domain?

No. The troubleshooting domain is the largest at 24% of the exam. It includes PBQs and scenario-based questions. Skipping it significantly reduces your chances of passing. Master the CompTIA troubleshooting methodology: identify the problem, establish a theory, test the theory, implement a solution, verify functionality, and document findings.

Related glossary terms

Browse full glossary →

Practice with real exam questions

Apply what you just learned with exam-style practice questions.

Related guides