Latest JN0-664 exam dumps with real Juniper questions and answers
JN0-664 Exam in First Attempt Guaranteed
The JN0-664 exam is a comprehensive test that requires a solid understanding of service provider routing and switching. To prepare for JN0-664 exam, candidates should have hands-on experience with Juniper Networks' service provider routing and switching platforms. Additionally, candidates are encouraged to take advantage of Juniper Networks' training resources, including online courses, virtual labs, and instructor-led training.
Juniper JN0-664 (Service Provider, Professional (JNCIP-SP)) Exam is a certification exam offered by Juniper Networks, a leading provider of network solutions. JN0-664 exam is designed for professionals who are responsible for designing, configuring, and managing Juniper Networks service provider routing and switching platforms. The JN0-664 exam is intended for individuals who have a solid understanding of networking technologies and protocols and have experience working with Juniper Networks products.
Juniper JN0-664 exam, also known as the Service Provider Professional (JNCIP-SP) exam, is designed to test the knowledge and skills of networking professionals who work in service provider environments. Service Provider, Professional (JNCIP-SP) certification exam validates the proficiency of candidates in configuring, managing, and troubleshooting Juniper Networks service provider routing platforms and operating systems.
NEW QUESTION # 10 
Click the Exhibit button.
Referring to the exhibit, you must provide VRF Internet access over a single connection for VPN-A Site 1, which connects to PE-1.
Which two statements are correct in this scenario? (Choose two.)
- A. You must use the RIB group to move a default route, which is learned through BGP, from the inet. o table to the VPN-A. inet. 0 table.
- B. You do not need to use the RIB group default route, which is learned through BGP, from the inet. o table to the VPN-A. inet. 0 table.
- C. You do not need to use the RIB group to move interface routes from the inet. o table to the VPN-A. inet.
0 table. - D. You must use the RIB group to move interface routes from the inet . 0 table to the VPN-A. inet. 0 table.
Answer: A,C
Explanation:
In the provided exhibit, the configuration involves using a RIB (Routing Information Base) group to facilitate internet access for VPN-A Site 1 through PE-1. The goal is to provide VRF Internet access over a single connection.
1. **Understanding RIB Groups**:
- RIB groups allow for the import and export of routes between different routing tables.
- In this scenario, we have two RIBs: `inet.0` (the main routing table) and `VPN-A.inet.0` (the VRF-specific routing table).
2. **Statement Analysis**:
- **A. You must use the RIB group to move a default route, which is learned through BGP, from the inet.0 table to the VPN-A.inet.0 table.**
- Correct. To provide Internet access to VPN-A, the default route (0.0.0.0/0) learned via BGP in the `inet.0` table must be made available in the `VPN-A.inet.0` table. This is done using the RIB group to import the default route.
- **B. You do not need to use the RIB group to move interface routes from the inet.0 table to the VPN-A.inet.0 table.**
- Correct. Interface routes (connected routes) are typically directly added to both the global and the VRF routing tables without needing a RIB group. These routes are known to the VRF because the interfaces are part of the VRF configuration.
- **C. You do not need to use the RIB group default route, which is learned through BGP, from the inet.0 table to the VPN-A.inet.0 table.**
- Incorrect. As discussed, the default route needs to be imported into the VRF's routing table using a RIB group to enable Internet access for the VRF.
- **D. You must use the RIB group to move interface routes from the inet.0 table to the VPN-A.inet.0 table.**
- Incorrect. Interface routes are directly associated with the VRF interfaces and are automatically known to the VRF routing table. There is no need to use a RIB group for these routes.
**Conclusion**:
The correct answers are:
**A. You must use the RIB group to move a default route, which is learned through BGP, from the inet.0 table to the VPN-A.inet.0 table.**
**B. You do not need to use the RIB group to move interface routes from the inet.0 table to the VPN-A.inet.0 table.**
**References**:
- Juniper Networks Documentation on RIB Groups: [RIB Groups
Overview](https://www.juniper.net/documentation/en_US/junos/topics/concept/rib-groups-overview.html)
- Junos OS VPNs Configuration Guide: [Junos VPNs
Configuration](https://www.juniper.net/documentation/en_US/junos/topics/concept/vpns-overview.html)
NEW QUESTION # 11
Exhibit
user@Rl show configuration interpolated-profile { interpolate {
fill-level [ 50 75 drop-probability [ > }
class-of-service drop-profiles
];
20 60 ];
Which two statements are correct about the class-of-service configuration shown in the exhibit? (Choose two.)
- A. To use this drop profile, you apply it directly to an interface.
- B. To use this drop profile, you reference it in a scheduler.
- C. The drop probability gradually increases from 20% to 60% as the queue level increases from 50% full to
75% full - D. The drop probability jumps immediately from 20% to 60% when the queue level reaches 75% full.
Answer: B,C
Explanation:
class-of-service (CoS) is a feature that allows you to prioritize and manage network traffic based on various criteria, such as application type, user group, or packet loss priority. CoS uses different components to classify, mark, queue, schedule, shape, and drop traffic according to the configured policies.
One of the components of CoS is drop profiles, which define how packets are dropped when a queue is congested. Drop profiles use random early detection (RED) algorithm to drop packets randomly before the queue is full, which helps to avoid global synchronization and improve network performance. Drop profiles can be discrete or interpolated. A discrete drop profile maps a specific fill level of a queue to a specific drop probability. An interpolated drop profile maps a range of fill levels of a queue to a range of drop probabilities and interpolates the values in between.
In the exhibit, we can see that the class-of-service configuration shows an interpolated drop profile with two fill levels (50 and 75) and two drop probabilities (20 and 60). Based on this configuration, we can infer the following statements:
* The drop probability jumps immediately from 20% to 60% when the queue level reaches 75% full. This is not correct because the drop profile is interpolated, not discrete. This means that the drop probability gradually increases from 20% to 60% as the queue level increases from 50% full to 75% full. The drop probability for any fill level between 50% and 75% can be calculated by using linear interpolation formula.
* The drop probability gradually increases from 20% to 60% as the queue level increases from 50% full to
75% full. This is correct because the drop profile is interpolated and uses linear interpolation formula to calculate the drop probability for any fill level between 50% and 75%. For example, if the fill level is
60%, the drop probability is 28%, which is calculated by using the formula: (60 - 50) / (75 - 50) * (60 -
20) + 20 = 28.
* To use this drop profile, you reference it in a scheduler. This is correct because a scheduler is a
* component of CoS that determines how packets are dequeued from different queues and transmitted on an interface. A scheduler can reference a drop profile by using the random-detect statement under the
[edit class-of-service schedulers] hierarchy level. For example: scheduler test { transmit-rate percent 10; buffer-size percent 10; random-detect test-profile; }
* To use this drop profile, you apply it directly to an interface. This is not correct because a drop profile cannot be applied directly to an interface. A drop profile can only be referenced by a scheduler, which can be applied to an interface by using the scheduler-map statement under the [edit class-of-service interfaces] hierarchy level. For example: interfaces ge-0/0/0 { unit 0 { scheduler-map test-map; } }
NEW QUESTION # 12
Exhibit
Which two statements are true about the OSPF adjacency displayed in the exhibit? (Choose two.)
- A. There is a mismatch in the dead interval parameter between routers R1 and R2.
- B. There is a mismatch in the OSPF hold timer parameter between routers R1 and R2.
- C. There is a mismatch in the poll interval parameter between routers R1 and R2.
- D. There is a mismatch in the hello interval parameter between routers R1 and R2
Answer: A,D
Explanation:
The hello interval is the time interval between two consecutive hello packets sent by an OSPF router on an interface. The dead interval is the time interval after which a neighbor is declared down if no hello packets are received from it. These parameters must match between two OSPF routers for them to form an adjacency. In the exhibit, router R1 has a hello interval of 10 seconds and a dead interval of 40 seconds, while router R2 has a hello interval of 30 seconds and a dead interval of 120 seconds. This causes a mismatch and prevents them from becoming neighbors23.
NEW QUESTION # 13
Refer to the exhibit.
Click the Exhibit button.
Referring to the exhibit, the PE-to-CE protocol being used is OSPF for the L3VPN. Also, there is an OSPF neighborship between CE-1 and CE-2.
Which statement is correct in this situation?
- A. Hosts at Site-1 will reach hosts at Site-2 through the CE-1 and CE-2 link by default.
- B. Hosts at Site-1 will reach hosts at Site-2 through the L3VPN by default.
- C. You must set a high metric on the CE-1 to CE-2 link for hosts at Site-1 to use the L3VPN to reach hosts at Site-2.
- D. You must set a high metric on the CE-1 to PE-1 link for hosts at Site-1 to use the CE-1 to CE-2 link to reach hosts at Site-2.
Answer: A
Explanation:
In the exhibit, the PE-to-CE protocol used is OSPF, and there is an OSPF neighborship between CE-1 and CE-2 within the same Area 0. Let's analyze the default OSPF routing behavior in this setup to determine the correct statement.
1. **OSPF Neighborship**:
- CE-1 and CE-2 have an OSPF neighborship directly within Area 0.
- OSPF prefers intra-area routes over inter-area and external routes.
2. **Default Routing Behavior**:
- Since CE-1 and CE-2 are directly connected through an OSPF link within the same area, OSPF will prefer this direct intra-area path over any other paths learned via the PE routers and the L3VPN.
- This is because intra-area routes have a lower metric compared to inter-area or external routes.
3. **Metric Considerations**:
- By default, OSPF will route traffic between Site-1 and Site-2 through the direct link between CE-1 and CE-2, unless the link's metric is artificially increased to make it less preferable.
- There is no need to adjust metrics for the CE-1 to PE-1 link to prefer the CE-1 to CE-2 path, as OSPF already prefers direct intra-area paths.
**Conclusion**:
Given the default behavior of OSPF and the topology shown in the exhibit, the correct statement is:
**B. Hosts at Site-1 will reach hosts at Site-2 through the CE-1 and CE-2 link by default.**
**Reference**:
- OSPF Design Guide: [Juniper Networks OSPF Design Guide](https://www.juniper.net/documentation/en_US/junos/topics/concept/ospf-design-overview.html)
- Juniper Networks Technical Documentation on OSPF: [Junos OS OSPF Configuration Guide](https://www.juniper.net/documentation/en_US/junos/topics/concept/ospf-routing-overview.html)
NEW QUESTION # 14
Exhibit
CE-1 and CE-2 are part of a VPLS called Customer1 No connectivity exists between CE-1 and CE-2. In the process of troubleshooting, you notice PE-1 is not learning any routes for this VPLS from PE-2, and PE-2 is not learning any routes for this VPLS from PE-1.
- A. The no-tunnel-services statement should be deleted on both PEs.
- B. The route target must match on PE-1 and PE-2.
- C. The route distinguisher must match on PE-1 and PE-2.
- D. The instance type should be changed to I2vpn.
Answer: B
Explanation:
VPLS is a technology that provides Layer 2 VPN services over an MPLS network. VPLS uses BGP as its control protocol to exchange VPN membership information between PE routers. The route target is a BGP extended community attribute that identifies which VPN a route belongs to. The route target must match on PE routers that participate in the same VPLS instance, otherwise they will not accept or advertise routes for that VPLS.
NEW QUESTION # 15
What is the correct order of packet flow through configurable components in the Junos OS CoS features?
- A. Behavior Aggregate Classifier -> Multifield Classifier -> Input Policer -> Forwarding Policy Options
-> Fabric Scheduler -> Output Policer -> Scheduler/Shaper/RED -> Rewrite Marker - B. Multifield Classifier -> Behavior Aggregate Classifier -> Input Policer -> Forwarding Policy Options
-> Fabric Scheduler -> Output Policer -> Rewrite Marker -> Scheduler/Shaper/RED - C. Behavior Aggregate Classifier -> Input Policer -> Multifield Classifier -> Forwarding Policy Options
-> Fabric Scheduler -> Output Policer -> Scheduler/Shaper/RED -> Rewrite Marker - D. Behavior Aggregate Classifier -> Multifield Classifier -> Input Policer -> Forwarding Policy Options
-> Fabric Scheduler -> Scheduler/Shaper/RED -> Output Policer -> Rewrite Marker
Answer: A
Explanation:
https://www.juniper.net/documentation/us/en/software/junos/cos/topics/concept/packet-flow-cos- process-cos-config-guide.html
NEW QUESTION # 16
Exhibit
The environment is using BGP All devices are in the same AS with reachability redundancy Referring to the exhibit, which statement is correct?
- A. Client1 is peered to Client2 and Client3.
- B. Peering is dynamically discovered between all devices.
- C. RR1 is peered to Client2 and RR2
- D. RR2 is in an OpenConfirm State until RR1 becomes unreachable.
Answer: C
Explanation:
BGP route reflectors are BGP routers that are allowed to ignore the IBGP loop avoidance rule and advertise IBGP learned routes to other IBGP peers under specific conditions. BGP route reflectors can reduce the number of IBGP sessions and updates in a network by eliminating the need for a full mesh of IBGP peers.
BGP route reflectors can have three types of peerings:
EBGP neighbor: A BGP router that belongs to a different autonomous system (AS) than the route reflector.
IBGP client neighbor: An IBGP router that receives reflected routes from the route reflector. A client does not need to peer with other clients or non-clients.
IBGP non-client neighbor: An IBGP router that does not receive reflected routes from the route reflector. A non-client needs to peer with other non-clients and the route reflector.
In the exhibit, we can see that RR1 and RR2 are route reflectors in the same AS with reachability redundancy.
They have two types of peerings: EBGP neighbors (R1 and R4) and IBGP client neighbors (Client1, Client2, and Client3). RR1 and RR2 are also peered with each other as IBGP non-client neighbors.
NEW QUESTION # 17
You are configuring a BGP signaled Layer 2 VPN across your MPLS enabled core network. In this scenario, which statement is correct?
- A. This type of VPN requires the support of the inet-vpn NLRI on all core BGP devices
- B. You must use the same route-distinguiaher value on both PE devices.
- C. This type of VPN only supports Ethernet interfaces when connecting to CE devices.
- D. You must assign a unique site number to each attached site's configuration.
Answer: A
Explanation:
Explanation
BGP signaled Layer 2 VPN is a type of VPN that uses BGP to distribute VPN labels and information for Layer 2 connectivity between sites over an MPLS network. BGP signaled Layer 2 VPN requires the support of the l2vpn NLRI on all core BGP devices . The l2vpn NLRI is a new address family that carries Layer 2 VPN information such as the VPN identifier, the attachment circuit identifier, and the route distinguisher. The l2vpn NLRI is used for both auto-discovery and signaling of Layer 2 VPNs . In this scenario, we are configuring a BGP signaled Layer 2 VPN across an MPLS enabled core network. Therefore, we need to ensure that all core BGP devices support the l2vpn NLRI.
References: 1:
https://www.juniper.net/documentation/us/en/software/junos/vpn-l2/topics/concept/vpn-layer-2-overview.html
2:
https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/mp_l2_vpns/configuration/xe-16/mp-l2-vpns-xe-16-book/vpl
NEW QUESTION # 18
Refer to the exhibit.
Click the Exhibit button.
You have an EVI implemented between PE-1, PE-2, and PE-3 to allow communication between CE-1 and CE-2. CE-2 receives unicast traffic from CE-1 on both links to PE-2 and PE-3. When CE-1 sends broadcast traffic, CE-2 receives it on only one of the multihomed links.
Referring to the exhibit, which EVPN route type enables this behavior?
- A. Type 2
- B. Type 4
- C. Type 1
- D. Type 3
Answer: D
Explanation:
In the context of Ethernet VPN (EVPN) and the behavior described in the exhibit, it's essential to understand the different EVPN route types and their specific functionalities. Here, CE-2 is receiving unicast traffic on both of its multihomed links to PE-2 and PE-3, but broadcast traffic is received only on one of these links.
**Explanation of EVPN Route Types**:
1. **Type 1 (Ethernet Auto-Discovery Routes)**:
- These routes are used for auto-discovery of Ethernet segments and for advertising VLAN membership.
- They do not directly influence the behavior described in the question.
2. **Type 2 (MAC/IP Advertisement Routes)**:
- These routes are used to advertise MAC addresses and IP-to-MAC bindings within the EVPN.
- They handle unicast traffic forwarding and are crucial for populating the MAC address tables on the PE devices.
- While important, they do not explain the selective broadcast behavior.
3. **Type 3 (Inclusive Multicast Ethernet Tag Routes)**:
- These routes are used to build multicast distribution trees for delivering broadcast, unknown unicast, and multicast (BUM) traffic.
- They ensure that BUM traffic is sent only once per Ethernet segment, preventing duplicate frames from being sent to multihomed CEs.
- This aligns with the behavior described where CE-2 receives broadcast traffic on only one link to prevent duplication.
4. **Type 4 (Ethernet Segment Routes)**:
- These routes are used to advertise the presence of an Ethernet segment and are crucial for Designated Forwarder (DF) election processes in multihoming scenarios.
- While relevant to multihoming, they are not directly responsible for the selective broadcast behavior.
**Conclusion**:
The behavior described, where CE-2 receives broadcast traffic on only one of its multihomed links, is controlled by Type 3 routes. These routes are specifically designed to handle inclusive multicast and broadcast traffic efficiently in EVPN environments, ensuring that such traffic is not duplicated across multiple links to the same CE.
**Reference**:
- Juniper Networks EVPN Documentation: [EVPN Overview](https://www.juniper.net/documentation/en_US/junos/topics/concept/evpn-overview.html)
- RFC 7432, BGP MPLS-Based Ethernet VPN: [RFC 7432](https://tools.ietf.org/html/rfc7432) provides detailed descriptions of EVPN route types and their functions.
- Junos OS EVPN Configuration Guide: [Junos OS EVPN Configuration Guide](https://www.juniper.net/documentation/en_US/junos/topics/topic-map/evpn.html)
NEW QUESTION # 19
Exhibit
A network is using IS-IS for routing.
In this scenario, why are there two TLVs shown in the exhibit?
- A. Both IPv4 and IPv6 are being used in the topology
- B. There are both narrow and wide metric devices in the topology
- C. Wide metrics have specifically been requested
- D. The interface specified a metric of 100 for L2.
Answer: B
Explanation:
Explanation
TLVs are tuples of (Type, Length, Value) that can be advertised in IS-IS packets. TLVs can carry different kinds of information in the Link State Packets (LSPs). IS-IS supports both narrow and wide metrics for link costs. Narrow metrics use a single octet to encode the link cost, while wide metrics use three octets. Narrow metrics have a maximum value of 63, while wide metrics have a maximum value of 16777215. If there are both narrow and wide metric devices in the topology, IS-IS will advertise two TLVs for each link: one with the narrow metric and one with the wide metric. This allows backward compatibility with older devices that only support narrow metrics12.
NEW QUESTION # 20
Exhibit
Referring to the exhibit, CE-1 is providing NAT services for the hosts at Site 1 and you must provide Internet access for those hosts Which two statements are correct in this scenario? (Choose two.)
- A. You must configure a static route in the main routing instance for the 10 1 2.0/24 prefix that uses the VPN-A.inet.0 table as the next hop
- B. You must configure a static route in the main routing instance for the 203.0.113.1/32 prefix that uses the VPN-A.inet.0 table as the next hop.
- C. You must configure a RIB group on PE-1 to leak the 10 1 2.0/24 prefix from the VPN-A.inet.0 table to the inet.0 table.
- D. You must configure a RIB group on PE-1 to leak a default route from the inet.0 table to the VPN-A.inet.
0 table.
Answer: B,D
NEW QUESTION # 21 
Click the Exhibit button.
Referring to the exhibit, which two statements are true? (Choose two.)
- A. The multipath configuration is used for load balancing.
- B. This route is learned from the same AS number.
- C. The multihop configuration is used for load balancing.
- D. This route is learned from two different AS numbers.
Answer: A,B
Explanation:
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.**
**References**:
- 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)
NEW QUESTION # 22
Which two statements about IS-IS are correct? (Choose two.)
- A. CSNPs are flooded periodically.
- B. CSNPs contain only descriptions of LSPs.
- C. PSNPs contain only descriptions of LSPs.
- D. PSNPs are flooded periodically.
Answer: A,C
Explanation:
Option A (Correct):
Complete Sequence Number PDUs (CSNPs) are periodically flooded by the Designated Intermediate System (DIS) on multi-access networks (e.g., Ethernet).
This ensures all routers on the segment synchronize their Link-State Databases (LSDBs).
Reference:
Option C (Correct):
Partial Sequence Number PDUs (PSNPs) contain only the headers (descriptions) of LSPs (e.g., LSP ID, sequence number, checksum).
PSNPs are used to:
Request missing LSPs (when a router detects discrepancies via CSNPs).
Acknowledge LSP receipt (in point-to-point networks).
They do not include the full LSP data.
Why Other Options Are Incorrect:
Option B: Incorrect. PSNPs are not flooded periodically-they are sent on-demand for specific LSP synchronization.
Option D: Incorrect. While CSNPs do contain LSP descriptions (headers), the term "only" is misleading. CSNPs summarize all LSPs in the LSDB, but they are not limited to "only" descriptions-they serve as a complete database overview.
Key Takeaways:
CSNPs are periodic, broadcast by the DIS, and ensure LSDB consistency.
PSNPs are triggered, contain specific LSP headers, and handle requests/acknowledgments.
IS-IS uses CSNPs and PSNPs to maintain efficient LSDB synchronization without flooding full LSPs unnecessarily.
For further details, refer to Juniper's official IS-IS documentation:
Juniper IS-IS Configuration Guide.
NEW QUESTION # 23
Which statement is correct about IS-IS when it performs the Dijkstra algorithm?
- A. Tuples with the lowest cost are moved from the tree database to the LSDB.
- B. When a new neighbor ID in the tree database matches a router ID in the LSDthe neighbor ID is moved to the candidate database.
- C. The local router moves its own local tuples into the candidate database.
- D. The algorithm will stop processing once the tree database is empty.
Answer: D
NEW QUESTION # 24
Exhibit
You want Site 1 to access three VLANs that are located in Site 2 and Site 3 The customer-facing interface on the PE-1 router is configured for Ethernet-VLAN encapsulation.
What is the minimum number of L2VPN routing instances to be configured to accomplish this task?
- A. 0
- B. 1
- C. 2
- D. 3
Answer: B
Explanation:
To allow Site 1 to access three VLANs that are located in Site 2 and Site 3, you need to configure three L2VPN routing instances on PE-1, one for each VLAN. Each L2VPN routing instance will have a different VLAN ID and a different VNI for VXLAN encapsulation. Each L2VPN routing instance will also have a different vrf-target export value to identify which VPN routes belong to which VLAN. This way, PE-1 can forward traffic from Site 1 to Site 2 and Site 3 based on the VLAN tags and VNIs.
NEW QUESTION # 25
Exhibit
You have MAC addresses moving in your EVPN environment
Referring to the exhibit, which two statements are correct about the sequence number? (Choose two)
- A. It is advertised using a Type 2 message
- B. It helps the local PE to identify the latest advertisement.
- C. It identifies MAC addresses that should be discarded.
- D. It resolves conflicting MAC address ownership claims.
Answer: B,D
Explanation:
Explanation
The sequence number is a field in the MAC mobility extended community that is used to resolve conflicting MAC address ownership claims and to help the local PE to identify the latest advertisement. The sequence number is incremented by one for every MAC address mobility event, such as when a host moves from one Ethernet segment to another segment in the EVPN network. The PE device that receives multiple MAC advertisements for the same MAC address chooses the one with the highest sequence number as the most recent and valid advertisement.
NEW QUESTION # 26
Which statement is true regarding BGP FlowSpec?
- A. It verifies that the source IP of the incoming packet has a resolvable route in the routing table.
- B. It is used to protect a network from denial-of-service attacks dynamically.
- C. It uses a remote triggered black hole to protect a network from a denial-of-service attack.
- D. It uses dynamically created routing policies to protect a network from denial-of-service attacks.
Answer: B
NEW QUESTION # 27
......
Exam Sure Pass Juniper Certification with JN0-664 exam questions: https://exams4sure.actualcollection.com/JN0-664-exam-questions.html