Which two protocols are capable of distributing labels for segment routing? (Choose two.)
Correct Answer: C,D
Segment routing labels can be distributed by link-state routing protocols such as IS-IS and OSPF, which have been extended to support segment routing capabilities.
Question 67
Referring to the exhibit, you have an established RSVP LSP between R1 and R4 when you experience a link failure between R2 and R3. Which two statements are correct? (Choose two.)
Correct Answer: A,D
Upon a link failure in an RSVP-signaled LSP, the router upstream of the failure (R2) sends a PathTear message upstream to the ingress router (R1), and the router downstream of the failure (R3) sends a ResvTear message downstream to the egress router (R4). These messages signal the failure and initiate tear down of the LSP state in the respective directions.
Question 68
You are a network architect designing a brand new network. You want to deploy RSVP LSPs in this network. You are currently in the process of choosing whether to run OSPF or IS-IS as your interior gateway protocol. In this scenario, which two statements are correct about IGP traffic engineering extensions in an RSVP network? (Choose two.)
Correct Answer: C,D
In a Juniper Networks environment, deployingRSVP-signaled LSPsrequires a functionalTraffic Engineering Database (TED). This database is populated by the Interior Gateway Protocol (IGP) using specific extensions that carry link-state information beyond simple reachability, such as available bandwidth, administrative groups (link coloring), and Maximum Reservable Bandwidth. The behavior of these extensions differs betweenOSPFandIS-ISin Junos OS: * OSPF (Option C):By default, OSPF is a "pure" routing protocol. To support RSVP-TE, it must carry Opaque LSAs (Type 10). According to Juniper documentation, you mustexplicitly configuretraffic engineering within the OSPF protocol hierarchy using the set protocols ospf traffic-engineering command. Without this command, OSPF will not flood the TE information required by the Constrained Shortest Path First (CSPF) algorithm, and LSPs will fail to establish. * IS-IS (Option D):IS-IS was designed to be extensible through the use of TLVs (Type, Length, Value). In Junos OS,IS-IS traffic engineering extensions are enabled by defaultonce the protocol is active. As soon as you enable IS-IS on an interface, it begins to advertise the wide metrics and TE TLVs (like TLV 22 and 135) necessary for building the TED. This distinction is a common design consideration for network architects. While IS-IS simplifies the rollout of MPLS by having TE enabled "out of the box," OSPF requires that extra configuration step to transition from a standard IGP to a TE-aware protocol.
Question 69
Referring to the exhibit, which two additional steps should you lake to fully configure NSR? (Choose two.)
Correct Answer: B,D
Nonstop routing (NSR) requires both Graceful Routing Engine Switchover (GRES) and commit synchronization to be configured to maintain routing protocol and forwarding state during a Routing Engine switchover. NSR allows the secondary Routing Engine to take over the control plane without the protocols needing to restart, and GRES ensures that the forwarding plane continues operating with the current forwarding table. Commit synchronization ensures that configuration changes are synchronized between the primary and backup Routing Engines.
Question 70
Exhibit: You must configure the router called ROUTER_1 to take all valid prefixes learned from internal BGP peers in AS 64523, and then re-advertise them to other internal BGP peers in the same autonomous system. Referring to the exhibit, which configuration must you deploy on ROUTER_1 to accomplish this task?
Correct Answer: B
In theBorder Gateway Protocol (BGP), theSplit Horizonrule is a fundamental loop-prevention mechanism for internal sessions. This rule dictates that a BGP speaker must not advertise a route learned from anInternal BGP (IBGP)peer to any other IBGP peer within the same Autonomous System (AS). This ensures that routes do not circulate infinitely inside a network, as IBGP does not modify the AS_PATH attribute. Consequently, to maintain full reachability, a network normally requires a "full mesh" of IBGP sessions, where every BGP- speaking router is directly peered with every other router. In the provided exhibit,ROUTER_1is part of AS 64523. The requirement is for ROUTER_1 to take prefixes learned from its internal peers and re-advertise them to other internal peers in the same AS. This behavior is a direct violation of the standard Split Horizon rule. According to Juniper Networks technical documentation, the standard solution to scale IBGP without a full mesh is to configureRoute Reflection. When a router is configured as aRoute Reflector (RR), it is permitted to "reflect" (re-advertise) routes learned from one IBGP peer to another. In Junos OS, the mechanism to enable Route Reflection is to configure acluster IDwithin the BGP group. By adding the cluster keyword followed by a unique 32-bit identifier (usually the router's loopback address) to the internal BGP group configuration, the router assumes the role of an RR. It then follows specific reflection rules: * Routes learned from anEBGP peerare reflected to all IBGP peers. * Routes learned from aRoute Reflector Clientare reflected to all other clients and non-clients. * Routes learned from anon-clientare reflected to all clients. Option A is incorrect because BGP advertisement rules are hard-coded; a standard export policy cannot override the Split Horizon rule. Option C handles traffic engineering tags but does not enable route reflection. Option D would change the session to EBGP, which does not address the internal reachability requirement within AS 64523. Therefore, configuring the cluster ID is the only valid way to achieve the desired re- advertisement behavior.