Juniper Enterprise Routing and Switching, Professional JN0-650 JNCIP-ENT Exam Questions

Page: 1 / 14
Total 72 questions
Question 1

Exhibit

Referring to the exhibit, which two statements are correct? (Choose two.)



Answer : B, C

The exhibit shows the output of the command show route protocol bgp on router R1 for the prefix 172.16.10.1/32. To determine the correct characteristics of this route, we analyze the specific BGP attributes and next-hop information provided in the routing table entry:

Multipath Parameter (Option B): The routing table shows two distinct paths for the prefix 172.16.10.1/32. The first path has two next hops (192.168.10.1 and 192.168.20.1) and is marked with the plus symbol (+) and the asterisk (*), indicating it is both an active and the best route. The presence of multiple next hops being used simultaneously for a single BGP path is a clear indication that the multipath parameter is enabled in the BGP configuration. In Junos OS, BGP multipath allows the installation of multiple equal-cost BGP paths into the forwarding table to facilitate load balancing.

Available Next Hops (Option C): The output explicitly lists two functional next hops for the active path: 192.168.10.1 via ge-1/0/0.2 and 192.168.20.1 via ge-1/0/1.3. Both show an outgoing interface, confirming that this route has two next hops available for traffic forwarding.

IBGP vs. EBGP (Option A): The BGP routes shown have an AS path of 200 I. This indicates the routes were learned from an external Autonomous System (AS 200). Furthermore, the protocol preference is 170. In Junos OS, the default preference for External BGP (EBGP) is 170, whereas the default preference for Internal BGP (IBGP) is 200. Therefore, this configuration is for EBGP, not IBGP.

Hidden Next Hops (Option D): The summary line at the top of the exhibit mentions that there are '2 hidden' routes in the inet.0 table. However, these hidden routes are not the next hops for the 172.16.10.1/32 prefix. A hidden route is a prefix that was rejected by policy or has an unreachable next hop; it is not a 'hidden next hop' belonging to an active route.


Question 2

Exhibit

Referring to the exhibit, which two statements are correct? (Choose two.)



Answer : A, B

The exhibit shows the Class of Service (CoS) transmit queue information for interface ge-0/0/11. To determine the correct behavior, we must analyze the bandwidth allocations and the queue limit settings:

Bandwidth Calculation (Option A): In Junos OS, when multiple queues are assigned specific percentages of bandwidth, the 'remainder' (represented by 'r') is the total interface bandwidth minus the sum of the explicitly configured percentages.

Bandwidth assigned to Queue 1 (EF) = 10%.

Bandwidth assigned to Queue 2 (AF) = 10%.

Bandwidth assigned to Queue 3 (NC) = 4%.

Total explicitly assigned = $10\% + 10\% + 4\% = 24\%$.

Remainder for Queue 0 (Best Effort) = $100\% - 24\% = 76\%$.

'Limit: exact' Behavior (Option B): The exhibit shows that Queue 2 (assured-forwarding) has a Limit set to exact.

By default, a queue in Junos can consume more than its allocated bandwidth if other queues are idle.

However, when the exact keyword is applied to the transmit-rate (transmission rate), the queue is strictly rate-limited to its configured percentage.

This means that traffic in Queue 2 will be capped at 10% of the interface bandwidth regardless of whether the network is congested or not. If the traffic exceeds 10%, the excess will be dropped or buffered to match the exact rate.

Option C is incorrect because 100% of the bandwidth is not reserved for a single queue; it is distributed across four queues.

Option D is less accurate than B because it implies the drop behavior only occurs during congestion. The exact parameter enforces the limit even when the rest of the interface is completely idle.


Question 3

You have deployed 802.1X with server fail fallback enabled on an EX Series switch and specified the vlan-name feature for all access ports. The RADIUS server is unavailable.

Which two statements are correct in this scenario? (Choose two )



Answer : B, D

When 802.1X server fail fallback is enabled with the vlan-name feature, the switch provides a specific survival mechanism for both existing and new sessions when the RADIUS server becomes unreachable.

Existing Clients (Statement B): Clients that have already successfully authenticated are unaffected by the server's unavailability in the short term. They maintain their current network access until their specific re-authentication timer expires. Only then will the switch attempt to contact the server again and trigger the fallback action if the server remains down.

New Clients (Statement D): For any new device attempting to connect while the RADIUS server is down, the switch cannot perform a standard authentication. Under the vlan-name fallback configuration, these new clients are automatically placed into the specified fallback VLAN and granted access based on the local policy defined for that VLAN.

Why others are incorrect: Statement A is incorrect because disconnecting active users would cause unnecessary service disruption. Statement C is incorrect because new clients cannot 'request' a VLAN during the 802.1X handshake; the switch assigns it based on the fallback configuration.


Question 4

Your router is discarding an EBGP route because the next hop is not directly connected. Which BGP configuration would you use to override this behavior?



Answer : B

