A switch receives a frame with a MAC address of FF-FF-FF-FF-FF-FF. Which action will the switch take on this frame?
It will flood it out of all interfaces, except for the ingress interface.
It will flood it out of all interfaces, except for the directly connected VLAN.
It will flood it out of all interfaces, except for the next-hop interface.
It will flood it out of all interfaces.
AMAC address of FF-FF-FF-FF-FF-FFis the Ethernetbroadcast address. When a switch receives a frame with this destination MAC address, it is required to forward the frame to all interfaces except the one it was received on.
Step-by-Step Breakdown:
Broadcast Frame Handling:When a frame with the broadcast MAC address is received, the switch will flood it out of all active ports that belong to the same VLAN as the incoming frame. The broadcast frame is not sent back out of the ingress interface (the interface where the frame was originally received).
Purpose of Flooding:Broadcasting is used to ensure that the frame reaches all devices within the broadcast domain (all devices within the same VLAN), which may not have a specific entry for the MAC address in their MAC address table.
Juniper Reference:
Layer 2 Frame Forwarding: Juniper switches flood broadcast frames to all ports in the same VLAN, except the port the frame was received on.
Exhibit:

Referring to the exhibit, which statement is correct?
The configuration will commit successfully and BGP group 1 will operate as IBGP.
The configuration will commit successfully and BGP group 1 will operate as EBGP.
BGP group 1 requires a type external parameter.
BGP group 1 requires a type internal parameter.
In the exhibit, BGP is configured withlocal AS 65101and a neighbor at172.16.1.1inpeer AS 65201. This setup involves two different Autonomous Systems (AS), indicating anExternal BGP (EBGP)configuration.
Step-by-Step Breakdown:
EBGP vs. IBGP:
EBGPis used between routers in different ASes. In this case, the local AS is65101and the peer AS is65201, meaning the BGP session isEBGP.
IBGPis used between routers within the same AS, which is not applicable here as the AS numbers are different.
BGP Group Configuration:
The configuration does not require a type external parameter because Junos OSautomatically recognizes the session asEBGPwhen the local and peer AS numbers are different.
The BGP session will operate as EBGP, and the configuration will commit successfully.
Juniper Reference:
BGP Configuration: In Juniper, EBGP is automatically recognized when the local and peer AS numbers differ, without needing to specify type external.
In the Junos OS, which feature is used to create an alternate next hop with a unique preference for a static route?
Preference
Resolve
Next-hop
Qualified-next-hop
In Junos OS, thequalified-next-hopfeature is used to specify an alternate next hop for a static route, along with a unique preference value.
Step-by-Step Breakdown:
Qualified-Next-Hop:Aqualified-next-hopallows you to define multiple next hops for a static route, each with its own preference. This provides flexibility by allowing the router to choose the best available next hop based on reachability and preference.
Use Case:If the primary next hop becomes unreachable, the router can automatically switch to the alternate next hop defined by thequalified-next-hopwith a higher preference value.
Command Example:
set routing-options static route 10.10.10.0/24 qualified-next-hop 192.168.1.1 preference 5
set routing-options static route 10.10.10.0/24 qualified-next-hop 192.168.1.2 preference 10
Preference:The next hop with the lowest preference is chosen first. If it becomes unavailable, the router will use the higher preference next hop.
Juniper Reference:
Qualified-Next-Hop: This feature is used to configure backup or alternate next hops for static routes in Juniper devices.
When evaluating BGP routes, what will be evaluated first?
The local preference value
The AS path
The MED value
The origin value
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.
What are two device roles in a five-member Virtual Chassis? (Choose two.)
PFE
Control-board
Line card
Routing-engine
In aVirtual Chassis(VC) configuration, multiple Juniper switches are interconnected to form a single logical device. Each member switch in the Virtual Chassis plays a specific role.
Step-by-Step Breakdown:
Line Card Role:
Member switches acting asline cardsprovide additional ports for traffic forwarding but do not perform control or routing functions. These switches depend on the routing engine to handle control-plane tasks.
Routing Engine Role:
A switch in therouting-enginerole is responsible for control-plane operations such as routing protocol management and control of the Virtual Chassis.
Virtual Chassis Roles:
Master Routing Engine: Handles control-plane functions and manages the entire Virtual Chassis.
Backup Routing Engine: Takes over if the master fails.
Line Card: Provides additional ports and handles data-plane operations.
Juniper Reference:
Virtual Chassis: In a five-member Virtual Chassis, multiple switches act asline cards, while one or more switches are designated as therouting engines(master and backup).
Which statement is correct about member interfaces when creating a LAG?
The interface's MTU settings must match on all member interfaces.
The interface’s duplex settings and link speed must be the same on all member interfaces.
Member interfaces must all be allocated on the same chassis when using a Virtual Chassis.
Member interfaces must all be allocated on the same PFE.
When creating aLAG (Link Aggregation Group)in Junos, theduplex settingsandlink speedmust be the same across all member interfaces.
Step-by-Step Breakdown:
LAG Overview:A LAG combines multiple physical interfaces into a single logical interface to increase bandwidth and provide redundancy. All member links must act as a single cohesive unit.
Interface Requirements:
Duplex: All member interfaces must operate in the same duplex mode (either full-duplex or half-duplex). Mismatched duplex settings can cause performance issues, packet drops, or interface errors.
Link Speed: All interfaces in the LAG must have the same link speed (e.g., all interfaces must be 1 Gbps or 10 Gbps). Mismatched speeds would prevent the interfaces from functioning correctly within the LAG.
Configuration and Validation: Ensure that all member interfaces have identical settings before adding them to the LAG. These settings can be checked using the show interfaces command, and the LAG can be configured using:
set interfaces ae0 aggregated-ether-options link-speed 10g
set interfaces ge-0/0/1 ether-options 802.3ad ae0
Juniper Reference:
LAG Configuration: Duplex and link speed must be consistent across member interfaces to ensure proper LAG operation in Juniper devices.
Which three actions are required to implement filter-based forwarding? (Choose three.)
You must create an instance-type forwarding routing instance.
You must create an instance-type vrf routing instance.
You must create a match filter.
You must create a security policy.
You must create a RIB group.
Filter-Based Forwarding (FBF) in Junos OS allows traffic to be routed based on specific criteria such as source address, rather than just the destination address. This is useful in scenarios like policy routing or providing multiple paths for different types of traffic.
Step-by-Step Breakdown:
Instance-Type Forwarding:You must create aninstance-type forwardingrouting instance. This routing instance allows for different routing tables based on the incoming packet filter.
Command:
set routing-instances FBF-instance instance-type forwarding
Match Filter:You need to create afilterto match the traffic that will be forwarded according to your custom routing policy. This filter is applied to an interface to determine which traffic will use the custom forwarding instance.
Command Example:
set firewall family inet filter FBF-filter term 1 from source-address <address>
set firewall family inet filter FBF-filter term 1 then routing-instance FBF-instance
RIB Group:ARIB (Routing Information Base) groupis necessary to share routes between the primary routing table and the custom routing instance. This allows FBF traffic to use the routing information from other routing tables.
Command Example:
set routing-options rib-groups FBF-group import-rib inet.0
set routing-instances FBF-instance routing-options rib-group FBF-group
Juniper Reference:
FBF Configuration: Filter-based forwarding requires these specific steps to redirect traffic to a custom routing table based on filter criteria.
What are two reasons why you would deploy an IP fabric instead of a traditional Layer 2 network in a data center? (Choose two.)
Layer 2 networks only support a single broadcast domain.
IP fabrics are better suited to smaller networks where scale is less important.
Layer 3 networks support load balancing.
Layer 2 networks are susceptible to loops.
IP fabricsare Layer 3-centric network designs often used in data centers due to their scalability, efficient routing, and loop-free architecture.
Step-by-Step Breakdown:
Layer 3 Load Balancing:IP fabrics useEqual-Cost Multipath (ECMP)to distribute traffic across multiple paths, providing effective load balancing and improving bandwidth utilization. This capability is absent in traditional Layer 2 networks, which do not support ECMP for routing decisions.
Layer 2 Loops:Layer 2 networksare prone to loops because of the lack of TTL (Time-to-Live) mechanisms. Spanning Tree Protocol (STP) is required to prevent loops, but it can introduce inefficiencies by blocking links. In contrast, IP fabrics based on Layer 3 protocols are loop-free and do not need STP.
Juniper Reference:
IP Fabric: Juniper’s IP fabric solutions offer efficient Layer 3 routing with built-in load balancing and loop prevention, making them ideal for modern data center architectures.
Which two statements are correct about VLAN tags? (Choose two.)
VLAN tags carry a VLAN ID and priority.
VLAN tags are required on access ports.
VLAN tags require multiple forwarding tables.
VLAN tags can be inserted or removed by trunk interfaces.
VLAN tagsare used in Ethernet frames to identify and differentiate traffic between multiple VLANs. They are especially important for devices like switches that handle multiple VLANs on the same physical link.
Step-by-Step Breakdown:
VLAN Tag Contents:
VLAN ID: The tag contains a 12-bit VLAN ID field that identifies the VLAN to which the frame belongs.
Priority: The tag also includes a 3-bit priority field (also known as 802.1p priority) used for QoS (Quality of Service) to prioritize traffic.
Trunk Ports and VLAN Tagging:
Trunk Portsare used to carry traffic for multiple VLANs across a single link. These interfaces insert (tag) VLAN identifiers into frames when they leave the switch and remove (untag) them when frames enter the switch.
Access Ports:VLAN tags are typically not used onaccess ports(ports that connect to end devices) since those ports are configured to be part of a single VLAN, and the traffic doesn't need VLAN tags.
Juniper Reference:
VLAN Tagging: Juniper switches support VLAN tagging and ensure that frames are tagged or untagged as they traverse trunk or access ports, respectively.
Layer 2 interfaces operate in which two modes? (Choose two.)
Access
Modular
Trunk
Tagged
Comprehensive Detailed Step by Step Explanation with all Juniper Data Center References
Layer 2 interfaces on a switch operate in two key modes:AccessandTrunk.
Step-by-Step Breakdown:
Access Mode:
Access portsare used to connect end devices, like PCs or servers, and they are assigned to a single VLAN. These interfaces handle untagged traffic and do not pass VLAN tags.
Example: A port assigned to VLAN 10 will only handle traffic for that VLAN.
Trunk Mode:
Trunk portsare used to connect switches or other networking devices that need to handle traffic from multiple VLANs. Trunk interfaces carry tagged traffic, allowing multiple VLANs to traverse the same physical link.
Trunk ports typically use802.1QVLAN tagging to differentiate between VLANs.
Juniper Reference:
Access and Trunk Ports: Juniper switches use these modes to manage VLAN traffic at Layer 2, with access ports handling untagged traffic and trunk ports handling tagged traffic from multiple VLANs.
Which signaling protocol is used for EVPN?
OSPF
PIM
IS-IS
BGP
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.
What is the definition of a trunk interface on a switch?
An interface that carries multiple VLANs.
An interface that carries high bandwidth.
An interface that connects directly to powerful servers.
An interface that carries excess traffic.
A trunk interface on a switch is used to carry traffic for multiple VLANs between switches or between a switch and another network device, like a router. Trunk interfaces use 802.1Q tagging to identify which VLAN the traffic belongs to.
Step-by-Step Breakdown:
Trunk Ports:
Trunk ports are typically used for inter-switch links or switch-to-router links where multiple VLANs need to be carried over the same physical connection.
VLAN traffic is tagged with a VLAN ID to ensure that it is properly identified as it crosses the trunk link.
802.1Q VLAN Tagging:
Trunk ports use 802.1Q to tag Ethernet frames with the VLAN ID. This ensures that frames are correctly forwarded to the appropriate VLANs on the other side of the trunk.
Juniper Reference:
Trunk Interface Configuration: In Juniper switches, trunk ports are configured to carry tagged traffic for multiple VLANs, which is essential for interconnecting multiple network segments.
Which two statements are correct about aggregate routes and generated routes? (Choose two.)
An aggregate route does not have a forwarding next hop.
An aggregate route has a forwarding next hop.
A generated route has a forwarding next hop.
A generated route does not have a forwarding next hop.
Aggregate routesandgenerated routesare used to create summarized routes in Junos, but they behave differently in terms of forwarding.
Step-by-Step Breakdown:
Aggregate Routes:
Anaggregate routesummarizes a set of more specific routes, but it does not have a direct forwarding next hop. Instead, it points to the more specific routes for actual packet forwarding.
Generated Routes:
Agenerated routealso summarizes specific routes, but it has aforwarding next hopthat is determined based on the availability of contributing routes. The generated route can be used to directly forward traffic.
Juniper Reference:
Aggregate and Generated Routes: In Junos, aggregate routes rely on more specific routes for forwarding, while generated routes can forward traffic directly based on their next-hop information.
Exhibit:

