Generated routes are a type of route that can be created to summarize and generate more specific routes within the routing table. Unlike aggregate routes, which summarize existing routes and inherit a next-hop, generated routes do not necessarily have to match an existing route and will have a next-hop of reject by default unless specified otherwise.
References
Juniper Networks Technical Documentation on Routing Policies and Route Generation
Question 2
You want to see a detailed list of all established BGP sessions. In this scenario, what would be a valid command to accomplish this task?
Options:
A.
show bgp neighbor
B.
show bgp summary
C.
show rouse receive-protocol bgp
D.
show rouse protocol bgp
Answer:
A
Explanation:
Explanation:
Theshow bgp neighborcommand in Junos OS provides a detailed description of each BGP session, including session state, options configured, and counters for messages sent and received. This is the command you would use to see a detailed list of all established BGP sessions.
References:
Juniper Networks documentation on BGP: BGP Commands
Question 3
Which two statements are correct about segment routing? (Choose two.)
Options:
A.
Segment routing adjacencies require very little resources to maintain.
B.
Label assignments can be advertised through OSPF updates.
C.
There are no segment routing adjacencies to maintain.
D.
Label assignments can be advertised through LDP updates.
Answer:
A, B
Explanation:
Explanation:
Segment routing is a source routing paradigm that allows a source router to define the path that a packet will take through the network by assigning an ordered list of segments—identifiers that specify a forwarding path for the packet through the network. Segment Routing can be implemented over an MPLS architecture or with IPv6 (SRv6).
A. Segment routing does not require a full mesh of adjacencies or state per transit path in the network, which is often the case with conventional MPLS signaling protocols like RSVP-TE. It leverages the existing IGP topology for forwarding without the need to maintain a state for each LSP (Label Switched Path), hence requiring very little resources to maintain.
B. In segment routing, labels (or segments) are distributed via IGP routing protocols like OSPF or IS-IS with extensions to carry segment routing information. These protocols are enhanced with Segment Routing extensions to distribute labels. For example, OSPFv2 is extended with Segment Routing extensions defined in RFC 8665.
C. This statement is not entirely correct. While it is true that segment routing does not require the maintenance of a state for each path (LSP), the concept of "segment routing adjacencies" is a mischaracterization. Segment routing leverages the existing adjacencies formed by the underlying IGP.
D. Label assignments in segment routing are not advertised through LDP (Label Distribution Protocol) updates. Segment routing does away with LDP and instead uses IGP extensions to distribute labels.
References:
Juniper Networks documentation on Segment Routing: Segment Routing Overview
Juniper Networks technical documentation providing guidance on configuring OSPF with Segment Routing extensions.
IETF RFC 8665: OSPF Extension for Segment Routing.