In External BGP (EBGP), there is a default safety mechanism that requires the peer's next hop to be on a directly connected network.

TTL Constraint: By default, EBGP packets are sent with a Time-to-Live (TTL) value of 1. If the next hop is not directly connected (e.g., when peering via loopback interfaces or across a multi-hop path), the packet will expire before reaching the destination, causing the route to be discarded or the session to fail.

The Multihop Solution (Option B): To override this behavior, you must configure the multihop statement under the BGP neighbor or group hierarchy. This allows the BGP session to establish by increasing the TTL (typically to 64 or a user-defined value) and bypasses the 'directly connected' check.

Incorrect Options: Option A (accept-remote-nexthop) is used in internal BGP or specific routing-instance scenarios to resolve next hops that aren't in the local routing table, but it doesn't solve the EBGP TTL/direct-connection requirement. Option C (advertise-inactive) allows BGP to advertise routes that are not the best path in the routing table, which is irrelevant to next-hop reachability. Option D (multipath) is used for load-sharing across multiple paths.


Question 5

When configuring Q-in-Q tunneling, which type of tunneling involves the swapping of S-VLANs with C-VLANs?



Answer : C

In a Juniper Q-in-Q (Layer 2 tunneling) environment, VLAN rewrites (specifically the swap operation) provide the most granular control over how customer traffic (C-VLANs) is mapped to service provider traffic (S-VLANs).

VLAN Rewrites (The Swap Operation): This method involves replacing the incoming customer VLAN tag with a service provider tag as the frame enters the tunnel. This is technically a 'swap' because the original C-VLAN tag is removed and the S-VLAN tag is written in its place. At the egress of the tunnel, the S-VLAN tag is swapped back for the original C-VLAN tag. This is often used when different customers use the same C-VLAN IDs and the provider needs to keep them unique within their core.

Many-to-Many: This is a mapping style where multiple customer VLANs are mapped to multiple service provider VLANs, but it typically relies on the 'push' (stacking) operation rather than a literal 'swap' of the tag itself.

All-in-One: This is the simplest form of Q-in-Q where all traffic entering an interface is 'pushed' into a single S-VLAN tag, regardless of any existing C-VLAN tags. No swapping occurs; the original tags are simply buried under the new provider tag.

L2PT (Layer 2 Protocol Tunneling): This is a feature used to tunnel Layer 2 control protocols (like STP, CDP, or LLDP) across a provider network by encapsulating them or changing their destination MAC addresses. It does not involve the swapping of VLAN tags.


Question 6

Exhibit

You are asked to configure VLAN load balancing on your network using MSTP. Referring to the exhibit, which two statements are correct? (Choose two.)



Answer : B, D

The exhibit shows the MSTP configuration for two switches, switch1 and switch2. MSTP allows you to group multiple VLANs into a single Multiple Spanning Tree Instance (MSTI), enabling different root bridges and topologies for different sets of VLANs.

Root Bridge Election (Option B): For any Spanning Tree instance, the switch with the lowest bridge priority is elected as the root bridge.

For msti 2, switch1 has a priority of 4k (4096), while switch2 has a priority of 8k (8192).

Since 4096 < 8192, switch1 is elected the root bridge for msti 2.

Failover Behavior (Option D): Spanning Tree is designed for redundancy. If a primary root bridge fails, the remaining switches in the network re-elect a new root based on the next lowest priority.

If switch2 goes down, switch1 becomes the only switch in the region.

Regardless of its original priority (4k or 8k), switch1 will take over as the root bridge for both msti 1 and msti 2 because there are no other contenders with a better (lower) priority.

Incorrect Statements: Option A is incorrect because for msti 1, switch2 has the lower priority (4k vs. 8k), making switch2 the root bridge. Option C is incorrect because it contradicts the fundamental high-availability nature of Spanning Tree.


Question 7

Which two statements are correct when using the no-loss forwarding class? (Choose two.)



Answer : B, C

In Junos OS 24.4, the no-loss forwarding class is used for traffic that requires lossless delivery, such as iSCSI or FCoE, typically in a Data Center Bridging (DCB) environment.

Priority-Based Flow Control (Option C): To guarantee 'no-loss' behavior, the switch must support and use Priority-based Flow Control (PFC). PFC allows the switch to send 'pause' frames for a specific priority (forwarding class) to prevent buffer overflow and packet drops without affecting other traffic on the same link.

Forwarding Class Sets (Option B): In enhanced Layer 2 software (ELS) versions used by modern QFX and EX series switches, lossless traffic must be managed within forwarding class sets (also known as priority groups). This grouping is necessary to apply specific DCB properties, such as PFC and specific bandwidth guarantees, to the lossless traffic class.

Why A and D are incorrect: Default scheduler maps and default drop profiles do not provide the specialized buffer management or lossless signaling required for this class. Lossless traffic specifically requires the suppression of tail drops rather than standard drop profiles.


Page:    1 / 14   
Total 72 questions