Practice Free JN0-105 Exam Online Questions
Exhibit
[edit]
root# set system host-name TEST_DEVICE [edit]
root# commit
[edit]
‘system’
Missing mandatory statement: ’root-authentication’ error: commit failed: (missing mandatory statements) [edit] root#
You are configuring a new device.
Which action solves the error shown in the exhibit?
- A . configuring a non-root username and password
- B . configuring a password for the root account
- C . loading the factory-default configuration
- D . reinstalling Junos
B
Explanation:
The error message in the exhibit indicates that the root-authentication statement is missing, which is mandatory for committing the configuration. In Junos OS, it is required to set a password for the root account to commit any configuration changes. This is a security measure to ensure that unauthorized users cannot access the device’s configuration mode. To solve the error shown in the exhibit, configuring a password for the root account is necessary. This can be done by using the set system root-authentication plain-text-password command, after which the user will be prompted to enter a new password for the root account.
You are trying to diagnose packet loss at interface ge-0/0/3.
In this scenario, which command would help you view error statistics in real time?
- A . show interface terse
- B . show interface ge-0/0/3
- C . monitor interface traffic
- D . monitor interface ge-0/0/3
D
Explanation:
The monitor interface ge-0/0/3 command is used in Junos OS to view real-time statistics for a specific interface. This command helps in diagnosing issues like packet loss by displaying real-time updates of traffic and error statistics for the specified interface.
What are two attributes of the UDP protocol? (Choose two.)
- A . UDP is more reliable than TCP.
- B . UDP is always slower than TCP.
- C . UDP is best effort.
- D . UDP is connectionless.
CD
Explanation:
UDP (User Datagram Protocol) is known for being connectionless (D) and providing best-effort delivery without the reliability mechanisms present in TCP (C). This means that UDP does not establish a connection before sending data and does not guarantee delivery, order, or error checking, making it faster but less reliable than TCP.
How many rescue configuration files are supported on a Junos device?
- A . 50
- B . 3
- C . 1
- D . 49
C
Explanation:
Junos OS supports only 1 rescue configuration file on a device. This rescue configuration is a safeguard feature that allows network administrators to revert to a known good configuration in case of a configuration error or issue, ensuring network stability.
Which statement is correct when multiple users are configuring a Junos device using the configure private command?
- A . A commit by any user will commit changes made by all active users.
- B . A commit will not succeed until there is only a single user in configuration mode.
- C . Each user gets their own candidate configuration.
- D . Each user shares the same candidate configuration.
C
Explanation:
When multiple users are configuring a Junos device using the "configure private" command, each user gets their own candidate configuration (C). This allows for isolated configuration sessions, where changes made by one user do not impact or interfere with the changes made by another user in their private session.
What are two types of transit traffic that traverse the forwarding plane of a Layer 3 router? (Choose two.)
- A . unicast traffic
- B . multicast traffic
- C . exception traffic
- D . broadcast traffic
AB
Explanation:
Transit traffic that traverses the forwarding plane of a Layer 3 router includes both unicast and multicast traffic types. Unicast traffic is directed from a single source to a single destination, while multicast traffic is sent from one source to multiple destinations that are part of a multicast group. These types of traffic are efficiently routed through the network by leveraging the router’s forwarding plane capabilities. Exception traffic, which requires special handling by the control plane, and broadcast traffic, which is typically limited to a single broadcast domain and not usually forwarded by Layer 3 routers, are not considered standard types of transit traffic for the forwarding plane of a router.
What are two types of transit traffic that traverse the forwarding plane of a Layer 3 router? (Choose two.)
- A . unicast traffic
- B . multicast traffic
- C . exception traffic
- D . broadcast traffic
AB
Explanation:
Transit traffic that traverses the forwarding plane of a Layer 3 router includes both unicast and multicast traffic types. Unicast traffic is directed from a single source to a single destination, while multicast traffic is sent from one source to multiple destinations that are part of a multicast group. These types of traffic are efficiently routed through the network by leveraging the router’s forwarding plane capabilities. Exception traffic, which requires special handling by the control plane, and broadcast traffic, which is typically limited to a single broadcast domain and not usually forwarded by Layer 3 routers, are not considered standard types of transit traffic for the forwarding plane of a router.
When considering routing tables and forwarding tables, which two statements are correct? (Choose two.)
- A . The routing table is used by the RE to select the best route.
- B . The forwarding table stores all routes and prefixes from all protocols.
- C . The forwarding table is used by the RE to select the best route.
- D . The routing table stores all routes and prefixes from all protocols.
AD
Explanation:
The routing table and forwarding table play distinct roles in a Junos OS device. The correct answers are A and D. The routing table (A) is used by the Routing Engine (RE) to select the best route among all the learned routes, while the routing table (D) stores all routes and prefixes learned from all routing protocols. The forwarding table, in contrast, contains only the active routes chosen by the RE and is used by the Packet Forwarding Engine for actual packet forwarding.
What information would you find using the CLI help command?
- A . hyperlinks for remediation actions
- B . a URL for accessing the technical documentation
- C . an explanation for specific system log error messages
- D . message of the day
C
Explanation:
The CLI help command in Junos OS provides assistance and explanations for commands, command options, and in some cases, specific system log error messages. By using the help command followed by specific keywords or messages, users can get detailed information and context for the commands they are using or errors they are encountering. This feature is particularly useful for understanding the purpose of commands, their syntax, and troubleshooting error messages that may appear in system logs.
An administrator configures a router’s interface with an IPv4 address and subnet mask. The administrator also confirms that this interface is in an up state.
In this scenario, which two route types are created on the local router? (Choose two.)
- A . a static route
- B . a local route
- C . a dynamic route
- D . a direct route
BD
Explanation:
When an interface on a router is configured with an IPv4 address and is in an up state, two types of routes are automatically created in the routing table: a local route and a direct route, making B and D the correct answers. The local route represents the interface’s IP address itself, indicating that the router can directly receive packets addressed to this IP. The direct route represents the subnet or network segment to which the interface is connected, indicating that the router can directly forward packets to destinations within this subnet.