6.3 High-Yield Review & Test Strategy
Key Takeaways
- The JNCIA-Junos exam is 65 multiple-choice questions in 90 minutes, which is roughly 80 seconds per question; pace yourself and flag-and-return rather than stalling on any single item.
- Highest-leverage content areas are User Interfaces (CLI/commit/rollback) and Configuration Basics, which together dominate the exam, followed by Routing Fundamentals; spend study time proportionally.
- Memorize the Junos route preference (administrative distance) table and the per-protocol default routing policies, because these are direct, frequently tested recall facts.
- The most common traps are confusing routing policy with firewall filters, reversing import vs export, forgetting commit-confirmed rollback timing, and forgetting the implicit firewall discard.
- A realistic plan is 40-70 hours over 3-6 weeks: foundations and CLI first, then configuration and monitoring, then routing and policy, finishing with full timed practice sets.
Cross-Objective Recap
This section pulls together the highest-yield facts from the whole guide. Because Juniper does not publish official numeric weightings or a numeric passing score for JNCIA-Junos, the goal is broad, confident coverage of all seven objectives, not chasing a target percentage.
CLI and Commit Workflow (most heavily tested area)
- Junos has two CLI modes: operational mode (
>prompt, monitoring/troubleshooting) and configuration mode (#prompt, entered withconfigureoredit). - Edits change the candidate configuration; they take effect only after
commitcopies the candidate to the active configuration. commit confirmedactivates the config but automatically rolls back after the timeout (default 10 minutes) unless a follow-upcommitconfirms it — the safety net for remote changes.commit checkvalidates without activating;rollback <n>loads a previous config (Junos stores the last 50 committed configurations,rollback 0= active);show | compareshows candidate-vs-active differences.- Rescue configuration is a known-good saved config restored with
rollback rescue.
Route Preference (Junos Administrative Distance)
When multiple sources offer the same prefix, Junos installs the route from the source with the lowest preference value:
| Route source | Default preference |
|---|---|
| Direct / local | 0 |
| Static | 5 |
| OSPF internal | 10 |
| IS-IS Level 1 internal | 15 |
| IS-IS Level 2 internal | 18 |
| RIP | 100 |
| OSPF AS external | 150 |
| BGP (both EBGP and IBGP) | 170 |
Lower value wins. This table is a direct recall favorite — memorize the relative order, especially direct < static < OSPF < RIP < BGP.
Policy vs Filter (the most confused pair)
| Routing policy | Stateless firewall filter | |
|---|---|---|
| Acts on | Routes (control plane) | Packets (forwarding plane) |
| Hierarchy | policy-options | firewall |
| Directions | import / export | input / output (per interface) |
| Default at end | Per-protocol default policy | Implicit silent discard |
| Final actions | accept / reject | accept / discard / reject |
Objective → Must-Know Table
Use this table for a final pass the day before the exam. It maps each published JNCIA-Junos objective to the facts that produce the most points.
| Objective area | Must-know items |
|---|---|
| Networking Fundamentals | Collision vs broadcast domains; switch vs router roles; IPv4/IPv6 basics; subnetting and binary conversion; longest-prefix match wins route selection; connection-oriented (TCP) vs connectionless (UDP) |
| Junos OS Fundamentals | Control plane = Routing Engine (RE); forwarding plane = Packet Forwarding Engine (PFE); transit traffic stays in the PFE; exception traffic (e.g., to the RE, with IP options) is punted to the RE; Junos is modular with separate processes |
| User Interfaces | Operational vs configuration mode; hierarchy navigation (edit, up, top, exit); ? and help; output filtering with pipe (` |
| Configuration Basics | Factory-default state; root password required before first commit; user accounts and login classes (permission flags); authentication order (local, RADIUS, TACACS+); interface naming type-fpc/pic/port and logical unit; configuration groups with apply-groups; NTP, SNMP, syslog, archival, traceoptions, rescue config |
| Operational Monitoring & Maintenance | show interfaces, show route, show system, monitor traffic/monitor interface; reading input/output errors and drops; ping/traceroute from the device; software install/upgrade; safe request system halt/reboot; root-password recovery via console single-user/recovery mode |
| Routing Fundamentals | Routing table (RIB) vs forwarding table (FIB); route preference table; static routes and next-hop/qualified-next-hop; floating static; routing instances (e.g., virtual-router); why dynamic protocols are used (scalability, convergence) |
| Routing Policy & Firewall Filters | Policy terms (from/then), import vs export, per-protocol default policies, policy chains; firewall filter terms (from/then), terminating actions, implicit discard, action-modifiers (count/log/policer), lo0 for RE protection, unicast RPF validates source against the route to that source |
Pacing: 65 Questions in 90 Minutes
The exam is 65 multiple-choice questions in 90 minutes — about 83 seconds per question. Practical pacing strategy:
- First pass (~60–65 min): Answer everything you know quickly. Most JNCIA items are recall-based and should take well under a minute.
- Flag-and-return: If a question needs more than ~90 seconds, pick your best answer, flag it, and move on. Never let one scenario question burn five minutes.
- Second pass (~15–20 min): Revisit flagged items. Fresh eyes plus elimination usually resolve them.
- Final pass (~5 min): Confirm nothing is left blank — there is no penalty for guessing, so every question must have an answer.
Progress checkpoints: aim to be at question ~22 by 30 minutes and ~44 by 60 minutes. If you are behind, speed up the recall questions; do not skip the final review.
Answering technique: read the full question stem and all four options, eliminate clearly wrong choices, and watch for negative wording ("which is NOT true"). For "choose the best" questions, the answer is usually the most specific Junos-correct statement, not just a plausible-sounding one.
Common JNCIA-Junos Traps
| Trap | The reality |
|---|---|
| Routing policy filters packets | Policy acts on routes; firewall filters act on packets |
| Import and export reversed | Import = routes coming in; export = routes going out / advertised |
| Forgetting the implicit discard | Every firewall filter ends with a silent terminating discard — add an explicit accept |
discard = reject | discard is silent; reject sends an unreachable message |
| Edits apply immediately | Edits hit the candidate config; nothing changes until commit |
commit confirmed is permanent | It auto-rolls back after the timeout unless a second commit confirms |
| RIP/OSPF default exports | RIP exports nothing by default; OSPF/IS-IS export only their own routes by default; BGP exports all BGP routes |
| RIB vs FIB | The routing table (RIB) holds all candidate routes; only the best routes go to the forwarding table (FIB) in the PFE |
| Route preference vs metric | Preference selects between protocols; metric/cost selects within a protocol |
| Lower or higher preference wins? | Lower preference value wins (direct 0 < static 5 < OSPF 10 < RIP 100 < BGP 170) |
Review this table last — these specific misconceptions cause more lost points than any genuine knowledge gap.
Study-Plan Timeline
Most candidates with general networking experience pass with 40–70 hours over 3–6 weeks. Suggested schedule:
| Phase | Focus | Approx. hours |
|---|---|---|
| Week 1 | Networking refresh (Ethernet, IPv4/IPv6, subnetting, longest match) + Junos architecture (RE/PFE, transit vs exception) | 12–15 |
| Week 2 | CLI mastery: modes, hierarchy, help, filtering, candidate vs active, commit/commit confirmed, rollback, rescue | 10–14 |
| Week 3 | Configuration Basics: users, login classes, authentication, interfaces, groups, NTP/SNMP/syslog, tracing | 10–14 |
| Week 4 | Monitoring & maintenance + Routing Fundamentals (RIB/FIB, route preference, static routes, instances) | 8–12 |
| Week 5 | Routing policy and firewall filters (this chapter); drill default policies and implicit discard | 6–10 |
| Week 6 | Full timed practice sets, review missed items by objective, re-drill weak spots, final trap review | 8–12 |
Guidelines for the final week:
- Take complete 65-question timed sets to build pacing endurance.
- Review every missed question by objective until the underlying concept — not the specific question — is solid.
- Spend the last day on the objective → must-know table and the common traps table, not on new material.
- Verify exam logistics: as of the 2026 update, JN0-105 runs through April 5, 2026, and JN0-106 starts April 6, 2026 — confirm which code you are scheduled for with Pearson VUE.
Enter the exam aiming for broad coverage and calm pacing. You have prepared for every objective — trust the recall, flag the hard ones, and finish strong.
On the JNCIA-Junos exam (65 questions, 90 minutes), you reach a scenario question that you cannot resolve after about 90 seconds. What is the best strategy?
Two routing sources offer the same prefix: a static route and an OSPF internal route. With default Junos preferences, which route is installed in the forwarding table, and why?
A candidate confuses two JNCIA concepts on the exam. Which statement correctly separates them?
Based on the recommended JNCIA-Junos study plan, which approach best uses the final week before the exam?
You've completed this section
Continue exploring other exams