Free Juniper JN0-664 Exam Actual Questions

The questions for JN0-664 were last updated On Jan 18, 2025

Question No. 1

A router running IS-IS is configured with an ISO address of 49.0001.00a0.c96b.c490.00.

Which part of this address is the system ID?

Show Answer Hide Answer
Correct Answer: A

In IS-IS (Intermediate System to Intermediate System) routing, each router is identified by a unique ISO (International Organization for Standardization) address, also known as a Network Entity Title (NET). The NET consists of three parts:

1. **Area Identifier**: Indicates the area to which the router belongs.

2. **System Identifier**: Uniquely identifies the router within the area.

3. **NSAP Selector (NSEL)**: Typically set to 00 for a router, indicating the Network Service Access Point.

The format of the ISO address is `49.XXXX.YYYY.YYYY.ZZZZ.ZZZZ.00`, where:

- `49` is the AFI (Authority and Format Identifier) indicating a private address.

- `XXXX` is the Area Identifier.

- `YYYY.YYYY.YYYY` is the System Identifier.

- `ZZZZ.ZZZZ` is the NSAP Selector.

Given the address `49.0001.00a0.c96b.c490.00`:

- **Area Identifier**: `49.0001`

- **System Identifier**: `00a0.c96b.c490`

- **NSAP Selector**: `00`

**Explanation**:

- **A. 00a0.c96b.c490 is the system identifier**:

- Correct. The System Identifier in an ISO address is a 48-bit (6-byte) field used to uniquely identify the router. In this address, `00a0.c96b.c490` is the correct 6-byte System Identifier.

- **B. 0001.00a0.c96b.c490 is the system identifier**:

- Incorrect. This includes the Area Identifier as part of the System Identifier, which is not correct.

- **C. c96b.c490 is the system identifier**:

- Incorrect. This is only part of the System Identifier. The full System Identifier must be 6 bytes long.

- **D. c490 is the system identifier**:

- Incorrect. This is an incomplete and incorrect part of the System Identifier.

**Conclusion**:

The correct part of the address that represents the System Identifier is:

**A. 00a0.c96b.c490 is the system identifier.**

**Reference**:

- Juniper Networks Documentation on IS-IS: [IS-IS Configuration](https://www.juniper.net/documentation/en_US/junos/topics/task/configuration/isis-configuring.html)

- ISO/IEC 10589, the IS-IS routing protocol standard.


Question No. 2

Refer to the exhibit.

Click the Exhibit button.

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

Show Answer Hide Answer
Correct Answer: C, D

In the exhibit, the output of the `show route protocol bgp` command is shown for the prefix `172.16.20.4/30`. Let's analyze the provided BGP routing table to determine which statements are correct.

1. **AS Path Analysis**:

- The AS path for the route `172.16.20.4/30` is shown as `2 I`.

- This indicates that the route was learned from AS 2 and it is an internal (iBGP) route within the same AS.

2. **Multiple Paths**:

- The route has two next-hop IP addresses: `10.0.18.2` via interface `ge-1/0/4.0` and `10.0.19.2` via interface `ge-1/0/5.0`.

- This indicates that BGP multipath is configured, which allows multiple equal-cost paths to be used for load balancing.

- BGP multipath must be explicitly configured to use multiple paths for the same prefix.

3. **Multihop vs. Multipath**:

- **Multihop Configuration**: This is typically used for establishing BGP sessions with peers that are not directly connected. It is not related to load balancing.

- **Multipath Configuration**: This is used to enable load balancing across multiple paths for the same prefix, which is the case here.

**Conclusion**:

Given the above analysis:

- **C. This route is learned from the same AS number**: Correct. The AS path `2 I` indicates the route was learned from the same AS number (AS 2).

- **D. The multipath configuration is used for load balancing**: Correct. The presence of multiple next-hops indicates that BGP multipath is configured for load balancing.

Thus, the correct answers are:

**C. This route is learned from the same AS number.**

**D. The multipath configuration is used for load balancing.**

**Reference**:

- Junos OS BGP Multipath Documentation: [Junos OS BGP Multipath](https://www.juniper.net/documentation/en_US/junos/topics/topic-map/bgp-multipath.html)

- Junos OS BGP Configuration Guide: [Junos OS BGP Configuration](https://www.juniper.net/documentation/en_US/junos/topics/concept/bgp-routing-overview.html)


Question No. 3

Exhibit

You are troubleshooting the connection between AS 64496 and AS 64497 and notice that only one of the paths is being used for traffic forwarding.

Referring to the exhibit, which three actions will ensure that R1 is configured properly for load balancing BGP routes? (Choose three.)

Show Answer Hide Answer
Correct Answer: A, B, D

Question No. 5

An interface is configured with a behavior aggregate classifier and a multifield classifier How will the packet be processed when received on this interface?

Show Answer Hide Answer
Correct Answer: C

behavior aggregate (BA) classifiers and multifield (MF) classifiers are two types of classifiers that are used to assign packets to a forwarding class and a loss priority based on different criteria. The forwarding class determines the output queue for a packet. The loss priority is used by a scheduler to control packet discard during periods of congestion.

A BA classifier maps packets to a forwarding class and a loss priority based on a fixed-length field in the packet header, such as DSCP, IP precedence, MPLS EXP, or IEEE 802.1p CoS bits. A BA classifier is computationally efficient and suitable for core devices that handle high traffic volumes. A BA classifier is useful if the traffic comes from a trusted source and the CoS value in the packet header is trusted.

An MF classifier maps packets to a forwarding class and a loss priority based on multiple fields in the packet header, such as source address, destination address, protocol type, port number, or VLAN ID. An MF classifier is more flexible and granular than a BA classifier and can match packets based on complex filter rules. An MF classifier is suitable for edge devices that need to classify traffic from untrusted sources or rewrite packet headers.

You can configure both a BA classifier and an MF classifier on an interface. If you do this, the BA classification is performed first and then the MF classification. If the two classification results conflict, the MF classification result overrides the BA classification result.

Based on this information, we can infer the following statements:

The packet will be discarded. This is not correct because the packet will not be discarded by the classifiers unless it matches a filter rule that specifies discard as an action. The classifiers only assign packets to a forwarding class and a loss priority based on their match criteria.

The packet will be processed by the BA classifier first, then the MF classifier. This is correct because if both a BA classifier and an MF classifier are configured on an interface, the BA classification is performed first and then the MF classification. If they conflict, the MF classification result overrides the BA classification result.

The packet will be forwarded with no classification changes. This is not correct because the packet will be classified by both the BA classifier and the MF classifier if they are configured on an interface. The final classification result will determine which output queue and which discard policy will be applied to the packet.

The packet will be processed by the MF classifier first, then the BA classifier. This is not correct because if both a BA classifier and an MF classifier are configured on an interface, the BA classification is performed first and then the MF classification. If they conflict, the MF classification result overrides the BA classification result.