Free JN0-105 Exam Dumps

Question 11

Which statement is correct when multiple users are configuring a Junos device using the configure private command?

Correct Answer:C
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.

Question 12

Exhibit
{hold:node0}[edit]
root# set system root-authentication ?
Possible completions:
+ apply-groups Groups from which to inherit configuration data
+ apply-groups-except Don't inherit configuration data from these groups
encrypted-password Encrypted password string
load-key-file File (URL) containing one or more ssh keys
plain-text-password Prompt for plain text password (autoencrypted)
> ssh-dsa Secure shell (ssh) DSA public key string
> ssh-rsa Secure shell (ssh) RSA public key string
{hold:node0}[edit]
root# set system root-authentication plain-text-password
New password:
Retype new password:
{hold:node0}[edit]
root# commit and-quit
[edit interfaces]
'ge-0/0/0'
HA management port cannot be configured
error: configuration check-out failed
{hold:node0}[edit]
root#
You are unable to remotely access your Juniper device using the CLI.
Referring to the exhibit, which command would you add to the existing configuration to enable remote CLI access?

Correct Answer:C
In Junos OS, remote access to the device's CLI is commonly facilitated through Secure Shell (SSH), a protocol providing secure command-line access over an insecure network. The given exhibit indicates an attempt to set a root authentication password but does not show configuration for enabling remote access services. To enable SSH, which is not shown in the configuration snippet, you need to configure the device to accept SSH connections. This is done by enabling the SSH service within the system services hierarchy of the configuration. The correct command to add to the existing configuration for enabling remote CLI access via SSH is set system services ssh. This command activates the SSH service, allowing secure remote logins to the device.

Question 13

Which two actions happen when multiple users issue the configure exclusive command to enter configuration mode on a Junos device? (Choose two.)

Correct Answer:CD
In Junos OS, when a user issues the configure exclusive command, it locks the candidate configuration for that user, preventing other users from making concurrent configuration changes. This exclusive lock ensures that configuration changes are managed in a controlled manner, reducing the risk of conflicting changes. As a result, while one user is in exclusive configuration mode, other users are prevented from entering configuration mode until the lock is released, either by the user committing the changes or exiting configuration mode.

Question 14

Which service does RADIUS provide?

Correct Answer:B
RADIUS, which stands for Remote Authentication Dial-In User Service, provides authentication services for users trying to access a network. It is a networking protocol that provides centralized Authentication, Authorization, and Accounting (AAA) management for users who connect and use a network service.

Question 15

Exhibit.
JN0-105 dumps exhibit
Referring to the exhibit, which routing configuration is required for these two users to access the remote server?

Correct Answer:B
For the users in the 10.1.1.0/24 subnet and the server in the 10.1.2.0/24 subnet to communicate with each other, they need to route packets through the router that connects these two subnets. Each user and the server need to have their default gateway set to the IP address of the router interface on their respective subnet (.254). This ensures that packets destined for other subnets are sent to the router, which then routes them to the correct destination subnet.
References:
✑ Juniper official documentation: Configuring Basic Routing.
✑ General networking principles.