A regional carrier-hotel operator wants to protect a POP router's Routing Engine from unauthorized SSH and SNMP attempts, without affecting the transit customer traffic the router forwards through its packet-forwarding engine. Which interface should the firewall filter be applied to for this purpose?
Select an answer to reveal the explanation.
Short Explanation
The loopback interface is where all the traffic destined for the router itself — not traffic just passing through it — gets evaluated by the Routing Engine. Put a filter there and you're guarding the router's own control-plane doorway, and transit traffic headed through the box to somewhere else never even touches that check.
Full Explanation
In Junos, traffic destined for the Routing Engine — SSH, SNMP, routing-protocol exchanges, and similar locally terminated traffic — is evaluated against a firewall filter applied to the loopback interface, lo0, because lo0 represents the router's own identity from the control plane's point of view. Applying a filter there lets the operator permit SSH and SNMP only from trusted NOC sources and drop everything else, while transit traffic that the packet-forwarding engine simply forwards through the router never traverses lo0 and is unaffected. Applying the filter to every subscriber-facing physical interface instead would require duplicating the same restriction across many interfaces and risks accidentally catching legitimate transit traffic if match conditions are not written with surgical precision, which is exactly the mistake a loopback filter avoids. Restricting only management Ethernet output traffic misses the point — inbound attempts to reach the RE typically arrive on production interfaces and get routed internally to lo0, not necessarily through a dedicated management port, and output-only filtering would not stop inbound unauthorized attempts. Referencing fxp1 conflates the physical out-of-band management port with the logical loopback concept the RE uses for self-addressed traffic. As a concrete check, an engineer can attempt an SSH connection from outside the permitted NOC range and confirm it is rejected while 'show interfaces lo0 | display detail' and the filter's counters show the drop, with normal transit forwarding unaffected throughout.