Exam facts at a glance
- ~100-120 questions, multiple choice, drag-and-drop, and simulation-style items.
- 120 minutes.
- $300 USD per attempt.
- Passing score: not published; ~825/1000 (scaled) is the widely cited figure.
- Valid 3 years.
- Retake wait: 5 / 30 / 45 / 180 calendar days, escalating with each failed attempt.
- Pearson VUE test center or Pearson OnVUE online. Closed book.
- Full exam-format details: CCNA Exam Guide 2026.
Subnetting quick reference
The single most-tested skill embedded across every domain. Usable hosts per subnet = 2^(host bits) − 2.
| CIDR | Subnet Mask | Usable Hosts |
|---|---|---|
| /24 | 255.255.255.0 | 254 |
| /25 | 255.255.255.128 | 126 |
| /26 | 255.255.255.192 | 62 |
| /27 | 255.255.255.224 | 30 |
| /28 | 255.255.255.240 | 14 |
| /29 | 255.255.255.248 | 6 |
| /30 | 255.255.255.252 | 2 |
Exam tell: "at least N usable hosts, fewest wasted addresses" → find the smallest subnet size whose usable-host count still meets N. Full walkthrough: Subnetting Explained.
OSI model at a glance
| Layer | Name | Example |
|---|---|---|
| 7 | Application | HTTP, DNS, DHCP |
| 6 | Presentation | Encryption, encoding |
| 5 | Session | Session establishment |
| 4 | Transport | TCP, UDP, port numbers |
| 3 | Network | IP addressing, routing |
| 2 | Data Link | MAC addressing, switching |
| 1 | Physical | Cabling, signaling |
Administrative distance table
Lower administrative distance always wins when multiple sources offer a route to the same destination — checked before metric.
| Source | Default AD |
|---|---|
| Directly connected | 0 |
| Static route | 1 |
| EIGRP (internal) | 90 |
| OSPF | 110 |
| RIP | 120 |
| Unknown / unreachable | 255 (never installed) |
STP port states and roles
- Root port: the one port per non-root switch with the best path back to the root bridge.
- Designated port: the forwarding port on each network segment, chosen for the best path to the root.
- Blocking port: discards data frames to prevent a loop, but still listens for BPDUs.
- Root bridge election: lowest Bridge ID wins (priority, then MAC address as tiebreaker).
OSPF vs EIGRP at a glance
| Property | OSPF | EIGRP |
|---|---|---|
| Type | Open standard, link-state | Cisco-proprietary, advanced distance-vector |
| Metric | Cost (based on bandwidth) | Composite (bandwidth + delay by default) |
| Admin distance | 110 | 90 (internal) |
| Convergence | Fast (SPF recalculation) | Very fast (DUAL, feasible successors) |
| CCNA depth required | Deep — primary routing protocol on the exam | Conceptual awareness only |
OSPF is the routing protocol CCNA actually configures and troubleshoots in depth. Full breakdown: OSPF Explained.
NAT types
- Static NAT: one-to-one, permanent mapping of a private address to a public address.
- Dynamic NAT: maps private addresses to a pool of public addresses, first-come-first-served.
- PAT (NAT overload): many private addresses share one public address, distinguished by port number — the most common real-world NAT type.
ACL types
- Standard ACL: filters by source IP address only. Numbered 1-99 or 1300-1999.
- Extended ACL: filters by source/destination IP, protocol, and port. Numbered 100-199 or 2000-2699.
- Placement rule: place standard ACLs close to the destination (they can only match source, so placing them near the source over-blocks). Place extended ACLs close to the source (they can match precisely, so blocking early saves bandwidth).
Wireless standards and security
- 802.11ac / 802.11ax (Wi-Fi 6): current-generation standards tested at a conceptual level — frequency bands (2.4 GHz vs 5 GHz) and non-overlapping channels.
- WPA2: AES encryption, still widely deployed.
- WPA3: current-generation standard, stronger encryption and protection against offline password-guessing attacks.
Automation vocabulary
- REST API: the standard way modern network devices and controllers expose programmatic configuration and monitoring.
- JSON: the standard data format for REST API request/response bodies.
- SDN (Software-Defined Networking): separates the control plane (decision-making) from the data plane (forwarding), typically centralized in a controller.
- Ansible / Puppet / Chef: configuration-management tools that automate device configuration at scale — know them by name and purpose, not syntax, for CCNA.
Common port numbers
| Protocol | Port |
|---|---|
| DNS | 53 |
| DHCP (server/client) | 67 / 68 |
| HTTP / HTTPS | 80 / 443 |
| SSH | 22 |
| Telnet | 23 |
| SNMP | 161 |
| NTP | 123 |
Top 5 trap-question patterns
- "Which route is installed?" — always compare administrative distance first, metric only within the same source.
- Standard ACL for protocol/port filtering — wrong. Standard ACLs only match source IP; use extended for protocol or port.
- Access port carrying multiple VLANs — always wrong. Access ports carry exactly one VLAN; trunk ports carry multiple.
- Confusing OSPF cost with EIGRP composite metric — OSPF cost is bandwidth-based; EIGRP’s default metric factors in both bandwidth and delay.
- Reading "select TWO" as "select the best ONE" — multiple-response items require every correct option; there is no partial credit.
Detailed explanations in How to Pass CCNA on the First Try.
Exam-day pocket guide
- ~100-120 questions, 120 minutes. Simlets can take 5-8 minutes each — budget accordingly and do not panic if the clock feels tight mid-exam.
- "Select TWO/THREE" questions: read the stem twice, no partial credit.
- Directly connected beats static beats EIGRP beats OSPF beats RIP, by administrative distance, whenever routes to the same destination compete.
- Extended ACLs go near the source; standard ACLs go near the destination.
- In a simlet, run
showcommands first to understand the actual topology state before answering — do not assume the diagram matches a healthy configuration. - Passing score is unpublished and scaled — do not try to count your correct answers during the exam.
- If frozen on a question past 2 minutes: flag, move on, return at the end.
Frequently asked questions
Can I use this cheat sheet during the CCNA exam?
No. 200-301 is closed book under proctored conditions, whether at a Pearson VUE test center or online via Pearson OnVUE. Use this cheat sheet for review before the exam, especially in the final 48-72 hours.
Is there a printable PDF of the CCNA cheat sheet?
A printable PDF version is coming soon. For now, use your browser print function (Ctrl/Cmd+P) and select "save as PDF" for a clean printable copy of this page.
What is the single most important section to memorize?
The subnetting quick reference and the administrative distance table. Slow subnetting math and confusing which routing source wins account for the largest share of missed points among first-time candidates, and both show up embedded inside questions from domains that are not explicitly "about" them.
Does this cheat sheet cover everything on the exam?
It covers the high-yield reference material — subnetting, routing preference, port security, and the concepts most often tested from multiple angles. It is a compression for review, not a substitute for hands-on Packet Tracer labs or the full CertSharp question bank.
Pair the cheat sheet with practice
The cheat sheet is for review. The CertSharp question bank is for testing whether you have actually internalized it. 30 free questions, no signup. $11.99 lifetime for the full 500.