What are two physical interface properties? (Choose two.)
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.
Which type of device uses the destination IP address to forward packets?
A Layer 3 router forwards packets based on the destination IP address. It operates at the network layer of the OSI model and uses routing tables to determine the best path for packet delivery. Unlike Layer 2 switches, which forward packets based on MAC addresses, routers handle logical addressing, making them crucial for inter-network communication.
Junos OS Documentation on Routing Fundamentals.
You have configured some interfaces on a Junos device; however, you have not yet committed the configuration.
What happens if you issue the rollback 0 command in this scenario?
Issuing the rollback 0 command in Junos OS will discard any uncommitted changes and revert to the last committed configuration. This command effectively cancels any configuration changes that have been made but not yet committed, ensuring that the device returns to its previous stable state.
'rollback 0 ...................................(rolls back the changes just made )' from Useful Juniper Commands.txt.
Juniper official documentation: Rolling Back a Configuration.
Which command modifier would you use to see all possible completions for a specific command?
In Junos OS, the ? command modifier is used to display all possible completions for a specific command. This helps users understand the available options and syntax for a command they are trying to use.
'Use the ? command modifier to display all possible completions for a specific command.'
You are asked to convert the number 7 from decimal to binary.
Which number is correct in this scenario?
To convert the decimal number 7 to binary, the correct representation is 00000111 (C). In binary, 7 is represented as 1+2+4 (2^0 + 2^1 + 2^2), which corresponds to the last three digits being 1 in the binary format, with leading zeros added for clarity.