Referring to the exhibit, at which interval will the interface be considered down if no hello packets are received?
2000 seconds
400 milliseconds
400 seconds
2000 milliseconds
The exhibit shows the configuration ofBidirectional Forwarding Detection (BFD)for OSPF on interface xe-0/0/4.0, with the following parameters:
minimum-interval: 400 milliseconds
multiplier: 5
Step-by-Step Breakdown:
BFD Liveness Detection:BFD is used to detect link failures at sub-second intervals, providing faster convergence times for routing protocols like OSPF. Theminimum-intervalis the time between BFD control packets (in milliseconds), and themultiplierindicates how many missed BFD packets trigger a failure.
Calculating Failure Detection Time:The failure detection interval is calculated as:
Failure Interval=minimum-interval×multiplier\text{Failure Interval} = \text{minimum-interval} \times \text{multiplier}Failure Interval=minimum-interval×multiplier
In this case:
400 milliseconds×5=2000 milliseconds(2seconds)400 \, \text{milliseconds} \times 5 = 2000 \, \text{milliseconds} (2 seconds)400milliseconds×5=2000milliseconds(2seconds)
Conclusion:If no BFD control packets are received within2000 milliseconds (2 seconds), the interface will be considered down, triggering OSPF to recalculate routes.
Juniper Reference:
BFD Configuration: BFD parameters such as minimum-interval and multiplier are used to fine-tune the failure detection time for faster convergence.
When considering bidirectional forwarding detection, which two statements are correct? (Choose two.)
The BFD default minimum interval is 3.
You can configure BFD per interface within the protocol stanza.
The BFD operation always consists of minimum intervals and multipliers.
The BFD default multiplier is 5.
Bidirectional Forwarding Detection (BFD)is a protocol used to detect faults in the forwarding path between two routers. It provides rapid failure detection, enhancing the performance of routing protocols like OSPF, BGP, and IS-IS.
Step-by-Step Breakdown:
Per Interface Configuration:BFD can be configured on aper-interfacebasis within the protocol stanza (e.g., OSPF, BGP). This allows granular control over where BFD is enabled and the failure detection intervals for specific interfaces.
Minimum Interval and Multiplier:BFD uses aminimum interval(the time between BFD control packets) and amultiplier(the number of missed packets before the path is declared down). The combination of these two defines the detection time for failures.
Juniper Reference:
BFD Configuration: In Juniper, BFD is configurable within routing protocol stanzas, with the failure detection mechanism always based on minimum intervals and multipliers.
When a MAC limiting violation occurs, the switch performs which two actions by default? (Choose two.)
No logging takes place.
It causes Layer 2 loops.
The port is disabled.
It drops the packet.
When aMAC limiting violationoccurs on a Juniper switch, the switch will perform the following actions by default:
Step-by-Step Breakdown:
Port Disabled:When the number of MAC addresses on an interface exceeds the configured limit, the port isautomatically disabledto prevent further violations. This is a protective mechanism to prevent MAC address flooding.
Packet Dropped:Additionally, packets from the violating MAC address aredroppedto prevent any further communication from that address. This ensures that only valid MAC addresses are allowed to communicate through the interface.
Example Configuration:
set ethernet-switching-options secure-access-port interface
If more than five MAC addresses are learned, the port is disabled, and excess packets are dropped.
Juniper Reference:
MAC Limiting: When the switch detects a MAC limiting violation, it disables the port and drops further packets from the violating MAC addresses to maintain network security.
TESTED 27 Jul 2026
