Juniper Data Center, Associate JN0-281 Exam Questions

Page: 1 / 14
Total 67 questions
Question 1

Which high availability feature permits you to combine multiple Ethernet interfaces into a single link layer interface?



Answer : B

Link aggregation groups, implemented on Junos as aggregated Ethernet interfaces, allow multiple physical Ethernet links to operate as one logical Layer 2 interface. This increases available bandwidth and provides link level resiliency because member links can fail without taking down the logical interface, as long as at least one member remains operational. In data center leaf spine designs, link aggregation is commonly used for server dual homing, uplinks to appliances, or inter switch connectivity where parallel links are desired with a single logical adjacency.

From a forwarding perspective, the device distributes traffic across member links using a hashing algorithm based on packet header fields so that individual flows remain in order while the aggregate uses multiple links. Control plane operation can be static or negotiated with LACP. With LACP, both sides exchange protocol information to ensure consistent bundling and to remove failed or miswired members automatically. This makes link aggregation a core high availability building block at the link layer, independent of Routing Engine redundancy features.

Graceful Routing Engine switchover, nonstop bridging, and nonstop active routing are control plane redundancy features. They are designed to minimize disruption during Routing Engine failover or preserve protocol state, but they do not combine multiple physical Ethernet interfaces into one logical link layer interface.

Verification sources from Juniper documentation

https://www.juniper.net/documentation/us/en/software/junos/interfaces-ethernet/topics/topic-map/understanding-lacp.html

https://www.juniper.net/documentation/us/en/software/junos/interfaces-ethernet/topics/topic-map/aggregated-ethernet-interfaces-overview.html


Question 2

Referring to the exhibit,

how much time must pass before a neighbor is considered down?



Answer : D

The exhibit shows BFD liveness detection configured under a BGP group with minimum-interval set to 1000 milliseconds. In Junos, BFD provides rapid failure detection by sending periodic BFD control packets between neighbors. The minimum-interval value is the negotiated minimum transmit and receive interval used for BFD control packets for that session. A neighbor is declared down when the local system fails to receive a certain number of consecutive BFD packets within the expected time window.

That time window is determined by the BFD detection time, which is calculated as the minimum-interval multiplied by the BFD multiplier. The multiplier represents how many BFD control packets can be missed before the session is considered failed. If the multiplier is not explicitly configured, Junos uses the default multiplier value of 3. Therefore, with minimum-interval set to 1000 ms and the default multiplier of 3, the detection time becomes 3000 ms. After approximately 3 seconds without receiving the expected BFD control packets, the BFD session transitions to down and BGP can react by treating the associated peer as unreachable for fast convergence.

This behavior is commonly used in data center underlays and EVPN fabrics to reduce convergence time compared to relying only on BGP hold timers.


Question 3

According to Juniper Networks, the bridge table is more commonly known as a _________.



Answer : A

In Ethernet switching, the bridge table is the data structure that maps MAC addresses to the switch interfaces where those MAC addresses were learned. Juniper commonly describes this function as the Ethernet switching table and also refers to it as the forwarding table in Layer 2 contexts. The concept is the same: the switch learns source MAC addresses from incoming frames, associates them with an ingress port and VLAN or bridge domain, and then uses that learned information to forward future frames to the correct egress port as known unicast.

Calling it a forwarding table is accurate because its primary operational purpose is deciding how to forward Layer 2 frames efficiently. When a destination MAC is present in the table, the switch performs a unicast forward to the learned port. When a destination MAC is not present, the switch treats it as unknown unicast and floods it within the VLAN or bridge domain, while still learning the source MAC for future use.

The term forwarding information table is more strongly associated with Layer 3 routing, where a FIB represents resolved next hops for IP prefixes in the forwarding plane. That is a different structure than the Layer 2 bridge or MAC table. The other options are not standard Juniper terms for this function.

Verification sources from Juniper documentation

https://www.juniper.net/documentation/us/en/software/junos/multicast-l2/topics/topic-map/ethernet-switching-components.html

https://www.juniper.net/documentation/us/en/software/junos/multicast-l2/topics/concept/ethernet-switching-table-understanding.html


Question 4

Which two statements are correct about an underlay IP fabric in a data center? Choose two.



Answer : B, C

A data center underlay IP fabric is a routed leaf-spine network designed to provide scalable Layer 3 connectivity between all fabric nodes. A key property of these fabrics is that there are multiple equal-cost paths between any two endpoints, typically across multiple spine devices. Equal-Cost Multi-Path load balancing is used to distribute traffic across those parallel paths. The routing table installs multiple next hops for the same destination prefix, and the forwarding plane selects an egress link per flow using a hash, which keeps packets in-order within a flow while using the fabric's aggregate bandwidth. This makes statement B correct.

