Question 58 of 514
Junos Configuration BasicshardMultiple ChoiceObjective-mapped

Quick Answer

The correct answer is that the firewall filter is applied to transit traffic only, while locally generated traffic bypasses the input filter. In Junos, an input firewall filter on an interface like ge-0/0/0 inspects only packets that enter that interface and are destined to be forwarded through the router—this is transit traffic. Locally generated traffic, such as ICMP pings originated by the router’s control plane, does not enter through a transit interface; it is generated internally and thus never hits the input filter. On the JNCIA-Junos exam, this concept tests your understanding of firewall filter scope, a common trap where students assume “input” means all incoming packets. Remember that input filters on physical interfaces only see transit packets; to control locally generated traffic, you must apply a filter to the loopback interface or use an output filter. A helpful memory tip: “Input filters block what comes in from outside, not what starts inside.”

JNCIA-JUNOS Junos Configuration Basics Practice Question

This JNCIA-JUNOS practice question tests your understanding of junos configuration basics. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. 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.

Exhibit

Refer to the exhibit.

```
edit
[edit]
user@router# show | display set | match ge-0/0/0
set interfaces ge-0/0/0 unit 0 family inet address 10.0.0.1/24
set interfaces ge-0/0/0 unit 0 family inet filter input BLOCK-ICMP
set interfaces ge-0/0/0 unit 0 family inet filter output ALLOW-ALL

[edit]
user@router# run ping 10.0.0.2 count 2
PING 10.0.0.2 (10.0.0.2): 56 data bytes
64 bytes from 10.0.0.2: icmp_seq=0 ttl=64 time=1.234 ms
64 bytes from 10.0.0.2: icmp_seq=1 ttl=64 time=1.345 ms

--- 10.0.0.2 ping statistics ---
2 packets transmitted, 2 packets received, 0% packet loss
```

Refer to the exhibit. The administrator applied a firewall filter named BLOCK-ICMP on the inbound direction of ge-0/0/0. However, pings from the router to 10.0.0.2 are successful. Why is this?

Question 1hardmultiple choice
Review the full routing breakdown →

Exhibit

Refer to the exhibit.

```
edit
[edit]
user@router# show | display set | match ge-0/0/0
set interfaces ge-0/0/0 unit 0 family inet address 10.0.0.1/24
set interfaces ge-0/0/0 unit 0 family inet filter input BLOCK-ICMP
set interfaces ge-0/0/0 unit 0 family inet filter output ALLOW-ALL

[edit]
user@router# run ping 10.0.0.2 count 2
PING 10.0.0.2 (10.0.0.2): 56 data bytes
64 bytes from 10.0.0.2: icmp_seq=0 ttl=64 time=1.234 ms
64 bytes from 10.0.0.2: icmp_seq=1 ttl=64 time=1.345 ms

--- 10.0.0.2 ping statistics ---
2 packets transmitted, 2 packets received, 0% packet loss
```

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

The filter is applied to transit traffic only; locally generated traffic bypasses the input filter.

Option D is correct because in Junos, firewall filters applied to the input direction of an interface only affect transit traffic—packets that enter the interface and are destined for another device. Locally generated traffic, such as ICMP echo requests originated by the router itself, is not subject to input firewall filters; it is instead controlled by the loopback interface's firewall filter or the output filter. Since the ping originates from the router's control plane, it bypasses the input filter on ge-0/0/0, allowing the ping to 10.0.0.2 to succeed.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • The filter configuration is incorrect; the name should be within quotes.

    Why it's wrong here

    Filter names without spaces do not require quotes.

  • The filter is applied to output traffic, not input traffic.

    Why it's wrong here

    The configuration shows 'filter input BLOCK-ICMP', so it is applied inbound.

  • The BLOCK-ICMP filter allows ICMP by default.

    Why it's wrong here

    The filter is named BLOCK-ICMP, implying it blocks ICMP, but the ping succeeds anyway.

  • The filter is applied to transit traffic only; locally generated traffic bypasses the input filter.

    Why this is correct

    Locally generated packets exit via the output path, not input filter.

    Related concept

    Read the scenario before looking for a memorised answer.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often assume input firewall filters apply to all traffic entering an interface, including packets generated by the router itself, but Junos explicitly exempts locally originated traffic from input filters on physical interfaces.

Trap categories for this question

  • Command / output trap

    The configuration shows 'filter input BLOCK-ICMP', so it is applied inbound.

Detailed technical explanation

How to think about this question

In Junos, the control plane and forwarding plane are separated; locally generated packets (e.g., from ping, SSH, or BGP) are processed by the Routing Engine and are not subject to interface input filters. To filter such traffic, you must apply a firewall filter to the loopback interface (lo0) in the input direction, which intercepts packets destined for the router itself. This behavior is defined by the Junos architecture and is critical for securing management access without affecting transit traffic.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A small business has 20 workstations on the 192.168.1.0/24 network and one public IP from its ISP. The router uses PAT (NAT overload) so all 20 devices share one public address using different source ports. NAT questions test whether you understand the four address terms and which direction each translation applies.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related JNCIA-JUNOS practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free JNCIA-JUNOS practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this JNCIA-JUNOS question test?

Junos Configuration Basics — This question tests Junos Configuration Basics — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: The filter is applied to transit traffic only; locally generated traffic bypasses the input filter. — Option D is correct because in Junos, firewall filters applied to the input direction of an interface only affect transit traffic—packets that enter the interface and are destined for another device. Locally generated traffic, such as ICMP echo requests originated by the router itself, is not subject to input firewall filters; it is instead controlled by the loopback interface's firewall filter or the output filter. Since the ping originates from the router's control plane, it bypasses the input filter on ge-0/0/0, allowing the ping to 10.0.0.2 to succeed.

What should I do if I get this JNCIA-JUNOS question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

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 →

How Courseiva writes practice questions · Editorial policy

Last reviewed: Jun 24, 2026

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.

Loading comments…

Sign in to join the discussion.

This JNCIA-JUNOS practice question is part of Courseiva's free Juniper Networks 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 JNCIA-JUNOS exam.