What are two physical interface properties? (Choose two.)
Answer : A, D
Two physical interface properties in Junos OS include the MAC address (A) and the Maximum Transmission Unit (MTU) size (D). The MAC address is a hardware identifier for the network interface, while the MTU size determines the largest packet size that the interface can transmit without needing to fragment the packet.
After the factory default configuration is loaded, which configuration object must be created prior to the first commit?
Answer : A
In Juniper Networks devices, when the factory default configuration is loaded, the first step before committing any configuration is to set up root authentication. This is crucial because it secures the device by ensuring that only authorized users have administrative access. Without setting up a root password, the device will not allow any commit operations, which is a safety measure to prevent unauthorized access. This requirement emphasizes the importance Juniper places on security right from the initial setup of the device.
You have just increased the MTU size of interface ge-0/0/0 and committed the configuration.
Which command would help you identify the applied MTU change?
Answer : D
After increasing the MTU size of an interface and committing the configuration, the command to verify the applied MTU change is D, 'show interfaces ge-0/0/0.' This command displays detailed information about the interface, including the current MTU size, making it the best choice for verifying the applied changes.
Which two statements are true about the Junos OS? (Choose two.)
Answer : A, C
In Junos OS, as with many network operating systems, the control plane is responsible for processes that determine how to route traffic. This includes maintaining routing tables, which store information about network paths and protocols. Therefore, routing tables are indeed stored in the control plane.
Exception traffic refers to packets that cannot be processed by the normal fast-path processing of the Packet Forwarding Engine (PFE) in the forwarding plane, and thus are sent to the control plane for further processing. This might include packets destined for the router itself, packets that need to be fragmented, or packets that match certain firewall filter criteria, among other reasons.
Routing tables are not stored in the forwarding plane. However, the forwarding plane contains the forwarding table (sometimes referred to as the forwarding information base or FIB), which is a distilled version of the routing table optimized for fast packet forwarding. The forwarding plane uses this information to perform the actual transfer of packets across the network device interfaces.
Click the Exhibit button.
How is traffic, sourced from 10.0.0.0/8, treated by the firewall filter shown in the exhibit?
Answer : D
The firewall filter configuration in the exhibit specifies a filter with two terms. Term 1 matches traffic from the source address 10.0.0.0/8 and has two actions: 'log' and 'next term'. The 'log' action will record the match to a log file, and 'next term' indicates that the firewall should evaluate the next term after logging. There is no explicit action such as 'accept' or 'reject' in term 1, so by default, the traffic will be accepted unless subsequently rejected by another term.
Term 2 has the action 'reject', which discards packets that reach this term. Since there is no 'from' condition in term 2, it acts as a default rule for all traffic not matched by term 1.
Because the traffic sourced from 10.0.0.0/8 matches term 1 and there is no reject action in that term, it will be logged and then accepted by the firewall filter. There is no subsequent term that rejects this specific traffic, so the action from term 2 does not apply to it.
You want to redeploy a Junos device by clearing the existing configuration and resetting it to factory defaults.
In this scenario, which command would help to accomplish this task?
Answer : D
The request system zeroize media command on a Junos device securely erases all data, including configuration and log files, and resets the device to its factory default settings. This command is used when redeploying a device to ensure no residual data remains from its previous deployment. It's a comprehensive and secure way to clear all configurations and data, making the device as if it were new. The other commands listed do not perform a full reset to factory defaults; for example, show system storage displays storage information, and request system storage cleanup offers to delete unnecessary files without resetting the device to factory settings.
Which two statements describe the result when you enter? at the command-line prompt? (Choose two.)
Answer : A, D
When you enter ? at the command-line prompt in Junos OS, the system provides assistance in two significant ways. Firstly, it lists the available commands and options that can be used at the current point in the command hierarchy, aiding users in understanding what commands they can execute next. Secondly, it displays summary information about those commands and options, providing brief descriptions or additional context that can help users understand the function of each command or option. This feature is particularly useful for learning the command structure or for quick reference when specific command syntax is forgotten.