EVPN (Ethernet Virtual Private Network)is a standard protocol used for building Layer 2 and Layer 3 VPNs over an IP or MPLS network. Thesignaling protocolused for EVPN isBGP(Border Gateway Protocol).
Step-by-Step Breakdown:
BGP as the EVPN Signaling Protocol:EVPN uses BGP to exchange MAC address reachability information between routers (PE devices). This enables devices to learn which MAC addresses are reachable through which PE devices, facilitating Layer 2 forwarding across an IP or MPLS core.
BGP Extensions for EVPN:BGP is extended with new address families (e.g., EVPN NLRI) to carry both MAC and IP address information, allowing for scalable and efficient multi-tenant network solutions.
Juniper Reference:
Junos EVPN Configuration: Juniper uses BGP as the control plane for EVPN to exchange MAC and IP route information between different data center devices.
Question 9
Which statement is correct about per-flow load balancing?
Options:
A.
Packets associated with the same flow are sent through different egress ports.
B.
The packets are guaranteed to arrive at their destination in a different order in which they were sent.
C.
Packets associated with the same flow are sent through the same egress port.
D.
The packets are guaranteed to arrive at their destination in the same order in which they were sent.
Answer:
C
Explanation:
Per-flow load balancingensures that packets within the same flow are always forwarded over the same path, ensuring that packet order is preserved.
Step-by-Step Breakdown:
Flow Definition:A flow is typically defined by a combination of packet attributes like source/destination IP, source/destination port, and protocol type. Packets that belong to the same flow are routed over the same path to avoid reordering.
Per-Flow Behavior:Inper-flow load balancing, the hashing algorithm ensures that all packets in a particular flow use thesame egress port, maintaining order across the network.
Juniper Reference:
Load Balancing in Juniper: This method ensures that flows are balanced across multiple paths while preventing packet reordering within a single flow.
Question 10
When evaluating BGP routes, what will be evaluated first?
Options:
A.
The local preference value
B.
The AS path
C.
The MED value
D.
The origin value
Answer:
A
Explanation:
InBGP (Border Gateway Protocol), when evaluating multiple routes to the same destination, the first attribute that is considered is thelocal preferencevalue. Thelocal preferenceis a BGP attribute used to influence outbound routing decisions within an Autonomous System (AS).
Step-by-Step Breakdown:
Local Preference:Thelocal preferenceattribute is used to determine which path is preferred for traffic leaving the AS. The higher the local preference value, the more preferred the route.
BGP Path Selection:The BGP path selection process evaluates the following attributes in this order:
Local Preference(higher is preferred)
AS Path(shorter is preferred)
Origin(IGP > EGP > incomplete)
MED (Multi-Exit Discriminator)(lower is preferred)
Juniper Reference:
BGP Path Selection: In Junos, thelocal preferenceattribute is the first to be evaluated when determining the best path for outbound traffic.
Question 11
Which statement about switches is correct?
Options:
A.
Each port is a member of VLAN 2 by default.
B.
Every port is in a unique collision domain.
C.
Each port is in a unique broadcast domain by default.
D.
All ports reside in the same collision domain.
Answer:
B
Explanation:
Each port on a modernswitchcreates a separatecollision domain. This allows multiple devices to communicate simultaneously without collisions on different ports.
Step-by-Step Breakdown:
Collision Domain:
Acollision domainis a network segment where data packets can collide if two devices send packets simultaneously.
On a switch, each port creates aseparate collision domain, so collisions only occur if two devices connected to the same port (through a hub, for instance) try to send data at the same time.
Switches vs Hubs:Unlike hubs, which have one large collision domain, switches isolate collisions to individual ports, improving performance.
Juniper Reference:
Switch Port Behavior: In Juniper switches, each port operates in its own collision domain, enhancing network efficiency by reducing the chances of packet collisions.