Because the underlay is routed, loop avoidance is handled by the routing protocol and the fundamental properties of IP forwarding, not by spanning tree. Routing protocols compute a loop-free forwarding topology and use mechanisms like shortest-path calculation and next-hop selection so that even when multiple paths exist, traffic is forwarded along valid loop-free routes. This makes statement C correct. Statement D is incorrect because spanning tree is a Layer 2 loop prevention mechanism and is not required or desired in a routed underlay fabric. Statement A is also incorrect because traffic distribution depends on ECMP and forwarding behavior, not on all devices being the same hardware model. Mixed platforms can interoperate as long as the design accounts for capacity, features, and consistent routing behavior.


Question 5

What are three examples of martian addresses? Choose three.



Answer : A, C, E

In Junos routing and security contexts, martian addresses are IP prefixes that should not appear as valid, routable sources or destinations on normal interfaces because they are reserved, special-purpose, or otherwise not usable for general unicast forwarding. Treating these as invalid helps protect the control plane and prevents leakage of nonsensical routes into the fabric. This is especially relevant in data center underlays where strict routing hygiene is expected and where improper advertisements can cause blackholing or policy confusion.

The multicast range 224.0.0.0/4 is a classic martian example for unicast routing. These addresses are reserved for multicast and should not be accepted as ordinary unicast sources or carried as typical unicast reachability in an IP fabric. The loopback range 127.0.0.0/8 is also martian on physical networks because it is reserved for host self-reference and must never be forwarded by routers. Seeing it on an interface implies misconfiguration or spoofing.

The prefix 192.0.0.0/24 is reserved for special protocol and IETF assignments and is not intended for general use on public or private networks. As a result, it is commonly treated as martian in routing policy and input validation. By contrast, 172.36.0.0/24 and 198.60.0.0/16 are ordinary globally routable unicast space, so they are not martian by definition.


Question 6

Which protocol is supported in an IP fabric underlay network? Choose one.



Answer : D

An IP fabric underlay is the routed foundation of a modern leaf-spine data center. Its purpose is to provide scalable, deterministic Layer 3 reachability between all fabric nodes, typically using point-to-point routed links between leaves and spines. In this design, EBGP is commonly used as an underlay routing protocol because it scales well, supports clear policy boundaries, and enables fast convergence and operational simplicity. Each leaf forms EBGP sessions to each spine, advertising loopback addresses and link subnets so that overlay endpoints and control plane services can reach one another reliably.

RSTP is a Layer 2 spanning tree mechanism and is not the standard protocol for a routed underlay. EVPN is an overlay control plane used to distribute tenant reachability and multihoming information; it is not the underlay routing protocol itself. VXLAN is a data plane encapsulation used by the overlay to transport Layer 2 segments across a Layer 3 fabric; it also is not the underlay routing protocol.

In Juniper data center architectures, the underlay is intentionally kept simple and purely routed, while overlays such as EVPN VXLAN deliver multi-tenant Layer 2 and Layer 3 services on top of that underlay. EBGP fits the underlay requirement among the provided options.


Question 7

What are two ways to solve the configuration error shown in the exhibit? Choose two.



Answer : B, C

The commit error indicates that the interface is being treated as an access port while the configuration attempts to associate it with more than one VLAN. In Junos Ethernet switching, an access mode interface represents a single untagged VLAN membership. Because access ports accept and transmit frames without 802.1Q tags, the switch must map all ingress untagged traffic to exactly one VLAN. For that reason, Junos enforces the rule that an access interface can be part of only one VLAN, and it rejects configurations that try to add multiple VLAN members under access mode.

There are two valid ways to resolve this, depending on the intended design. First, if the port truly connects to a single endpoint that should live in only one broadcast domain, configure the interface as a member of only one VLAN. This aligns with access port semantics and eliminates the conflict that causes the commit to fail.

Second, if the endpoint or downstream device needs to carry multiple VLANs over the same physical link, change the interface to trunk mode. A trunk port is designed to transport multiple VLANs using 802.1Q tagging, so multiple VLAN members are valid and expected. In data center environments, trunking is common for server virtualization hosts, appliance uplinks, and switch-to-switch links.

Connecting the interface to the network does not affect configuration validation, and logical unit numbering is unrelated to VLAN membership rules for access ports.


Page:    1 / 14   
Total 67 questions